Initial Commit for 1.19.2

This commit is contained in:
VenomCodeDev
2022-10-11 22:00:30 -05:00
parent 91ff57231d
commit d1cd96ccd8
17 changed files with 375 additions and 65 deletions

Before

Width:  |  Height:  |  Size: 453 B

After

Width:  |  Height:  |  Size: 453 B

@@ -0,0 +1,3 @@
{
"block.jumpvader.jumpvader_block": "Jump Vader"
}
@@ -0,0 +1,19 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "jumpvader:jumpvader_block"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}
@@ -0,0 +1,23 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"#A#",
"AEA",
"#A#"
],
"key": {
"#": {
"item": "minecraft:glass"
},
"A": {
"item": "minecraft:amethyst_shard"
},
"E": {
"item": "minecraft:ender_pearl"
}
},
"result": {
"item": "jumpvader:jumpvader_block",
"count": 2
}
}
+9 -9
View File
@@ -1,29 +1,29 @@
{
"schemaVersion": 1,
"id": "modid",
"id": "jumpvader",
"version": "${version}",
"name": "Example Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"name": "Jump Vader",
"description": "Ender Vaders ServerSide Only",
"authors": [
"Me!"
"VenomCodeDev"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
"homepage": "https://github.com/VenomCodeDev/JumpVaderMod",
"sources": "https://github.com/VenomCodeDev/JumpVaderMod"
},
"license": "CC0-1.0",
"icon": "assets/modid/icon.png",
"icon": "assets/jumpvader/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.fabricmc.example.ExampleMod"
"dev.venomcode.jumpvader.JumpVaderMod"
]
},
"mixins": [
"modid.mixins.json"
"jumpvader.mixins.json"
],
"depends": {
@@ -1,12 +1,12 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.example.mixin",
"package": "dev.venomcode.jumpvader.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"ServerPlayerMixin"
],
"client": [
"ExampleMixin"
],
"injectors": {
"defaultRequire": 1