Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DinoMod] dino carriers #60630

Merged
merged 8 commits into from
Sep 1, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[DinoMod] dino carriers
LyleSY authored Aug 31, 2022
commit afd6aa6ad74670c9494a2ec82c1aacaf6477e521
35 changes: 35 additions & 0 deletions data/mods/DinoMod/items/pets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[
{
"id": "dino_carrier",
"type": "TOOL",
"name": { "str": "pet carrier" },
"description": "A sturdy reinforced plastic container meant to hold dinosaurs for transport. Use it on a suitable animal to capture, use it on an empty tile to release.",
"weight": "10000 g",
"volume": "50 L",
"price": 2000,
"price_postapoc": 200,
"bashing": 1,
"cutting": 1,
"material": [ "steel", "plastic" ],
"symbol": "#",
"color": "light_gray",
"properties": [ [ "creature_size_capacity", "HUGE" ] ],
"use_action": [ "CAPTURE_MONSTER_ACT" ],
"flags": [ "TRADER_AVOID" ]
},
{
"id": "dino_carrier_wooden",
"copy-from": "pet_carrier",
"type": "TOOL",
"name": { "str": "wooden pet carrier" },
"description": "A sturdy reinforced wooden container meant to hold dinosaurs for transport. Use it on a suitable animal to capture, use it on an empty tile to release.",
"weight": "15000 g",
"volume": "62500 ml",
"price": 1600,
"price_postapoc": 100,
"material": [ "wood" ],
"symbol": "#",
"color": "brown",
"looks_like": "pet_carrier"
}
]