Skip to content

Instantly share code, notes, and snippets.

@fiWhy
Last active July 19, 2020 12:21
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 fiWhy/d11e4f4967436321123eb8e78071d65b to your computer and use it in GitHub Desktop.
Save fiWhy/d11e4f4967436321123eb8e78071d65b to your computer and use it in GitHub Desktop.
witch-house
const magicBook = {
recipes: {
golem: {
bone: 10,
stone: 100,
nail: 100,
poo: 53
},
littleDevil: {
lava: 10,
evil: 999
},
},
};
const kitchen = {
bone: 999,
stone: 999,
nail: 999,
poo: 999,
lava: 999,
evil: 999,
kettle: {
material: 'metal',
ingridients: {},
},
addIngridientToKettle(nameOfIngridient, amount) {},
cook(recipe) {},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment