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
|
return {
{
name = "Cobalt Phantom",
speed = 240,
moves = {"teleportation", "quick_dashes", "smoke_screens", "strikes_from_the_shadows"},
hit_strength = 15,
asset_dir = "assets/characters/Cobalt Phantom",
jump_strength = 925,
},
{
name = "Emerald Venom",
speed = 192,
moves = {"snake_whip", "venom_bite", "poison_of_the_past"},
hit_strength = 12,
asset_dir = "assets/characters/Emerald Venom",
jump_strength = 990,
},
{
name = "Golden Radiance",
speed = 384,
moves = {"solar_boom", "flashbang", "flare_frenzy"},
hit_strength = 13,
asset_dir = "assets/characters/Golden Radiance",
jump_strength = 890,
},
{
name = "Crimson Reaper",
speed = 96,
moves = {"soul_slash", "deaths_reach", "phantom_step", "grim_harvest"},
hit_strength = 17,
asset_dir = "assets/characters/Crimson Reaper",
jump_strength = 1050,
}
}
|