i think it is working

This commit is contained in:
2023-01-23 11:28:12 +01:00
parent 3a421ceb34
commit 89dc8ed54a
22 changed files with 540 additions and 28 deletions

33
econ/commoditys.py Normal file
View File

@@ -0,0 +1,33 @@
commoditys=[
{
'name': 'Gem',
'amount': 4,
'craft': {
'Raw_Gem': 4,
'Tool_Gem': 0.2,
}
},
{
'name': 'Tool_Gem',
'amount': 1,
'craft': {
'Stone': 1,
'Wood': 1,
}
},
{
'name': 'Wood',
'amount': 1,
'craft': {
'Raw_Wood': 1,
}
},
{
'name': 'Stone',
'amount': 1,
'craft': {
'Raw_Stone': 1,
}
},
]