Skip to content

Commit

Permalink
feat(port): Add horse breeding (#4330)
Browse files Browse the repository at this point in the history
Add horse breeding (#55907)

Co-authored-by: AtomicFox556 <[email protected]>
Co-authored-by: LyleSY <[email protected]>
  • Loading branch information
3 people authored Mar 10, 2024
1 parent e253538 commit 32f75ac
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions data/json/monsters/mammal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1652,6 +1652,40 @@
"death_function": [ "NORMAL" ],
"flags": [ "SEES", "HEARS", "GOODHEARING", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM" ]
},
{
"id": "mon_horse_foal",
"type": "MONSTER",
"name": { "str": "foal" },
"looks_like": "mon_horse",
"description": "A hooved grazing mammal with a mane of hair, a sweeping tail, and powerful-looking muscles. This one is still a juvenile; it'll take a while before it can be ridden.",
"default_faction": "herbivore",
"bodytype": "horse",
"categories": [ "WILDLIFE" ],
"species": [ "MAMMAL" ],
"volume": "200000 ml",
"weight": "200 kg",
"hp": 35,
"speed": 260,
"attack_cost": 230,
"material": [ "flesh" ],
"symbol": "H",
"color": "brown",
"aggression": -10,
"morale": 10,
"melee_skill": 3,
"melee_dice": 2,
"melee_dice_sides": 6,
"melee_cut": 0,
"dodge": 2,
"armor_bash": 2,
"anger_triggers": [ "FRIEND_ATTACKED" ],
"fear_triggers": [ "SOUND", "PLAYER_CLOSE" ],
"placate_triggers": [ "PLAYER_WEAK" ],
"harvest": "mammal_large_leather",
"upgrades": { "age_grow": 450, "into": "mon_horse" },
"special_attacks": [ [ "EAT_CROP", 100 ] ],
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PET_WONT_FOLLOW", "PATH_AVOID_DANGER_1", "CATTLEFODDER", "WARM", "NO_BREED" ]
},
{
"id": "mon_horse",
"type": "MONSTER",
Expand Down Expand Up @@ -1679,6 +1713,8 @@
"placate_triggers": [ "PLAYER_WEAK" ],
"death_function": [ "NORMAL" ],
"harvest": "mammal_large_leather",
"reproduction": { "baby_monster": "mon_horse_foal", "baby_count": 1, "baby_timer": 360 },
"baby_flags": [ "SPRING", "SUMMER", "AUTUMN" ],
"special_attacks": [ [ "EAT_CROP", 60 ] ],
"flags": [
"SEES",
Expand Down

0 comments on commit 32f75ac

Please sign in to comment.