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

Magiclysm - Added a deep storage freezer for a single body #72400

Closed
Closed
Show file tree
Hide file tree
Changes from 2 commits
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
1 change: 1 addition & 0 deletions data/mods/Magiclysm/itemgroups/itemgroups.json
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@
{ "item": "mspider_box", "prob": 100, "charges-min": 3, "charges-max": 24 },
{ "item": "cauldron_demon_chitin", "prob": 20 },
{ "item": "fridge_holding_1", "prob": 12 },
{ "item": "fridge_holding_2", "prob": 2 },
{ "item": "bag_holding_1", "prob": 8 },
{ "item": "bag_holding_2", "prob": 1 },
{ "item": "cauldron_orichalcum", "prob": 100 },
Expand Down
26 changes: 26 additions & 0 deletions data/mods/Magiclysm/items/containers.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,31 @@
"rigid": true
}
]
},
{
"type": "GENERIC",
"id": "fridge_holding_2",
"category": "container",
"name": { "str": "hypergravity preservation box", "str_pl": "hypergravity preservation boxes" },
"description": "A box that takes gravity magic as a tool of preservation as far as it can go. It makes the box even heavier, and more capacious, but you can only store a single item inside in nigh-perfect stasis.",
"weight": "160 kg",
"symbol": "E",
"color": "light_red",
"volume": "500 L",
"price": "8000 USD",
"flags": [ "TARDIS" ],
"pocket_data": [
{
"pocket_type": "CONTAINER",
"holster": true,
"moves": 6000,
"max_contains_volume": "1000 L",
"max_contains_weight": "4850 kg",
"max_item_length": "999 meter",
"spoil_multiplier": 0.01,
MrHrulgin marked this conversation as resolved.
Show resolved Hide resolved
"weight_multiplier": 5.0,
"rigid": true
}
]
}
]
Loading