Skip to content

Commit

Permalink
Lang & recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
H. “Lyūke” Monaggem committed Sep 20, 2024
1 parent 8f2f2a3 commit d2b8a4f
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/main/resources/assets/caupona/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,12 @@
"item.caupona.clay_cistern": "Clay Pot",
"block.caupona.fumarole_boulder": "Fumarole Boulder",
"block.caupona.fumarole_vent": "Fumarole Vent",
"block.caupona.litharge_fumarole_boulder": "Plumbiferous Fumarole Boulder",
"block.caupona.litharge_fumarole_vent": "Plumbiferous Fumarole Vent",
"block.caupona.gravy_boat": "Gravy Boat",
"block.caupona.pumice": "Pumice",
"block.caupona.pumice_bloom": "Pumice Bloom",
"block.caupona.litharge_bloom": "Litharge Bloom",
"block.caupona.stew_pot": "Earthen Stew Pot",
"block.caupona.stone_griddle": "Stone Griddle",
"block.caupona.wolf_statue": "Wolf Statue",
Expand Down Expand Up @@ -203,7 +206,8 @@
"block.caupona.tessellation_workbench": "Tesselation Workbench",
"block.caupona.loaf": "Cob Loaf",
"block.caupona.loaf_dough": "Loaf Dough",
"block_caupona.loaf_bowl": "Bread Bowl",
"block.caupona.loaf_bowl": "Bread Bowl",
"block.caupona.kitchen_rail": "Kitchen Rail",
"item.caupona.book": "Vade Mecum for Innkeepers",
"item.caupona.bone_gelatin": "Bone Gelatin",
"item.caupona.chives_spice_jar": "Spice Jar of Chives",
Expand Down
6 changes: 5 additions & 1 deletion src/main/resources/assets/caupona/lang/zh_cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,12 @@
"item.caupona.clay_cistern": "黏土缸",
"block.caupona.fumarole_boulder": "火山喷气孔石块",
"block.caupona.fumarole_vent": "火山喷气孔",
"block.caupona.litharge_fumarole_boulder": "富铅火山喷气孔石块",
"block.caupona.litharge_fumarole_vent": "富铅火山喷气孔",
"block.caupona.gravy_boat": "油舟",
"block.caupona.pumice": "浮岩",
"block.caupona.pumice_bloom": "浮岩华",
"block.caupona.litharge_bloom": "密陀僧华",
"block.caupona.stew_pot": "陶制汤锅",
"block.caupona.stone_griddle": "石鏊",
"block.caupona.wolf_statue": "狼雕像",
Expand Down Expand Up @@ -203,7 +206,8 @@
"block.caupona.tessellation_workbench": "马赛克工作台",
"block.caupona.loaf": "面包轮",
"block.caupona.loaf_dough": "大面团",
"block_caupona.loaf_bowl": "面包碗",
"block.caupona.loaf_bowl": "面包碗",
"block.caupona.kitchen_rail": "厨具架",
"item.caupona.book": "分茶清供",
"item.caupona.acquacotta": "面包汤",
"item.caupona.bisque": "海鲜浓汤",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
}
},
"result": {
"id": "minecraft:raw_copper"
"id": "minecraft:raw_copper",
"count": 3
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{"item": "caupona:loaf"}
],
"result": {
"id": "minecraft:bread",
"count": 2
}
}
23 changes: 23 additions & 0 deletions src/main/resources/data/caupona/recipe/crafting/kitchen_rail.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"SIS",
"S S",
"P P"
],
"key": {
"S": {
"item": "minecraft:stick"
},
"I": {
"item": "minecraft:iron_bars"
},
"P": {
"tag": "minecraft:planks"
}
},
"result": {
"id": "caupona:kitchen_rail",
"count": 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"items": [
{
"item": "minecraft:wheat",
"count": 5
"count": 3
}
],
"fluid": {
Expand Down

0 comments on commit d2b8a4f

Please sign in to comment.