Skip to content

Instantly share code, notes, and snippets.

@jeffbaumes
Created December 24, 2019 13:49
Show Gist options
  • Save jeffbaumes/71de44b0779358c61d3ee897066b2c16 to your computer and use it in GitHub Desktop.
Save jeffbaumes/71de44b0779358c61d3ee897066b2c16 to your computer and use it in GitHub Desktop.
export default {
name: 'Farming',
items: [
{
name: 'Wheat',
color: 'goldenrod',
icon: 'barley',
cost: [],
},
{
name: 'Bread',
color: 'brown',
icon: 'baguette',
cost: [{ item: 'Wheat', amount: 4 }],
},
{
name: 'Coin',
color: 'yellow',
icon: 'coins',
cost: [{ item: 'Bread', amount: 3 }],
},
{
name: 'Harvester',
color: 'green',
icon: 'tractor',
cost: [
{ item: 'Coin', amount: 10 },
],
generate: {
time: 1,
items: [
{ item: 'Wheat', amount: 1 },
],
},
},
{
name: 'Retire',
color: 'orange',
icon: 'star',
win: true,
cost: [{ item: 'Coin', amount: 200 }],
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment