Add descriptions to all combat move TOMLs

This commit is contained in:
Jared Miller 2026-02-08 14:21:22 -05:00
parent 9c1c6a9e22
commit 67781578a3
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C
7 changed files with 7 additions and 0 deletions

View file

@ -1,4 +1,5 @@
name = "dodge" name = "dodge"
description = "a quick sidestep to evade incoming attacks"
move_type = "defense" move_type = "defense"
stamina_cost = 3.0 stamina_cost = 3.0
timing_window_ms = 800 timing_window_ms = 800

View file

@ -1,4 +1,5 @@
name = "duck" name = "duck"
description = "crouch down to avoid high attacks, leaving you vulnerable to low strikes"
move_type = "defense" move_type = "defense"
stamina_cost = 3.0 stamina_cost = 3.0
telegraph = "" telegraph = ""

View file

@ -1,4 +1,5 @@
name = "jump" name = "jump"
description = "leap upward to evade low attacks, exposing you to high strikes"
move_type = "defense" move_type = "defense"
stamina_cost = 4.0 stamina_cost = 4.0
telegraph = "" telegraph = ""

View file

@ -1,4 +1,5 @@
name = "parry" name = "parry"
description = "deflect an attack with precise timing, redirecting force rather than absorbing it"
move_type = "defense" move_type = "defense"
stamina_cost = 4.0 stamina_cost = 4.0
timing_window_ms = 1200 timing_window_ms = 1200

View file

@ -1,4 +1,5 @@
name = "punch" name = "punch"
description = "a close-range strike with the fist, quick but predictable"
move_type = "attack" move_type = "attack"
stamina_cost = 5.0 stamina_cost = 5.0
timing_window_ms = 1800 timing_window_ms = 1800

View file

@ -1,4 +1,5 @@
name = "roundhouse" name = "roundhouse"
description = "a spinning kick that sacrifices speed for devastating power"
move_type = "attack" move_type = "attack"
stamina_cost = 8.0 stamina_cost = 8.0
telegraph = "{attacker} spins into a roundhouse kick!" telegraph = "{attacker} spins into a roundhouse kick!"

View file

@ -1,4 +1,5 @@
name = "sweep" name = "sweep"
description = "a low kick targeting the legs, designed to take an opponent off balance"
move_type = "attack" move_type = "attack"
stamina_cost = 6.0 stamina_cost = 6.0
telegraph = "{attacker} drops low for a leg sweep!" telegraph = "{attacker} drops low for a leg sweep!"