Last active
July 19, 2020 12:21
-
-
Save fiWhy/d11e4f4967436321123eb8e78071d65b to your computer and use it in GitHub Desktop.
witch-house
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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