-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
116 lines (115 loc) · 2.4 KB
/
config.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"layout": "level3.txt",
"waves": [
{
"duration": 8,
"pre_wave_pause": 0.5,
"monsters": [
{
"type": "gremlin",
"hp": 100,
"speed": 1,
"armour": 0.7,
"mana_gained_on_kill": 10,
"quantity": 10
}
]
},
{
"duration": 5,
"pre_wave_pause": 10,
"monsters": [
{
"type": "beetle",
"hp": 45,
"speed": 3,
"armour": 0.7,
"mana_gained_on_kill": 20,
"quantity": 15
}
]
},
{
"duration": 5,
"pre_wave_pause": 10,
"monsters": [
{
"type": "gremlin",
"hp": 70,
"speed": 2,
"armour": 0.6,
"mana_gained_on_kill": 20,
"quantity": 20
}
]
},
{
"duration": 5,
"pre_wave_pause": 10,
"monsters": [
{
"type": "gremlin",
"hp": 150,
"speed": 1.0,
"armour": 0.7,
"mana_gained_on_kill": 70,
"quantity": 25
}
]
},
{
"duration": 25,
"pre_wave_pause": 10,
"monsters": [
{
"type": "gremlin",
"hp": 150,
"speed": 2,
"armour": 0.6,
"mana_gained_on_kill": 80,
"quantity": 50
}
]
},
{
"duration": 40,
"pre_wave_pause": 8,
"monsters": [
{
"type": "gremlin",
"hp": 200,
"speed": 1,
"armour": 0.5,
"mana_gained_on_kill": 70,
"quantity": 200
}
]
},
{
"duration": 45,
"pre_wave_pause": 1,
"monsters": [
{
"type": "gremlin",
"hp": 5000,
"speed": 1,
"armour": 0.3,
"mana_gained_on_kill": 800,
"quantity": 15
}
]
}
],
"initial_tower_range": 96,
"initial_tower_firing_speed": 1.5,
"initial_tower_damage": 40,
"initial_mana": 250,
"initial_mana_cap": 500,
"initial_mana_gained_per_second": 2,
"tower_cost": 100,
"mana_pool_spell_initial_cost": 100,
"mana_pool_spell_cost_increase_per_use": 150,
"mana_pool_spell_cap_multiplier": 1.5,
"mana_pool_spell_mana_gained_multiplier": 1.2,
"initial_spell_amount": 0
}