more recipes

This commit is contained in:
Jenny 2025-01-31 05:02:29 +01:00
parent 4daf42c09c
commit 5535f8f56d
Signed by: Jenny
GPG Key ID: 2072A14E40940632
12 changed files with 160 additions and 5 deletions

View File

@ -38,7 +38,7 @@ mod_name=Enhanced Explosives
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=All Rights Reserved
# The mod version. See https://semver.org/
mod_version=0.10.1
mod_version=0.10.2
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View File

@ -32,7 +32,7 @@
"tooltip.enhancedexplosives.arrow_tnt": "explodes on impact",
"tooltip.enhancedexplosives.arrow_concussive": "explodes on impact without block damage",
"tooltip.enhancedexplosives.arrow_carpet": "splits into multiple TNT arrows when it starts falling",
"tooltip.enhancedexplosives.arrow_carpet": "splits into multiple concussive arrows when it starts falling",
"tooltip.enhancedexplosives.arrow_tunnel": "explodes along the direction it is looking at",
"tooltip.enhancedexplosives.dynamite": "TNT, but throwable"
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "enhancedexplosives:tnt_claymore"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "enhancedexplosives:tnt_ender"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "enhancedexplosives:tnt_repulsive"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "enhancedexplosives:tnt_selective"
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "combat",
"ingredients":[
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
},
{
"item": "enhancedexplosives:arrow_concussive"
}
],
"result": {
"item": "enhancedexplosives:arrow_carpet"
}
}

View File

@ -1,6 +1,6 @@
{
"type": "minecraft:crafting_shapeless",
"category": "redstone",
"category": "combat",
"ingredients":[
{
"item": "enhancedexplosives:arrow_tnt"
@ -10,6 +10,6 @@
}
],
"result": {
"item": "enhancedexplosives:arrow_tnt"
"item": "enhancedexplosives:arrow_concussive"
}
}

View File

@ -1,6 +1,6 @@
{
"type": "minecraft:crafting_shapeless",
"category": "redstone",
"category": "combat",
"ingredients":[
{
"item": "minecraft:arrow"

View File

@ -0,0 +1,36 @@
{
"type": "minecraft:crafting_shapeless",
"category": "combat",
"ingredients":[
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
},
{
"item": "enhancedexplosives:arrow_tnt"
}
],
"result": {
"item": "enhancedexplosives:arrow_tunnel"
}
}

View File

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"category": "combat",
"ingredients":[
{
"item": "minecraft:tnt"
}
],
"result": {
"item": "enhancedexplosives:dynamite"
}
}

View File

@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shapeless",
"category": "redstone",
"ingredients":[
{
"item": "minecraft:tnt"
},
{
"item": "minecraft:ender_pearl"
}
],
"result": {
"item": "enhancedexplosives:tnt_ender"
}
}