tmp
This commit is contained in:
parent
2e2b7d0d22
commit
1b2908660a
43
build.gradle
43
build.gradle
@ -88,11 +88,17 @@ minecraft {
|
|||||||
client {
|
client {
|
||||||
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
|
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
|
||||||
property 'forge.enabledGameTestNamespaces', mod_id
|
property 'forge.enabledGameTestNamespaces', mod_id
|
||||||
|
// fixes patchouli mixin error
|
||||||
|
property 'mixin.env.remapRefMap', 'true'
|
||||||
|
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
property 'forge.enabledGameTestNamespaces', mod_id
|
property 'forge.enabledGameTestNamespaces', mod_id
|
||||||
args '--nogui'
|
args '--nogui'
|
||||||
|
// fixes patchouli mixin error
|
||||||
|
property 'mixin.env.remapRefMap', 'true'
|
||||||
|
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
|
||||||
}
|
}
|
||||||
|
|
||||||
// This run config launches GameTestServer and runs all registered gametests, then exits.
|
// This run config launches GameTestServer and runs all registered gametests, then exits.
|
||||||
@ -116,39 +122,18 @@ minecraft {
|
|||||||
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
// Put repositories for dependencies here
|
maven {
|
||||||
// ForgeGradle automatically adds the Forge maven and Maven Central for you
|
url "https://cursemaven.com"
|
||||||
|
content {
|
||||||
// If you have mod jar dependencies in ./libs, you can declare them as a repository like so.
|
includeGroup "curse.maven"
|
||||||
// See https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver
|
}
|
||||||
// flatDir {
|
}
|
||||||
// dir 'libs'
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Specify the version of Minecraft to use.
|
|
||||||
// Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact.
|
|
||||||
// The "userdev" classifier will be requested and setup by ForgeGradle.
|
|
||||||
// If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"],
|
|
||||||
// then special handling is done to allow a setup of a vanilla dependency without the use of an external repository.
|
|
||||||
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
||||||
|
implementation fg.deobf("curse.maven:guidebook-253874:4593765")
|
||||||
// Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings
|
implementation fg.deobf("curse.maven:patchouli-306770:4633797")
|
||||||
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
|
|
||||||
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}")
|
|
||||||
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}")
|
|
||||||
// runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}")
|
|
||||||
|
|
||||||
// Example mod dependency using a mod jar from ./libs with a flat dir repository
|
|
||||||
// This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar
|
|
||||||
// The group id is ignored when searching -- in this case, it is "blank"
|
|
||||||
// implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")
|
|
||||||
|
|
||||||
// For more info:
|
|
||||||
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
|
|
||||||
// http://www.gradle.org/docs/current/userguide/dependency_management.html
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// This block of code expands all declared replace properties in the specified resource targets.
|
// This block of code expands all declared replace properties in the specified resource targets.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
org.gradle.jvmargs=-Xmx3G
|
# CreateCoredumpOnCrash only works on jdk9+
|
||||||
|
org.gradle.jvmargs=-Xmx3G -XX:-CreateCoredumpOnCrash
|
||||||
org.gradle.daemon=false
|
org.gradle.daemon=false
|
||||||
|
|
||||||
minecraft_version=1.20.1
|
minecraft_version=1.20.1
|
||||||
@ -12,7 +13,7 @@ mapping_version=2023.09.03-1.20.1
|
|||||||
mod_id=enhancedexplosives
|
mod_id=enhancedexplosives
|
||||||
mod_name=Enhanced Explosives
|
mod_name=Enhanced Explosives
|
||||||
mod_license=All Rights Reserved
|
mod_license=All Rights Reserved
|
||||||
mod_version=0.14.0
|
mod_version=0.15.0
|
||||||
mod_group_id=com.jenny
|
mod_group_id=com.jenny
|
||||||
mod_authors=Jenny
|
mod_authors=xJenny69
|
||||||
mod_description=strong & throwable explosives
|
mod_description=strong & throwable explosives
|
||||||
|
@ -1,64 +1,36 @@
|
|||||||
# This is an example mods.toml file. It contains the data relating to the loading mods.
|
modLoader = "javafml"
|
||||||
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
|
||||||
# The overall format is standard TOML format, v0.5.0.
|
|
||||||
# Note that there are a couple of TOML lists in this file.
|
|
||||||
# Find more information on toml format here: https://github.com/toml-lang/toml
|
|
||||||
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
|
||||||
modLoader = "javafml" #mandatory
|
|
||||||
logoFile = "logo.png"
|
logoFile = "logo.png"
|
||||||
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
|
loaderVersion = "${loader_version_range}"
|
||||||
loaderVersion = "${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
|
||||||
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
|
|
||||||
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
|
|
||||||
license = "${mod_license}"
|
license = "${mod_license}"
|
||||||
# A URL to refer people to when problems occur with this mod
|
issueTrackerURL = "https://git.smthng.de/Jenny/Enhanced-Explosives/issues" #optional
|
||||||
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional
|
[[mods]]
|
||||||
# A list of mods - how many allowed here is determined by the individual mod loader
|
modId = "${mod_id}"
|
||||||
[[mods]] #mandatory
|
version = "${mod_version}"
|
||||||
# The modid of the mod
|
displayName = "${mod_name}"
|
||||||
modId = "${mod_id}" #mandatory
|
authors = "${mod_authors}"
|
||||||
# The version number of the mod
|
displayTest = "MATCH_VERSION"
|
||||||
version = "${mod_version}" #mandatory
|
|
||||||
# A display name for the mod
|
|
||||||
displayName = "${mod_name}" #mandatory
|
|
||||||
# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/
|
|
||||||
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
|
|
||||||
# A URL for the "homepage" for this mod, displayed in the mod UI
|
|
||||||
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
|
|
||||||
# A file name (in the root of the mod JAR) containing a logo for display
|
|
||||||
#logoFile="enhancedexplosives.png" #optional
|
|
||||||
# A text field displayed in the mod UI
|
|
||||||
#credits="Thanks for this example mod goes to Java" #optional
|
|
||||||
# A text field displayed in the mod UI
|
|
||||||
authors = "${mod_authors}" #optional
|
|
||||||
# Display Test controls the display for your mod in the server connection screen
|
|
||||||
# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod.
|
|
||||||
# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod.
|
|
||||||
# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component.
|
|
||||||
# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value.
|
|
||||||
# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself.
|
|
||||||
#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional)
|
|
||||||
|
|
||||||
# The description text for the mod (multi line!) (#mandatory)
|
|
||||||
description = '''${mod_description}'''
|
description = '''${mod_description}'''
|
||||||
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
|
||||||
[[dependencies."${mod_id}"]] #optional
|
[[dependencies."${mod_id}"]] #optional
|
||||||
# the modid of the dependency
|
modId = "forge"
|
||||||
modId = "forge" #mandatory
|
mandatory = true
|
||||||
# Does this dependency have to exist - if not, ordering below must be specified
|
versionRange = "${forge_version_range}"
|
||||||
mandatory = true #mandatory
|
|
||||||
# The version range of the dependency
|
|
||||||
versionRange = "${forge_version_range}" #mandatory
|
|
||||||
# An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory
|
|
||||||
# BEFORE - This mod is loaded BEFORE the dependency
|
|
||||||
# AFTER - This mod is loaded AFTER the dependency
|
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
# Side this dependency is applied on - BOTH, CLIENT, or SERVER
|
side = "BOTH"
|
||||||
side = "BOTH"# Here's another dependency
|
|
||||||
[[dependencies."${mod_id}"]]
|
[[dependencies."${mod_id}"]]
|
||||||
modId = "minecraft"
|
modId = "minecraft"
|
||||||
mandatory = true
|
mandatory = true
|
||||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
|
||||||
versionRange = "${minecraft_version_range}"
|
versionRange = "${minecraft_version_range}"
|
||||||
ordering = "NONE"
|
ordering = "NONE"
|
||||||
side = "BOTH"
|
side = "BOTH"
|
||||||
|
[[dependencies."${mod_id}"]]
|
||||||
|
modId = "gbook"
|
||||||
|
mandatory = false
|
||||||
|
versionRange = "[1.7.3,)"
|
||||||
|
ordering = "BEFORE"
|
||||||
|
side = "BOTH"
|
||||||
|
[[dependencies."${mod_id}"]]
|
||||||
|
modId = "patchouli"
|
||||||
|
mandatory = false
|
||||||
|
versionRange = "[1.0.6,)"
|
||||||
|
ordering = "BEFORE"
|
||||||
|
side = "BOTH"
|
3
src/main/resources/assets/enhancedexplosives/books.json
Normal file
3
src/main/resources/assets/enhancedexplosives/books.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[
|
||||||
|
"enhancedexplosives:books/guide_enhanced_explosives.xml"
|
||||||
|
]
|
@ -0,0 +1,134 @@
|
|||||||
|
<book title="Enhanced Explosives">
|
||||||
|
<include ref="gbook:xml/standard.xml"/>
|
||||||
|
<chapter id="ch_landing">
|
||||||
|
<section id="se_landing">
|
||||||
|
<page_title>
|
||||||
|
<title>Content</title>
|
||||||
|
</page_title>
|
||||||
|
<title>TNTs</title>
|
||||||
|
<link ref=":se_compressed_tnt">Compressed TNT</link>
|
||||||
|
<link ref=":se_cluster_tnt">Cluster TNT</link>
|
||||||
|
<link ref=":se_homing_tnt">Homing TNT</link>
|
||||||
|
<link ref=":se_black_hole_tnt">Black Hole TNT</link>
|
||||||
|
<link ref=":se_claymore_tnt">Claymore TNT</link>
|
||||||
|
<link ref=":se_selective_tnt">Selective</link>
|
||||||
|
<link ref=":se_ender_tnt">Ender TNT</link>
|
||||||
|
<link ref=":se_repulsive_tnt">Repulsive TNT</link>
|
||||||
|
<title>Arrows</title>
|
||||||
|
<link ref=":ch_tnt_arrow">TNT Arrow</link>
|
||||||
|
<link ref=":se_concussive_arrow">Concussive Arrow</link>
|
||||||
|
<link ref=":se_carpet_arrow">Carpet Bombing Arrow</link>
|
||||||
|
<link ref=":se_tunnel_arrow">Tunnel Arrow</link>
|
||||||
|
<title>Other</title>
|
||||||
|
<link ref=":se_dynamite">Dynamite</link>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_compressed_tnt">
|
||||||
|
<section id="se_compressed_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Compressed TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>These TNTs are stronger than vanilla TNT. They are crafted from 4 TNTs of the previous stage and offer
|
||||||
|
double the explosion strength.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_cluster_tnt">
|
||||||
|
<section id="se_cluster_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Cluster TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>These TNTs spawn multiple smaller TNTs when primed. Each spawned TNT is as strong as vanilla TNT.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_homing_tnt">
|
||||||
|
<section id="se_homing_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Homing TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT targets the closest mob and moves towards it.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_black_hole_tnt">
|
||||||
|
<section id="se_black_hole_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Black Hole TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT attracts close entities towards itself before exploding.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_claymore_tnt">
|
||||||
|
<section id="se_claymore_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Claymore TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT shoots many arrows in a circle around the TNT, instead of exploding.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_selective_tnt">
|
||||||
|
<section id="se_selective_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Selective TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT will only destroy the type of block it is sitting upon when exploding. It will still honour the
|
||||||
|
blocks blast resistance, e.g. it won't destroy bedrock.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_ender_tnt">
|
||||||
|
<section id="se_ender_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Ender TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT will teleport randomly teleport when primed.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_repulsive_tnt">
|
||||||
|
<section id="se_repulsive_tnt">
|
||||||
|
<page_title>
|
||||||
|
<title>Repulsive TNT</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This TNT will push entities away when primed.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_tnt_arrow">
|
||||||
|
<section id="se_tnt_arrow">
|
||||||
|
<page_title>
|
||||||
|
<title>TNT Arrow</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This arrow explodes on impact with half the strength of TNT.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_concussive_arrow">
|
||||||
|
<section id="se_concussive_arrow">
|
||||||
|
<page_title>
|
||||||
|
<title>TNT Arrow</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This arrow explodes on impact without damaging blocks.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_carpet_arrow">
|
||||||
|
<section id="se_carpet_arrow">
|
||||||
|
<page_title>
|
||||||
|
<title>Carpet Bombing Arrow</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This arrow splits into many Concussive Arrows as soon as it starts falling.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_tunnel_arrow">
|
||||||
|
<section id="se_tunnel_arrow">
|
||||||
|
<page_title>
|
||||||
|
<title>Tunnel Arrow</title>
|
||||||
|
</page_title>
|
||||||
|
<p>This arrow spawns multiple explosions in a line equivalent to its direction on hit.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
<chapter id="ch_dynamite">
|
||||||
|
<section id="se_dynamite">
|
||||||
|
<page_title>
|
||||||
|
<title>Dynamite</title>
|
||||||
|
</page_title>
|
||||||
|
<p>Dynamite can be thrown like a potion and explodes with the strength of vanilla TNT.</p>
|
||||||
|
</section>
|
||||||
|
</chapter>
|
||||||
|
</book>
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"name": "Arrows",
|
||||||
|
"description": "These are all new arrows",
|
||||||
|
"icon": "minecraft:arrow"
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"name": "Others",
|
||||||
|
"description": "Some other new stuff",
|
||||||
|
"icon": "minecraft:bedrock"
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"name": "TNTs",
|
||||||
|
"description": "These are all new TNTs",
|
||||||
|
"icon": "minecraft:tnt"
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Carpet Bombing Arrow",
|
||||||
|
"icon": "enhancedexplosives:arrow_carpet",
|
||||||
|
"category": "enhancedexplosives:arrows",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This arrow splits into many explosive arrows as soon as it starts falling. Whether the arrows are concussive or TNT Arrows depends on the config.",
|
||||||
|
"recipe": "enhancedexplosives:arrow_carpet"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Concussive Arrow",
|
||||||
|
"icon": "enhancedexplosives:arrow_concussive",
|
||||||
|
"category": "enhancedexplosives:arrows",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This arrow explodes like TNT on impact, but without damaging blocks.",
|
||||||
|
"recipe": "enhancedexplosives:arrow_concussive"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "TNT Arrow",
|
||||||
|
"icon": "enhancedexplosives:arrow_tnt",
|
||||||
|
"category": "enhancedexplosives:arrows",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This arrow explodes like TNT on impact.",
|
||||||
|
"recipe": "enhancedexplosives:arrow_tnt"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Tunnel Arrow",
|
||||||
|
"icon": "enhancedexplosives:arrow_tunnel",
|
||||||
|
"category": "enhancedexplosives:arrows",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This arrow summons multiple explosions in front of it, along it's direction on impact, forming a tunnel in front.",
|
||||||
|
"recipe": "enhancedexplosives:arrow_tunnel"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Dynamite",
|
||||||
|
"icon": "enhancedexplosives:dynamite",
|
||||||
|
"category": "enhancedexplosives:other",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "Can be thrown like a splash potion, but bounces on the ground and explodes like a tnt.",
|
||||||
|
"recipe": "enhancedexplosives:dynamite"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Quintuple Compressed TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_128",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT behaves like vanilla TNT, but with 32x the explosion strength.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_128"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Double Compressed TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_16",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT behaves like vanilla TNT, but with 4x the explosion strength.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_16"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Triple Compressed TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_32",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT behaves like vanilla TNT, but with 8x the explosion strength.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_32"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Quadruple Compressed TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_64",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT behaves like vanilla TNT, but with 16x the explosion strength.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_64"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Compressed TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_8",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT behaves like vanilla TNT, but with 2x the explosion strength.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_8"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Black Hole TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_black_hole",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT pulls entities towards itself.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_black_hole"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Claymore TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_claymore",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT shoots many arrows in a circle around the TNT, instead of exploding.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_claymore"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "2× TNT Cluster",
|
||||||
|
"icon": "enhancedexplosives:tnt_cluster_2",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT splits into 2 smaller TNTs when primed",
|
||||||
|
"recipe": "enhancedexplosives:tnt_cluster_2"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "4× TNT Cluster",
|
||||||
|
"icon": "enhancedexplosives:tnt_cluster_4",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT splits into 4 smaller TNTs when primed",
|
||||||
|
"recipe": "enhancedexplosives:tnt_cluster_4"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "8× TNT Cluster",
|
||||||
|
"icon": "enhancedexplosives:tnt_cluster_8",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT splits into 8 smaller TNTs when primed",
|
||||||
|
"recipe": "enhancedexplosives:tnt_cluster_8"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Ender TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_ender",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT teleports like an enderman when primed.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_ender"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Homing TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_homing",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT follows the closest mob.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_homing"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Repulsive TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_repulsive",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT pushes close entities away.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_repulsive"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"name": "Selective TNT",
|
||||||
|
"icon": "enhancedexplosives:tnt_selective",
|
||||||
|
"category": "enhancedexplosives:tnts",
|
||||||
|
"pages": [
|
||||||
|
{
|
||||||
|
"type": "patchouli:crafting",
|
||||||
|
"text": "This TNT will only destroy the type of block it is sitting upon when exploding. It will still honour the blocks blast resistance, e.g. it won't destroy bedrock.",
|
||||||
|
"recipe": "enhancedexplosives:tnt_selective"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"name": "Yurrr!",
|
||||||
|
"landing_text": "Skrrr Skrr",
|
||||||
|
"version": 1,
|
||||||
|
"creative_tab": "enhancedexplosives:enhancedexplosives",
|
||||||
|
"use_resource_pack": true
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user