Skip to content

Instantly share code, notes, and snippets.

@essial
Last active July 15, 2017 01:51
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 essial/f4de689d9c815ea382a4163a38192bec to your computer and use it in GitHub Desktop.
Save essial/f4de689d9c815ea382a4163a38192bec to your computer and use it in GitHub Desktop.
{
"items": {
"Simple Axe": {
"description": "A simple axe",
"surfaceAttributes": [ "walkable" ],
"itemCategories": [ "tool" ],
"colorCode": "white",
"characterCode": "P",
"gfxTileCode": 19,
"interfaces": {
"choppingTool": {
"strength": 5,
"fatigue": 3
},
"durable": {
"durability": 100,
"repairable": true
},
"obtainable": {
"stackable": false,
"maxStackSize": 1
},
"craftable": {
"defaultPlayerKnown": true,
"hoursToCraft": 5,
"ingredients": {
"Birch Log": 25
}
}
}
},
"Simple Hoe": {
"description": "A simple hoe",
"surfaceAttributes": [ "walkable" ],
"itemCategories": [ "tool" ],
"colorCode": "yellow",
"characterCode": "\\",
"gfxTileCode": 15,
"interfaces": {
"tillingTool": {
"strength": 5,
"fatigue": 3
},
"durable": {
"durability": 100,
"repairable": true
},
"obtainable": {
"stackable": false,
"maxStackSize": 1
}
}
},
"Simple Bed": {
"description": "A simple bed",
"surfaceAttributes": [ ],
"itemCategories": [ "tool" ],
"colorCode": "brightBlue",
"characterCode": "B",
"gfxTileCode": 13,
"interfaces": {
"restable": { }
}
},
"Simple Chest": {
"description": "A simple chest",
"surfaceAttributes": [ ],
"itemCategories": [ "container" ],
"colorCode": "brightRed",
"characterCode": "#",
"gfxTileCode": 40,
"interfaces": {
"container": {
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment