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

New island prison layout #46726

Merged
merged 20 commits into from
Feb 6, 2021
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
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
705 changes: 702 additions & 3 deletions data/json/mapgen/prison_1.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions data/json/mapgen_palettes/prison.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@
},
"toilets": { "T": { } },
"items": {
"D": [ { "item": "prison_textile", "chance": 100, "repeat": [ 1, 20 ] } ],
"W": [ { "item": "prison_textile", "chance": 100, "repeat": [ 1, 20 ] } ],
"D": [ { "item": "prison_textile", "chance": 100, "repeat": [ 1, 5 ] } ],
"W": [ { "item": "prison_textile", "chance": 100, "repeat": [ 1, 5 ] } ],
"b": [ { "item": "novels", "chance": 30 }, { "item": "contraband", "chance": 10 }, { "item": "bed", "chance": 50 } ],
"d": [ { "item": "magazines", "chance": 30, "repeat": [ 1, 5 ] }, { "item": "office", "chance": 30, "repeat": [ 1, 2 ] } ],
"d": [ { "item": "magazines", "chance": 30, "repeat": [ 1, 5 ] }, { "item": "SUS_office_desk", "chance": 30, "repeat": [ 1, 2 ] } ],
"e": { "item": "fridge", "chance": 60, "repeat": [ 1, 8 ] },
"i": [ { "item": "science", "chance": 30 }, { "item": "cleaning", "chance": 30, "repeat": [ 1, 2 ] } ],
"m": [ { "item": "softdrugs", "chance": 40 }, { "item": "harddrugs", "chance": 40 } ],
"m": [ { "item": "softdrugs", "chance": 40, "repeat": [ 1, 3 ] }, { "item": "harddrugs", "chance": 40, "repeat": [ 1, 3 ] } ],
"o": { "item": "novels", "chance": 70, "repeat": [ 1, 3 ] },
"r": [ { "item": "science", "chance": 30 }, { "item": "cleaning", "chance": 30, "repeat": [ 1, 4 ] } ],
"y": { "item": "cleaning", "chance": 60 },
Expand Down
27 changes: 27 additions & 0 deletions data/json/monsters/zed_prisoner.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,32 @@
"color": "green",
"melee_dice_sides": 4,
"death_drops": "mon_zombie_prisoner_death_drops"
},
{
"id": "mon_zombie_prisoner_brute",
"type": "MONSTER",
"name": { "str": "prisoner brute" },
"description": "This muscular zombie wears black and white striped prisoner clothes.",
"copy-from": "mon_zombie_brute",
"looks_like": "mon_zombie_brute",
"death_drops": "mon_zombie_prisoner_death_drops"
},
{
"id": "mon_zombie_prisoner_fat",
"type": "MONSTER",
"name": { "str": "fat prisoner" },
"description": "This fat zombie wears black and white striped prisoner clothes.",
"copy-from": "mon_zombie_fat",
"looks_like": "mon_zombie_fat",
"death_drops": "mon_zombie_prisoner_death_drops"
},
{
"id": "mon_zombie_prisoner_tough",
"type": "MONSTER",
"name": { "str": "tough prisoner" },
"description": "This tough-looking zombie wears black and white striped prisoner clothes.",
"copy-from": "mon_zombie_tough",
"looks_like": "mon_zombie_tough",
"death_drops": "mon_zombie_prisoner_death_drops"
}
]
27 changes: 27 additions & 0 deletions data/json/npcs/factions.json
Original file line number Diff line number Diff line change
Expand Up @@ -677,5 +677,32 @@
"no_faction": { "knows your voice": true }
},
"description": "A small family trying to survive in this new world."
},
{
"type": "faction",
"id": "prisoners",
"name": "Prisoners",
"likes_u": 0,
"respects_u": 0,
"known_by_u": true,
"size": 100,
"power": 100,
"food_supply": 230400,
"wealth": 45000000,
"relations": {
"hells_raiders": {
"kill on sight": false,
"watch your back": true,
"share my stuff": true,
"guard your stuff": true,
"lets you in": true,
"defends your space": true,
"knows your voice": true
},
"free_merchants": { "kill on sight": true },
"old_guard": { "kill on sight": true },
"your_followers": { "kill on sight": false }
},
"description": "Former prisoners who get their freedom during the apocalypse."
Night-Pryanik marked this conversation as resolved.
Show resolved Hide resolved
}
]
Loading