Updated to 1.18.1, added copper items, new recipes
This commit is contained in:
2022-01-17 23:25:39 -05:00
parent 2ca55f3b48
commit 081b744755
62 changed files with 525 additions and 68 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -19,10 +19,15 @@
"item.vplus.platinum_nugget": "Platinum Nugget",
"item.vplus.ruby": "Ruby",
"item.vplus.copper_sword": "Copper Sword",
"item.vplus.emerald_sword": "Emerald Sword",
"item.vplus.platinum_sword": "Platinum Sword",
"item.vplus.ruby_sword": "Ruby Sword",
"item.vplus.copper_helmet": "Copper Helmet",
"item.vplus.copper_chestplate": "Copper Chestplate",
"item.vplus.copper_leggings": "Copper Leggings",
"item.vplus.copper_boots": "Copper Boots",
"item.vplus.emerald_helmet": "Emerald Helmet",
"item.vplus.emerald_chestplate": "Emerald Chestplate",
"item.vplus.emerald_leggings": "Emerald Leggings",
@@ -36,6 +41,10 @@
"item.vplus.ruby_leggings": "Ruby Leggings",
"item.vplus.ruby_boots": "Ruby Boots",
"item.vplus.copper_pickaxe": "Copper Pickaxe",
"item.vplus.copper_axe": "Copper Axe",
"item.vplus.copper_shovel": "Copper Shovel",
"item.vplus.copper_hoe": "Copper Hoe",
"item.vplus.emerald_pickaxe": "Emerald Pickaxe",
"item.vplus.emerald_axe": "Emerald Axe",
"item.vplus.emerald_shovel": "Emerald Shovel",
@@ -51,12 +60,14 @@
"item.vplus.iron_apple": "Iron Apple",
"item.vplus.enchanted_iron_apple": "Enchanted Iron Apple",
"item.vplus.copper_apple": "Copper Apple",
"item.vplus.enchanted_copper_apple": "Enchanted Copper Apple",
"item.vplus.diamond_apple": "Diamond Apple",
"item.vplus.enchanted_diamond_apple": "Enchanted Diamond Apple",
"item.vplus.emerald_apple": "Emerald Apple",
"item.vplus.enchanted_emerald_apple": "Enchanted Emerald Apple",
"item.vplus.netherite_apple": "Netherite Apple",
"item.vplus.enchanted_Netherite_apple": "Enchanted Netherite Apple",
"item.vplus.enchanted_netherite_apple": "Enchanted Netherite Apple",
"item.vplus.platinum_apple": "Platinum Apple",
"item.vplus.enchanted_platinum_apple": "Enchanted Platinum Apple",
"item.vplus.ruby_apple": "Ruby Apple",

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/copper_apple"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "vplus:item/copper_axe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/copper_boots"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/copper_chestplate"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/copper_helmet"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "vplus:item/copper_hoe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/copper_leggings"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "vplus:item/copper_pickaxe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "vplus:item/copper_shovel"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "vplus:item/copper_sword"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "vplus:item/enchanted_copper_apple"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" #",
"###",
"# #"
],
"key": {
"#": {
"item": "minecraft:diamond"
}
},
"result": {
"item": "minecraft:diamond_horse_armor",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" g",
"ggg",
"g g"
],
"key": {
"g": {
"item": "minecraft:gold_ingot"
}
},
"result": {
"item": "minecraft:golden_horse_armor",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" i",
"iii",
"i i"
],
"key": {
"i": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "minecraft:iron_horse_armor",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" #",
"###",
"# #"
],
"key": {
"#": {
"item": "minecraft:leather"
}
},
"result": {
"item": "minecraft:leather_horse_armor",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"#i#",
" # ",
" # "
],
"key": {
"#": {
"item": "minecraft:string"
},
"i": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "minecraft:name_tag",
"count": 1
}
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"#i#",
"# #"
],
"key": {
"#": {
"item": "minecraft:leather"
},
"i": {
"item": "minecraft:iron_ingot"
}
},
"result": {
"item": "minecraft:saddle",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"iii",
"iAi",
"iii"
],
"key": {
"i": {
"item": "minecraft:copper_ingot"
},
"A": {
"item": "minecraft:apple"
}
},
"result": {
"item": "vplus:copper_apple",
"count": 1
}
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"XX",
"X#",
" #"
],
"key": {
"#": {
"item": "minecraft:stick"
},
"X": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "vplus:copper_axe"
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"# #",
"# #"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "vplus:copper_boots",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"# #",
"###",
"###"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "vplus:copper_chestplate",
"count": 1
}
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"# #"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "vplus:copper_helmet",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"##",
" /",
" /"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"item": "vplus:copper_hoe",
"count": 1
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"# #",
"# #"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
}
},
"result": {
"item": "vplus:copper_leggings",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
" / ",
" / "
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"item": "vplus:copper_pickaxe",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"#",
"/",
"/"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"item": "vplus:copper_shovel",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"#",
"#",
"/"
],
"key": {
"#": {
"item": "minecraft:copper_ingot"
},
"/": {
"item": "minecraft:stick"
}
},
"result": {
"item": "vplus:copper_sword",
"count": 1
}
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"iii",
"iAi",
"iii"
],
"key": {
"i": {
"item": "minecraft:copper_block"
},
"A": {
"item": "minecraft:apple"
}
},
"result": {
"item": "vplus:enchanted_copper_apple",
"count": 1
}
}

View File

@@ -6,11 +6,11 @@
"name": "Vanilla Plus",
"description": "Adding things that should be in the vanilla game!",
"authors": [
"nevetS-718"
"Steven"
],
"contact": {
"homepage": "https://nevets.tech/",
"sources": "https://github.com/nevetS-718/VanillaPlus"
"sources": "https://git.nevets.tech/Steven/VanillaPlus"
},
"license": "CC0-1.0",
@@ -20,19 +20,28 @@
"entrypoints": {
"main": [
"tech.nevets.vplus.Main"
],
"client": [
"tech.nevets.vplus.init.ClientInit"
]
},
"mixins": [
"vplus.mixins.json"
{
"config": "vplus.mixins.json",
"environment": "server"
},
{
"config": "vplus.clientmixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.11.3",
"fabricloader": ">=0.12.9",
"fabric": "*",
"minecraft": "1.17.x",
"java": ">=16"
"minecraft": "1.18.x",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}

View File

@@ -0,0 +1,13 @@
{
"required": true,
"package": "tech.nevets.vplus.clientmixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ZoomMixin"
],
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -1,14 +1,12 @@
{
"required": true,
"minVersion": "0.8",
"required": false,
"package": "tech.nevets.vplus.mixin",
"compatibilityLevel": "JAVA_16",
"compatibilityLevel": "JAVA_17",
"mixins": [
"ZoomMixin"
],
"client": [
],
"injectors": {
"defaultRequire": 1
"defaultRequire": 0
}
}