-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.json
92 lines (92 loc) · 2.02 KB
/
mod.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"modDetails": {
"modName": "Debug Mod",
"modDiscription": "This is a debug mod! This mod gives various tools to get xp very quickly, as well as debugging tools for the Default Mod.",
"modAuthor": "Really Basic Games",
"enabled": false,
"dependencies": ["Default Mod"]
},
"resources": {
"xp": {
"displayName": "DEBUG-XP",
"amount": 0,
"baseResource": true,
"strength": 1,
"xp": 1000,
"unlock": {
"researchPoints": 0,
"researched": true,
"requiredLevel": 0
}
}
},
"productionBuildings": {
"debug_iron_smelter": {
"displayName": "Debug Iron Smelter",
"discription": "Smelts iron ore into iron ingots (extremly efficient).",
"unlock": {
"researchPoints": 0,
"researched": true,
"requiredLevel": 0
},
"cost": {
"wood": 0
},
"productionCost": {
"iron_ore": 1
},
"total": 0,
"production": {
"iron_ingots": 1000
}
}
},
"harvesters": {
"debug_harvester": {
"displayName": "Debug Harvester",
"discription": "Gives lots of resources.",
"unlock": {
"researchPoints": 0,
"researched": true,
"requiredLevel": 0
},
"cost": {
"wood": 0
},
"productionCost": {
"wood": 0
},
"total": 0,
"production": {
"wood": 1000,
"stone": 1000,
"coal": 1000,
"iron_ore": 1000,
"xp": 1000
}
}
},
"auto_production": {
"debug_auto_produce": {
"enabled": true,
"displayName": "Debug Auto-Production",
"discription": "Converts some resources into other resources automatically.",
"unlock": {
"researchPoints": 1,
"researched": false,
"requiredLevel": 0
},
"cost": {
"wood": 1
},
"productionCost": {
"wood": 1
},
"total": 0,
"production": {
"iron_ingots": 1000,
"fire": 1000
}
}
}
}