Skip to content

Commit

Permalink
rhea
Browse files Browse the repository at this point in the history
  • Loading branch information
Karol1223 committed Oct 12, 2024
1 parent b2e7940 commit 0aeed6e
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 48 deletions.
1 change: 0 additions & 1 deletion data/json/monsters/bird.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"HEARS",
"ANIMAL",
"PATH_AVOID_DANGER",
"PATH_AVOID_FIRE",
"WARM",
"FLIES",
"SWARMS",
Expand Down
19 changes: 9 additions & 10 deletions data/mods/TropiCataclysm/items/comestibles/egg.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
[
{
"type": "COMESTIBLE",
"id": "egg_quail",
"name": "quail egg",
"copy-from": "egg_guinea_fowl",
"rot_spawn": { "group": "GROUP_EGG_QUAIL" }
"id": "egg_rhea",
"name": { "str": "greater rhea egg" },
"spoils_in": "25 days",
"copy-from": "egg_chicken",
"proportional": { "volume": 12, "weight": 12, "calories": 12 },
"rot_spawn": { "group": "GROUP_EGG_RHEA" }
},
{
"type": "COMESTIBLE",
"id": "egg_rhea",
"name": "rhea egg",
"id": "egg_quail",
"name": "quail egg",
"copy-from": "egg_guinea_fowl",
"volume": "600 ml",
"weight": "600 g",
"calories": 1000,
"rot_spawn": { "group": "GROUP_EGG_RHEA" }
"rot_spawn": { "group": "GROUP_EGG_QUAIL" }
},
{
"type": "COMESTIBLE",
Expand Down
67 changes: 33 additions & 34 deletions data/mods/TropiCataclysm/monsters/tropical_bird.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,42 @@
{
"id": "mon_rhea",
"type": "MONSTER",
"name": { "str": "rhea" },
"description": "A distant relative of the Ostrich and the Emu. Found only on the grasslands and other dry places of South America.",
"default_faction": "small_animal",
"bodytype": "bird",
"categories": [ "WILDLIFE" ],
"species": [ "BIRD" ],
"volume": "40 L",
"weight": "40750 g",
"hp": 30,
"speed": 140,
"name": { "str": "greater rhea" },
"description": "A distant relative of emus and African ostriches. Found in the grasslands and various other open regions of South America.",
"default_faction": "herbivore",
"copy-from": "mon_bird_flightless_base",
"volume": "42670 ml",
"weight": "32 kg",
"hp": 50,
"speed": 150,
"material": [ "flesh" ],
"symbol": "r",
"symbol": "R",
"color": "brown",
"aggression": -10,
"morale": 25,
"melee_dice": 1,
"melee_dice_sides": 1,
"melee_damage": [ { "damage_type": "cut", "amount": 1 } ],
"dodge": 3,
"aggression": 0,
"morale": 40,
"melee_dice": 3,
"melee_dice_sides": 3,
"melee_damage": [ { "damage_type": "cut", "amount": 4 } ],
"dodge": 2,
"harvest": "bird_large",
"vision_day": 50,
"fear_triggers": [ "PLAYER_CLOSE", "FRIEND_DIED", "FIRE", "HURT" ],
"reproduction": { "baby_type": { "baby_egg": "egg_rhea" }, "baby_count": 22, "baby_timer": 10 },
"biosignature": { "biosig_item": "feces_bird", "biosig_timer": 8 },
"petfood": {
"food": [ "BIRDFOOD" ],
"feed": "The %s seems to like you! It runs around your legs and seems friendly.",
"pet": "The %s runs around your leg."
},
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER", "WARM" ]
"dissect": "dissect_bird_sample_small",
"anger_triggers": [ "PLAYER_NEAR_BABY" ],
"reproduction": { "baby_type": { "baby_egg": "egg_rhea" }, "baby_count": 10, "baby_timer": 40 },
"//": "Clutch sizes are higher, but those are clutch sizes for nests, and nests can contain eggs from multiple females.",
"baby_flags": [ "SUMMER", "AUTUMN" ],
"delete": { "flags": [ "SWARMS", "SMALL_HIDER" ] }
},
{
"id": "mon_rhea_chick",
"type": "MONSTER",
"copy-from": "mon_generic_chick",
"name": { "str": "greater rhea chick" },
"description": "A miniature rhea. The appearance of it is distinct enough to easily identify.",
"volume": "600 ml",
"weight": "450 g",
"//1": "Sources say day-1 hatchlings weigh around 75% of their egg mass.",
"upgrades": { "age_grow": 45, "into": "mon_rhea" },
"//2": "6 months to reach adult size."
},
{
"id": "mon_quail",
Expand Down Expand Up @@ -73,13 +79,6 @@
"name": { "str": "brown chick" },
"upgrades": { "age_grow": 12, "into": "mon_quail" }
},
{
"id": "mon_rhea_chick",
"type": "MONSTER",
"copy-from": "mon_chicken_chick",
"name": { "str": "brown chick" },
"upgrades": { "age_grow": 18, "into": "mon_rhea" }
},
{
"id": "mon_toucan",
"type": "MONSTER",
Expand Down
7 changes: 4 additions & 3 deletions data/mods/TropiCataclysm/requirements.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
"extend": {
"components": [
[
[ "egg_rhea", 1 ],
[ "egg_toucan", 3 ],
[ "egg_parrot", 6 ],
[ "egg_macaw", 3 ],
[ "egg_parrot", 6 ],
[ "egg_great_kiskadee", 6 ],
[ "egg_rufous_hornero", 20 ],
[ "egg_finch_saffron", 20 ],
[ "egg_great_kiskadee", 6 ]
[ "egg_finch_saffron", 20 ]
]
]
}
Expand Down

0 comments on commit 0aeed6e

Please sign in to comment.