mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 12:21:52 +09:00
brick block crafting
This commit is contained in:
@@ -13,5 +13,12 @@
|
||||
[1, 1, "basegame:21"],
|
||||
[1, 3, "$BRICKROCK"]
|
||||
]
|
||||
},
|
||||
/* brocks */
|
||||
"basegame:22": {
|
||||
"workbench": "",
|
||||
"ingredients": [
|
||||
[1, 2, "item@basegame:56"]
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
|
||||
|
Binary file not shown.
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"BLOCK_STONE_BRICKS": "돌 벽돌",
|
||||
"BLOCK_STONE_DEEP": "심층석",
|
||||
"BLOCK_STONE_MARBLE": "대리석",
|
||||
"BLOCK_BRICKS": "벽돌", /* always plural */
|
||||
|
||||
"BLOCK_DIRT": "흙",
|
||||
"BLOCK_GRASS": "잔디",
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"ITEM_ALLOYING_FURNACE": "합금 화로",
|
||||
"ITEM_BRICK_SINGULAR": "벽돌", /* always singular */
|
||||
"ITEM_CALENDAR": "달력",
|
||||
"ITEM_CHARCOAL": "목탄",
|
||||
"ITEM_CHERRY_BOMB": "폭탄",
|
||||
|
||||
@@ -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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user