Skip to content

Instantly share code, notes, and snippets.

@Kodiologist
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kodiologist/5612764bcd2c8d577d68 to your computer and use it in GitHub Desktop.
Save Kodiologist/5612764bcd2c8d577d68 to your computer and use it in GitHub Desktop.
A mod for Cataclysm DDA that adds a Neckbeard profession and a few appropriate items
[
{
"type": "MOD_INFO",
"mod_type": "SUPPLEMENTAL",
"ident": "neckbeard",
"name": "Neckbeard Profession",
"author": "Kodi Arfer",
"description": "Adds a profession for the \"neckbeard\" stereotype.",
"path": "modinfo.json"
},
{
"type": "profession",
"ident": "neckbeard",
"name": {
"male": "Neckbeard",
"female": "Legbeard"
},
"description": "In this moment, you are euphoric. Not because of any phony god's blessing. But because, it is in times of crisis like these that true gentlesirs and gentleladies are forged. By Sagan, you'll show everyone who friendzoned you that your survival skills are just as good as your fashion sense.",
"points": 0,
"items": {
"both": [
"shorts",
"socks",
"sneakers",
"linuxtshirt",
"trenchcoat",
"fedora",
"weed",
"nachos",
"colamdew",
"pop_science",
"plush_pony"
],
"male": [
"briefs"
],
"female": [
"bra",
"panties"
]
}
},
{
"type" : "BOOK",
"id" : "pop_science",
"name" : "popular science book",
"max_level" : 0,
"description" : "An introduction to cosmology, evolution, and quantum physics, together with attacks on religion, superstition, and pseudoscience.",
"weight" : 227,
"to_hit" : 0,
"color" : "light_blue",
"intelligence" : 7,
"symbol" : "?",
"material" : ["paper", "null"],
"volume" : 4,
"bashing" : -2,
"cutting" : 0,
"time" : 20,
"fun" : 3,
"skill" : "none",
"price" : 850,
"required_level" : 0,
"chapters": 28
},
{
"type" : "item_group",
"id" : "novels",
"items": [["pop_science", 20]]
},
{
"type" : "item_group",
"id" : "homebooks",
"items": [["pop_science", 20]]
},
{
"type" : "item_group",
"id" : "pawn",
"items": [["pop_science", 20]]
},
{
"type" : "item_group",
"id" : "school",
"items": [["pop_science", 30]]
},
{
"id": "plush_pony",
"type": "GENERIC",
"symbol": "o",
"color": "pink",
"name": "plush pony",
"name_plural": "plush ponies",
"description": "A cute stuffed animal modeled after a cartoon character. Zombies are scary, but with this pony, at least you'll have the magic of friendship by your side.",
"price": 3000,
"material": ["cotton", "null"],
"weight": 227,
"volume": 1,
"bashing": -2,
"cutting": 0,
"to_hit": 0
},
{
"type" : "item_group",
"id" : "bedroom",
"items": [["plush_pony", 20]]
},
{
"type" : "item_group",
"id" : "lab_dorm",
"items": [["plush_pony", 5]]
},
{
"type" : "item_group",
"id" : "arcade_prizes",
"items": [["plush_pony", 5]]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment