Skip to content

Commit

Permalink
Add additional default recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadows-of-Fire committed Nov 5, 2020
1 parent 163da51 commit ae773f6
Show file tree
Hide file tree
Showing 13 changed files with 268 additions and 7 deletions.
11 changes: 10 additions & 1 deletion src/main/resources/assets/gateways/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,14 @@
"item.gateways.gate_opener": "Gate Opener",
"gateways.gate_opener": "Gate Opener - %s",
"gateways.small_zombie_gate": "Small Zombie Gate",
"gateways.small_blaze_gate": "Small Blaze Gate"
"gateways.small_blaze_gate": "Small Blaze Gate",
"gateways.small_magma_gate": "Small Magma Cube Gate",
"gateways.small_creeper_gate": "Small Creeper Gate",
"gateways.small_enderman_gate": "Small Enderman Gate",
"gateways.small_skeleton_gate": "Small Skeleton Gate",
"gateways.small_spider_gate": "Small Spider Gate",
"gateways.small_witch_gate": "Small Witch Gate",
"gateways.small_ghast_gate": "Small Ghast Gate",
"gateways.small_shulker_gate": "Small Shulker Gate",
"gateways.small_slime_gate": "Small Slime Gate"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@
],
"key": {
"#": {
"item": "minecraft:oak_planks"
"item": "minecraft:blaze_rod"
},
"A": {
"item": "minecraft:stick"
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_blaze_gate",
"entity": "minecraft:blaze",
"completion_xp": 150,
"max_wave_time": 600,
"completion_xp": 250,
"max_wave_time": 750,
"color": "red"
}
}
Expand Down
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_creeper_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:gunpowder"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_creeper_gate",
"entity": "minecraft:creeper",
"completion_xp": 100,
"max_wave_time": 350,
"color": "green"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_enderman_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:ender_pearl"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_enderman_gate",
"entity": "minecraft:enderman",
"completion_xp": 500,
"max_wave_time": 1200,
"color": "purple"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_ghast_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:ghast_tear"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_ghast_gate",
"entity": "minecraft:ghast",
"completion_xp": 250,
"max_wave_time": 500,
"color": "white"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_magma_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:magma_cream"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_magma_gate",
"entity": "minecraft:magma_cube",
"completion_xp": 100,
"max_wave_time": 450,
"color": "red"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_shulker_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:shulker_shell"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_shulker_gate",
"entity": "minecraft:shulker",
"completion_xp": 400,
"max_wave_time": 1000,
"color": "purple"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_skeleton_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:bone"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_skeleton_gate",
"entity": "minecraft:skeleton",
"completion_xp": 150,
"max_wave_time": 600,
"color": "white"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_slime_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:slime_ball"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_slime_gate",
"entity": "minecraft:slime",
"completion_xp": 150,
"max_wave_time": 600,
"color": "green"
}
}
}
27 changes: 27 additions & 0 deletions src/main/resources/data/gateways/recipes/small_spider_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" # ",
"#A#",
" # "
],
"key": {
"#": {
"item": "minecraft:spider_eye"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_spider_gate",
"entity": "minecraft:spider",
"completion_xp": 150,
"max_wave_time": 600,
"color": "red"
}
}
}
36 changes: 36 additions & 0 deletions src/main/resources/data/gateways/recipes/small_witch_gate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"type": "gateways:gate_recipe",
"group": "gateways",
"pattern": [
" 1 ",
"2A3",
" 4 "
],
"key": {
"1": {
"item": "minecraft:glass_bottle"
},
"2": {
"item": "minecraft:stick"
},
"3": {
"item": "minecraft:glowstone_dust"
},
"4": {
"item": "minecraft:redstone"
},
"A": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "gateways:small_gate_opener",
"gateway": {
"name": "gateways.small_witch_gate",
"entity": "minecraft:witch",
"completion_xp": 700,
"max_wave_time": 1400,
"color": "pink"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
],
"key": {
"#": {
"item": "minecraft:acacia_planks"
"item": "minecraft:rotten_flesh"
},
"A": {
"item": "minecraft:stick"
"item": "minecraft:ender_pearl"
}
},
"result": {
Expand Down

0 comments on commit ae773f6

Please sign in to comment.