Add descriptions to all combat move TOMLs
This commit is contained in:
parent
9c1c6a9e22
commit
67781578a3
7 changed files with 7 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
name = "dodge"
|
||||
description = "a quick sidestep to evade incoming attacks"
|
||||
move_type = "defense"
|
||||
stamina_cost = 3.0
|
||||
timing_window_ms = 800
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "duck"
|
||||
description = "crouch down to avoid high attacks, leaving you vulnerable to low strikes"
|
||||
move_type = "defense"
|
||||
stamina_cost = 3.0
|
||||
telegraph = ""
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "jump"
|
||||
description = "leap upward to evade low attacks, exposing you to high strikes"
|
||||
move_type = "defense"
|
||||
stamina_cost = 4.0
|
||||
telegraph = ""
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "parry"
|
||||
description = "deflect an attack with precise timing, redirecting force rather than absorbing it"
|
||||
move_type = "defense"
|
||||
stamina_cost = 4.0
|
||||
timing_window_ms = 1200
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "punch"
|
||||
description = "a close-range strike with the fist, quick but predictable"
|
||||
move_type = "attack"
|
||||
stamina_cost = 5.0
|
||||
timing_window_ms = 1800
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "roundhouse"
|
||||
description = "a spinning kick that sacrifices speed for devastating power"
|
||||
move_type = "attack"
|
||||
stamina_cost = 8.0
|
||||
telegraph = "{attacker} spins into a roundhouse kick!"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
name = "sweep"
|
||||
description = "a low kick targeting the legs, designed to take an opponent off balance"
|
||||
move_type = "attack"
|
||||
stamina_cost = 6.0
|
||||
telegraph = "{attacker} drops low for a leg sweep!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue