From 44facc2e567eb3c045ce082428f42276e45b0202 Mon Sep 17 00:00:00 2001 From: David Gay Date: Sat, 22 May 2021 18:10:19 -0400 Subject: Monsters and basic combat --- data/monsters.yml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 data/monsters.yml (limited to 'data/monsters.yml') diff --git a/data/monsters.yml b/data/monsters.yml new file mode 100644 index 0000000..631c83c --- /dev/null +++ b/data/monsters.yml @@ -0,0 +1,48 @@ +pit_leech: + name: "pit leech" + description: >- + A brown-black glistening thing the size of your arm and four times as wide. Featureless, except + for a ring of razor-sharp teeth at one end, encircling an inquisitive maw. + whatnot: + max_hp: + base: 5 + speed: + base: 1 + accuracy: + base: 1 + power: + base: 1 + evasion: + base: 1 + block: + base: 1 + block_value: + base: 1 + awards: + - type: "xp" + skill: "beastslay" + base: 5 +stalk_beast: + name: "stalk beast" + description: >- + A walking tangle of long, sinewy eye stalks, each punctuated with a fist-sized eyeball. They were and + are the heralds of things to come. + whatnot: + max_hp: + base: 9 + speed: + base: 3 + accuracy: + base: 2 + power: + base: 1 + evasion: + base: 2 + block: + base: 1 + block_value: + base: 1 + awards: + - type: "xp" + skill: "beastslay" + base: 9 -- cgit v1.2.3