Skip to content

Commit

Permalink
[DinoMod] Cute, thieving dinos (CleverRaven#40941)
Browse files Browse the repository at this point in the history
* [DinoMod] Cute, thieving dinos

Eoraptors steal food and drop lab items, Compies are cute, baby dinos are cute and they stumble and bumble.

* Eoraptors spawn in roofs and parks at night

* Add space
  • Loading branch information
ZhilkinSerg authored May 30, 2020
2 parents 69e70ce + f4e84bc commit 8882a1c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
7 changes: 5 additions & 2 deletions data/mods/DinoMod/dinosaur.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
"SEES",
"SMELLS",
"HEARS",
"GUILT",
"HIT_AND_RUN",
"ANIMAL",
"PATH_AVOID_DANGER_1",
Expand Down Expand Up @@ -434,10 +435,12 @@
"armor_cut": 0,
"hp": 10,
"death_function": [ "NORMAL" ],
"description": "A bipedal dinosaur about the size of a chicken. It roots around the undergrowth, scavenging on small animals and plants.",
"death_drops": { "subtype": "collection", "groups": [ [ "science", 100 ], [ "mut_lab", 10 ] ] },
"description": "A bipedal dinosaur about the size of a chicken. It darts around quickly and has long arms for grabbing what it desires. It's holding something.",
"reproduction": { "baby_egg": "egg_eoraptor", "baby_count": 3, "baby_timer": 12 },
"baby_flags": [ "SPRING", "SUMMER" ],
"biosignature": { "biosig_item": "feces_bird", "biosig_timer": 3 },
"special_attacks": [ [ "EAT_FOOD", 20 ] ],
"flags": [ "SEES", "SMELLS", "HEARS", "GOODHEARING", "HIT_AND_RUN", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CLIMBS" ],
"harvest": "mammal_tiny",
"vision_night": 5,
Expand Down Expand Up @@ -738,7 +741,7 @@
"dodge": 1,
"death_function": [ "NORMAL" ],
"upgrades": { "age_grow": 14, "into": "mon_compsognathus" },
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CATFOOD" ],
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "CATFOOD", "GUILT", "STUMBLES" ],
"harvest": "mammal_tiny"
},
{
Expand Down
22 changes: 20 additions & 2 deletions data/mods/DinoMod/monstergroups.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,16 @@
"name": "GROUP_PARK_ANIMAL",
"default": "mon_null",
"is_animal": true,
"monsters": [ { "monster": "mon_dimorphodon", "freq": 50, "cost_multiplier": 0, "pack_size": [ 2, 4 ] } ]
"monsters": [
{ "monster": "mon_dimorphodon", "freq": 50, "cost_multiplier": 0, "pack_size": [ 2, 4 ] },
{
"monster": "mon_eoraptor",
"freq": 50,
"cost_multiplier": 0,
"pack_size": [ 4, 12 ],
"conditions": [ "NIGHT", "SPRING", "SUMMER", "AUTUMN" ]
}
]
},
{
"type": "monstergroup",
Expand Down Expand Up @@ -256,7 +265,16 @@
"name": "GROUP_ROOF_ANIMAL",
"default": "mon_null",
"is_animal": true,
"monsters": [ { "monster": "mon_dimorphodon", "freq": 50, "cost_multiplier": 0, "pack_size": [ 2, 4 ] } ]
"monsters": [
{ "monster": "mon_dimorphodon", "freq": 50, "cost_multiplier": 0, "pack_size": [ 2, 4 ] },
{
"monster": "mon_eoraptor",
"freq": 50,
"cost_multiplier": 0,
"pack_size": [ 4, 12 ],
"conditions": [ "NIGHT", "SPRING", "SUMMER", "AUTUMN" ]
}
]
},
{
"type": "monstergroup",
Expand Down

0 comments on commit 8882a1c

Please sign in to comment.