copper bulbs

This commit is contained in:
minjaesong
2024-03-01 15:29:11 +09:00
parent 7906de1711
commit 43e16bf785
12 changed files with 116 additions and 4 deletions

View File

@@ -18,5 +18,12 @@
[10, 1, "item@basegame:112"], /* 1 copper */
[1, 1, "$SIGNALWIRE"] /* 1 other signal wire */
]
},
"item@basegame:35": { /* copper bulb */
"workbench": "basiccrafting",
"ingredients": [
[2, 1, "item@basegame:112", 1, "item@basegame:113"] /* 1 copper, 1 iron */
]
}
}

View File

@@ -33,6 +33,7 @@ id;classname;tags
32;net.torvald.terrarum.modulebasegame.gameitems.ItemCherryBomb;EXPLOSIVE,THROWABLE
33;net.torvald.terrarum.modulebasegame.gameitems.ItemTorch;FIXTURE,LIGHT
34;net.torvald.terrarum.modulebasegame.gameitems.ItemSignalSwitchManual;FIXTURE,SIGNAL
35;net.torvald.terrarum.modulebasegame.gameitems.ItemSignalBulb;FIXTURE,SIGNAL
# ingots
26;net.torvald.terrarum.modulebasegame.gameitems.IngotSteel;INGOT
1 id classname tags
33 33 net.torvald.terrarum.modulebasegame.gameitems.ItemTorch FIXTURE,LIGHT
34 34 net.torvald.terrarum.modulebasegame.gameitems.ItemSignalSwitchManual FIXTURE,SIGNAL
35 # ingots 35 net.torvald.terrarum.modulebasegame.gameitems.ItemSignalBulb FIXTURE,SIGNAL
36 # ingots
37 26 net.torvald.terrarum.modulebasegame.gameitems.IngotSteel INGOT
38 112 net.torvald.terrarum.modulebasegame.gameitems.IngotCopper INGOT
39 113 net.torvald.terrarum.modulebasegame.gameitems.IngotIron INGOT

Binary file not shown.

View File

@@ -3,6 +3,7 @@
"ITEM_CHARCOAL": "Charcoal",
"ITEM_CHERRY_BOMB": "Bomb",
"ITEM_COAL_COKE": "Coal Coke",
"ITEM_COPPER_BULB": "Copper Bulb",
"ITEM_DOOR_OAK": "Oak Door",
"ITEM_DOOR_EBONY": "Ebony Door",
"ITEM_DOOR_BIRCH": "Birch Door",

View File

@@ -3,6 +3,7 @@
"ITEM_CHARCOAL": "목탄",
"ITEM_CHERRY_BOMB": "폭탄",
"ITEM_COAL_COKE": "코크스",
"ITEM_COPPER_BULB": "구리 전구",
"ITEM_DOOR_OAK": "나무 문",
"ITEM_DOOR_EBONY": "흑단 문",
"ITEM_DOOR_BIRCH": "백단 문",

Binary file not shown.