From 67781578a327edaaa7a7d8dc7ee43be29b6420fa Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Sun, 8 Feb 2026 14:21:22 -0500 Subject: [PATCH] Add descriptions to all combat move TOMLs --- content/combat/dodge.toml | 1 + content/combat/duck.toml | 1 + content/combat/jump.toml | 1 + content/combat/parry.toml | 1 + content/combat/punch.toml | 1 + content/combat/roundhouse.toml | 1 + content/combat/sweep.toml | 1 + 7 files changed, 7 insertions(+) diff --git a/content/combat/dodge.toml b/content/combat/dodge.toml index 07da5bb..d090e43 100644 --- a/content/combat/dodge.toml +++ b/content/combat/dodge.toml @@ -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 diff --git a/content/combat/duck.toml b/content/combat/duck.toml index 8a8868e..0079184 100644 --- a/content/combat/duck.toml +++ b/content/combat/duck.toml @@ -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 = "" diff --git a/content/combat/jump.toml b/content/combat/jump.toml index 96edd86..b923779 100644 --- a/content/combat/jump.toml +++ b/content/combat/jump.toml @@ -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 = "" diff --git a/content/combat/parry.toml b/content/combat/parry.toml index 55f7486..fe0d46c 100644 --- a/content/combat/parry.toml +++ b/content/combat/parry.toml @@ -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 diff --git a/content/combat/punch.toml b/content/combat/punch.toml index 67dda30..2a7f0fa 100644 --- a/content/combat/punch.toml +++ b/content/combat/punch.toml @@ -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 diff --git a/content/combat/roundhouse.toml b/content/combat/roundhouse.toml index 9ce9201..4827ec5 100644 --- a/content/combat/roundhouse.toml +++ b/content/combat/roundhouse.toml @@ -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!" diff --git a/content/combat/sweep.toml b/content/combat/sweep.toml index 19565f1..78627f5 100644 --- a/content/combat/sweep.toml +++ b/content/combat/sweep.toml @@ -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!"