Skip to content

Instantly share code, notes, and snippets.

@mattness
Last active August 2, 2016 22:06
Show Gist options
  • Save mattness/1c4678fc0b4bbec8f098cf7f9b433980 to your computer and use it in GitHub Desktop.
Save mattness/1c4678fc0b4bbec8f098cf7f9b433980 to your computer and use it in GitHub Desktop.
Artifact Point Costs
100
300
325
350
375
400
425
450
525
625
750
875
1000
6840
8830
11280
14400
18620
24000
30600
39520
50880
64800
82500
105280
138650
182780
240870
315520
417560
546000
718200
946660
1245840
1635200
1915000
2010000
2110000
2215000
2325000
2440000
2560000
2690000
2825000
2965000
3115000
3270000
3435000
3605000
3785000
3975000
4175000
4385000
4605000
#!/usr/bin/python
import sys;
lvl = 0
tot = 0
for l in sys.stdin:
lvl = lvl + 1
tot = tot + int(l)
print ('%d - %d' % (lvl, tot))
1 - 100
2 - 400
3 - 725
4 - 1075
5 - 1450
6 - 1850
7 - 2275
8 - 2725
9 - 3250
10 - 3875
11 - 4625
12 - 5500
13 - 6500
14 - 13340
15 - 22170
16 - 33450
17 - 47850
18 - 66470
19 - 90470
20 - 121070
21 - 160590
22 - 211470
23 - 276270
24 - 358770
25 - 464050
26 - 602700
27 - 785480
28 - 1026350
29 - 1341870
30 - 1759430
31 - 2305430
32 - 3023630
33 - 3970290
34 - 5216130
35 - 6851330
36 - 8766330
37 - 10776330
38 - 12886330
39 - 15101330
40 - 17426330
41 - 19866330
42 - 22426330
43 - 25116330
44 - 27941330
45 - 30906330
46 - 34021330
47 - 37291330
48 - 40726330
49 - 44331330
50 - 48116330
51 - 52091330
52 - 56266330
53 - 60651330
54 - 65256330
@mattness
Copy link
Author

mattness commented Aug 2, 2016

  • artifact: Artifact power costs per point for the the first 35 points (full artifact + first point of the 20-point "ultimate" talent)
  • ultimate: Artifact power for each additional point into the 20-point "ultimate" talent
  • sums.py: Python 2 script to calculate the total Artifact Power spent to reach each artifact level.
  • totals: Output of running sums.py against artifact and ultimate (cat artifact ultimate | ./sums.py > total)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment