diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/activities.yml | 21 | ||||
-rw-r--r-- | data/monsters.yml | 48 |
2 files changed, 69 insertions, 0 deletions
diff --git a/data/activities.yml b/data/activities.yml index 26f4535..4975cf9 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -151,3 +151,24 @@ quarry_floret_mines: xp: - gid: "planequarry" value: 50 +hunt_killing_fields: + name: "Hunt The Killing Fields" + description: "Hunt monsters in The Killing Fields." + location: "floret_region" + innate: true + whatnot: + duration: + base: 60 + minimum: 35 + scaling: + - type: "skill" + gid: "beastslay" + scale_value: 2 + results: + - type: "monster" + chance: 1 + table: + - gid: "pit_leech" + score: 0 + - gid: "stalk_beast" + score: 0.70 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 |