-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
78 lines (77 loc) · 1.7 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
{
"layout": "level2.txt",
"waves": [
{
"duration": 8,
"pre_wave_pause": 0.5,
"monsters": [
{
"type": "gremlin",
"hp": 40,
"speed": 1.5,
"armour": 0.5,
"mana_gained_on_kill": 10,
"quantity": 5
},
{
"type": "worm",
"hp": 40,
"speed": 1,
"armour": 0.8,
"mana_gained_on_kill": 10,
"quantity": 5
}
]
},
{
"duration": 5,
"pre_wave_pause": 10,
"monsters": [
{
"type": "beetle",
"hp": 50,
"speed": 2.5,
"armour": 0.7,
"mana_gained_on_kill": 20,
"quantity": 15
}
]
},
{
"duration": 5,
"pre_wave_pause": 10,
"monsters": [
{
"type": "gremlin",
"hp": 150,
"speed": 1.0,
"armour": 0.7,
"mana_gained_on_kill": 70,
"quantity": 15
},
{
"type": "beetle",
"hp": 70,
"speed": 2.0,
"armour": 0.7,
"mana_gained_on_kill": 10,
"quantity": 5
}
]
}
],
"initial_tower_range": 96,
"initial_tower_firing_speed": 1.5,
"initial_tower_damage": 40,
"initial_mana": 200,
"initial_mana_cap": 1000,
"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.1,
"bomb_cost": 50,
"bomb_damage_radius": 64,
"bomb_damage": 50
}