diff --git a/addon/anthrax_cat_BP/entities/anthrax_cat.json b/addon/anthrax_cat_BP/entities/anthrax_cat.json index b1c95fc..19063be 100644 --- a/addon/anthrax_cat_BP/entities/anthrax_cat.json +++ b/addon/anthrax_cat_BP/entities/anthrax_cat.json @@ -3,7 +3,7 @@ "minecraft:entity": { "description": { "identifier": "silverlabs:anthrax_cat", - "is_spawnable": true, + "is_spawnable": false, "is_summonable": true, "is_experimental": false }, diff --git a/addon/anthrax_cat_BP/items/anthrax_cat.json b/addon/anthrax_cat_BP/items/anthrax_cat.json new file mode 100644 index 0000000..6a0e47d --- /dev/null +++ b/addon/anthrax_cat_BP/items/anthrax_cat.json @@ -0,0 +1,21 @@ +{ + "format_version": "1.21.0", + "minecraft:item": { + "description": { + "identifier": "silverlabs:anthrax_cat", + "menu_category": { + "category": "items", + "group": "itemGroup.name.misc" + } + }, + "components": { + "minecraft:max_stack_size": 16, + "minecraft:icon": { + "texture": "anthrax_cat" + }, + "minecraft:entity_placer": { + "entity": "silverlabs:anthrax_cat" + } + } + } +} diff --git a/addon/anthrax_cat_BP/recipes/anthrax_cat.json b/addon/anthrax_cat_BP/recipes/anthrax_cat.json new file mode 100644 index 0000000..095a1fa --- /dev/null +++ b/addon/anthrax_cat_BP/recipes/anthrax_cat.json @@ -0,0 +1,25 @@ +{ + "format_version": "1.21.0", + "minecraft:recipe_shaped": { + "description": { + "identifier": "silverlabs:anthrax_cat_recipe" + }, + "tags": ["crafting_table"], + "unlock": [ + { "item": "minecraft:gold_ingot" } + ], + "pattern": [ + " G ", + "GRG", + " G " + ], + "key": { + "G": { "item": "minecraft:gold_ingot" }, + "R": { "item": "minecraft:red_dye" } + }, + "result": { + "item": "silverlabs:anthrax_cat", + "count": 1 + } + } +} diff --git a/addon/anthrax_cat_RP/texts/en_US.lang b/addon/anthrax_cat_RP/texts/en_US.lang index 8045dc1..6a94afe 100644 --- a/addon/anthrax_cat_RP/texts/en_US.lang +++ b/addon/anthrax_cat_RP/texts/en_US.lang @@ -1,2 +1,3 @@ entity.silverlabs:anthrax_cat.name=Anthrax Cat +item.silverlabs:anthrax_cat.name=Anthrax Cat action.interact.fortune=Consult the Anthrax Cat diff --git a/addon/anthrax_cat_RP/textures/item_texture.json b/addon/anthrax_cat_RP/textures/item_texture.json new file mode 100644 index 0000000..5f82317 --- /dev/null +++ b/addon/anthrax_cat_RP/textures/item_texture.json @@ -0,0 +1,9 @@ +{ + "resource_pack_name": "anthrax_cat_RP", + "texture_name": "atlas.items", + "texture_data": { + "anthrax_cat": { + "textures": "textures/items/anthrax_cat" + } + } +} diff --git a/addon/anthrax_cat_RP/textures/items/anthrax_cat.png b/addon/anthrax_cat_RP/textures/items/anthrax_cat.png new file mode 100644 index 0000000..060e758 Binary files /dev/null and b/addon/anthrax_cat_RP/textures/items/anthrax_cat.png differ