-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdb.js
More file actions
executable file
·41 lines (41 loc) · 2.34 KB
/
db.js
File metadata and controls
executable file
·41 lines (41 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const maxStarArr = [8,10,15,20,25,25,25,25];
const MVP_SALE = [0,3,5,10];
const costDB = [
[41000, 81000, 121000, 161000, 201000, 241000, 281000, 321000, 0],//100
[54200, 107500, 160700, 214000, 267200, 320400, 373700, 426900, 480200, 533400, 0],//110
[70100, 139200, 208400, 277500, 346600, 415700, 484800, 554000, 623100, 692200, 2801600, 3543200, 4397700, 5371700, 6471400, 0],//120
[88900, 176800, 264600, 352500, 440400, 528300, 616200, 704000, 791900, 879800, 3561700, 4504600, 5591100, 6829300, 8227500, 19586000, 23069100, 26918600, 31149300, 35776100, 0],//130
[110800, 220500, 330300, 440000, 549800, 569600, 769300, 879100, 988800, 1098600, 4448200, 5625900, 6982900, 8529400, 10275700, 24462200, 28812500, 33620400, 38904500, 44683300, 50974700, 57796700, 65166700, 73102200, 81620200, 0],//140
[136000, 271000, 406000, 541000, 676000, 811000, 946000, 1081000, 1216000, 1351000, 5470800, 6919400, 8588400, 10490600, 12638500, 30087200, 35437900, 41351400, 47850600, 54958200, 62696400, 71087200, 80152000, 89912300, 100389000, 0], //150
[164800, 328700, 492500, 656400, 820200, 984000, 1147900, 1311700, 1475600, 1639400, 6639400, 8397300, 10422900, 12731500, 15338200, 36514500, 43008300, 50185100, 58072700, 66698700, 76090000, 86273300, 97274600, 109120000, 121834900, 0], //160
[321000, 641000, 961000, 1281000, 1601000, 1921000, 2241000, 2561000, 2881000, 3201000, 12966500, 16400100, 20356300, 24865300, 29956500, 71316500, 83999600, 98016700, 113422300, 130270000, 148612400, 168501500, 189988600, 213124000, 237957700, 0] //200
];
const itemImgDB = ["100", "110", "120", "130", "140", "150", "160", "200"]
const percentDB = [ //[성공, 실패, 하락, 파괴]
[950, 50, 0, 0], //0->1
[900, 100, 0, 0],
[850, 150, 0, 0],
[850, 150, 0, 0],
[800, 200, 0, 0], //4->5
[750, 250, 0, 0],
[700, 300, 0, 0],
[650, 350, 0, 0],
[600, 400, 0, 0],
[550, 450, 0, 0],//->10
[500, 500, 0, 0],
[450, 0, 550, 0],//->12
[400, 0, 594, 6],
[350, 0, 637, 13],
[300, 0, 686, 14],//->15
[300, 679, 0, 21],
[300, 0, 679, 21],
[300, 0, 679, 21],
[300, 0, 672, 28],
[300, 0, 672, 28],//->20
[300, 630, 0, 70],
[300, 0, 630, 70],//->22
[30, 0, 776, 194],
[20, 0, 686, 294],
[10, 0, 594, 396], //과연 여기 갈때까지 돌리는 흑우가 있을까?
[0, 0, 0, 0]
];