diff --git a/src/main/resources/assets/nec/lang/en_us.json b/src/main/resources/assets/nec/lang/en_us.json index 0eefca6..454ed7a 100644 --- a/src/main/resources/assets/nec/lang/en_us.json +++ b/src/main/resources/assets/nec/lang/en_us.json @@ -6,6 +6,10 @@ "advancements.nec.ak_47.title": "Congrats, You're f*cking useless!", "advancements.nec.dirt_sword.description": "Haha, get it? ... -_-", "advancements.nec.dirt_sword.title": "You are now dirty", + "advancements.nec.pocket_block.description": "Craft a Pocket Block", + "advancements.nec.pocket_block.title": "It's basically Bedrock", + "advancements.nec.java_block.description": "Craft a Java Block", + "advancements.nec.java_block.title": "You Idiot, this is wrong!", "advancements.nec.root.description": "uwu", "advancements.nec.root.title": "Not Enough Cursedness", diff --git a/src/main/resources/data/nec/advancements/java_block.json b/src/main/resources/data/nec/advancements/java_block.json new file mode 100644 index 0000000..c3a79b6 --- /dev/null +++ b/src/main/resources/data/nec/advancements/java_block.json @@ -0,0 +1,31 @@ +{ + "display": { + "icon": { + "item": "nec:java_block" + }, + "title": { + "translate": "advancements.nec.java_block.title" + }, + "description": { + "translate": "advancements.nec.java_block.description" + }, + "frame": "task", + "show_toast": true, + "annouce_to_chat": true + }, + "parent": "nec:nec", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "nec:java_block" + ] + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/nec/advancements/pocket_block.json b/src/main/resources/data/nec/advancements/pocket_block.json new file mode 100644 index 0000000..460907d --- /dev/null +++ b/src/main/resources/data/nec/advancements/pocket_block.json @@ -0,0 +1,31 @@ +{ + "display": { + "icon": { + "item": "nec:pocket_block" + }, + "title": { + "translate": "advancements.nec.pocket_block.title" + }, + "description": { + "translate": "advancements.nec.pocket_block.description" + }, + "frame": "task", + "show_toast": true, + "annouce_to_chat": true + }, + "parent": "nec:nec", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "nec:pocket_block" + ] + } + ] + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/nec/recipes/bedrock.json b/src/main/resources/data/nec/recipes/bedrock.json new file mode 100644 index 0000000..6b9ffc0 --- /dev/null +++ b/src/main/resources/data/nec/recipes/bedrock.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "tag": "minecraft:beds" + }, + { + "item": "minecraft:stone" + } + ], + "result": { + "item": "minecraft:bedrock" + } +} diff --git a/src/main/resources/data/nec/recipes/deepslate_diamond_ore_ore.json b/src/main/resources/data/nec/recipes/deepslate_diamond_ore_ore.json new file mode 100644 index 0000000..99bf71f --- /dev/null +++ b/src/main/resources/data/nec/recipes/deepslate_diamond_ore_ore.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:deepslate" + }, + "B": { + "item": "minecraft:deepslate_diamond_ore" + } + }, + "result": { + "item": "nec:deepslate_diamond_ore_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/data/nec/recipes/diamond_ore_ore.json b/src/main/resources/data/nec/recipes/diamond_ore_ore.json new file mode 100644 index 0000000..6fad817 --- /dev/null +++ b/src/main/resources/data/nec/recipes/diamond_ore_ore.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:stone" + }, + "B": { + "item": "minecraft:diamond_ore" + } + }, + "result": { + "item": "nec:diamond_ore_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/data/nec/recipes/java_block.json b/src/main/resources/data/nec/recipes/java_block.json new file mode 100644 index 0000000..608a143 --- /dev/null +++ b/src/main/resources/data/nec/recipes/java_block.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "nec:pocket_block" + } + ], + "result": { + "item": "nec:java_block" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/resources/data/nec/recipes/netherite_chestplate.json b/src/main/resources/data/nec/recipes/netherite_chestplate.json new file mode 100644 index 0000000..1b6d6f6 --- /dev/null +++ b/src/main/resources/data/nec/recipes/netherite_chestplate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "1": { + "item": "minecraft:golden_chestplate" + }, + "2": { + "item": "minecraft:leather_chestplate" + } + }, + "pattern": [ + "111", + "1 2", + "222" + ], + "result": { + "item": "minecraft:netherite_chestplate" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/resources/data/nec/recipes/pocket_block.json b/src/main/resources/data/nec/recipes/pocket_block.json new file mode 100644 index 0000000..03cbcc3 --- /dev/null +++ b/src/main/resources/data/nec/recipes/pocket_block.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "minecraft:bedrock" + } + ], + "result": { + "item": "nec:pocket_block" + }, + "show_notification": true +} \ No newline at end of file