brick block crafting

This commit is contained in:
minjaesong
2024-09-13 17:09:05 +09:00
parent ec59000ae9
commit 2743198866
10 changed files with 31 additions and 4 deletions

View File

@@ -13,5 +13,12 @@
[1, 1, "basegame:21"],
[1, 3, "$BRICKROCK"]
]
},
/* brocks */
"basegame:22": {
"workbench": "",
"ingredients": [
[1, 2, "item@basegame:56"]
]
}
}

View File

@@ -23,7 +23,7 @@ id;classname;tags
22;net.torvald.terrarum.modulebasegame.gameitems.AxeWood;TOOL,AXE
23;net.torvald.terrarum.modulebasegame.gameitems.PickaxeStone;TOOL,PICK
24;net.torvald.terrarum.modulebasegame.gameitems.AxeStone;TOOL,AXE
25;net.torvald.terrarum.modulebasegame.gameitems.ItemClayBall;
25;net.torvald.terrarum.modulebasegame.gameitems.ItemClayBall;SMELTABLE
27;net.torvald.terrarum.modulebasegame.gameitems.ItemFurnaceAndAnvil;FIXTURE,CRAFTING
28;net.torvald.terrarum.modulebasegame.gameitems.ItemJukebox;FIXTURE,MUSIC
@@ -54,6 +54,8 @@ id;classname;tags
53;net.torvald.terrarum.modulebasegame.gameitems.ItemEngravingWorkbench;FIXTURE,CRAFTING
54;net.torvald.terrarum.modulebasegame.gameitems.ItemMechanicalTines;FIXTURE,MUSIC,SIGNAL
55;net.torvald.terrarum.modulebasegame.gameitems.ItemGlowOrb;LIGHT,THROWABLE
56;net.torvald.terrarum.modulebasegame.gameitems.ItemClayBrick;
# ingots
1 id classname tags
23 22 net.torvald.terrarum.modulebasegame.gameitems.AxeWood TOOL,AXE
24 23 net.torvald.terrarum.modulebasegame.gameitems.PickaxeStone TOOL,PICK
25 24 net.torvald.terrarum.modulebasegame.gameitems.AxeStone TOOL,AXE
26 25 net.torvald.terrarum.modulebasegame.gameitems.ItemClayBall SMELTABLE
27 27 net.torvald.terrarum.modulebasegame.gameitems.ItemFurnaceAndAnvil FIXTURE,CRAFTING
28 28 net.torvald.terrarum.modulebasegame.gameitems.ItemJukebox FIXTURE,MUSIC
29 29 net.torvald.terrarum.modulebasegame.gameitems.ItemCharcoal COMBUSTIBLE
54 54 net.torvald.terrarum.modulebasegame.gameitems.ItemMechanicalTines FIXTURE,MUSIC,SIGNAL
55 55 net.torvald.terrarum.modulebasegame.gameitems.ItemGlowOrb LIGHT,THROWABLE
56 # ingots 56 net.torvald.terrarum.modulebasegame.gameitems.ItemClayBrick
57 # ingots
58 112 net.torvald.terrarum.modulebasegame.gameitems.IngotCopper INGOT
59 112 113 net.torvald.terrarum.modulebasegame.gameitems.IngotCopper net.torvald.terrarum.modulebasegame.gameitems.IngotIron INGOT
60 113 114 net.torvald.terrarum.modulebasegame.gameitems.IngotIron net.torvald.terrarum.modulebasegame.gameitems.ItemCoalCoke INGOT COMBUSTIBLE
61 114 115 net.torvald.terrarum.modulebasegame.gameitems.ItemCoalCoke net.torvald.terrarum.modulebasegame.gameitems.IngotZinc COMBUSTIBLE INGOT

Binary file not shown.

View File

@@ -10,6 +10,7 @@
"BLOCK_STONE_BRICKS": "Stone Bricks",
"BLOCK_STONE_DEEP": "Deepstone",
"BLOCK_STONE_MARBLE": "Marble",
"BLOCK_BRICKS": "Bricks", /* always plural */
"BLOCK_DIRT": "Dirt",
"BLOCK_GRASS": "Grass",

View File

@@ -1,5 +1,6 @@
{
"ITEM_ALLOYING_FURNACE": "Alloying Furnace",
"ITEM_BRICK_SINGULAR": "Brick", /* always singular */
"ITEM_CALENDAR": "Calendar",
"ITEM_CHARCOAL": "Charcoal",
"ITEM_CHERRY_BOMB": "Bomb",

View File

@@ -10,6 +10,7 @@
"BLOCK_STONE_BRICKS": "돌 벽돌",
"BLOCK_STONE_DEEP": "심층석",
"BLOCK_STONE_MARBLE": "대리석",
"BLOCK_BRICKS": "벽돌", /* always plural */
"BLOCK_DIRT": "흙",
"BLOCK_GRASS": "잔디",

View File

@@ -1,5 +1,6 @@
{
"ITEM_ALLOYING_FURNACE": "합금 화로",
"ITEM_BRICK_SINGULAR": "벽돌", /* always singular */
"ITEM_CALENDAR": "달력",
"ITEM_CHARCOAL": "목탄",
"ITEM_CHERRY_BOMB": "폭탄",

View File

@@ -44,5 +44,9 @@
"item@basegame:135": { /* lead ore -> ingot */
"difficulty": 1.0,
"product": [1, "item@basegame:119"]
},
"item@basegame:25": { /* clay ball -> a brick */
"difficulty": 1.0,
"product": [1, "item@basegame:56"]
}
}