diff --git a/mods/amogus_blocks/textures/crt.png b/mods/amogus_blocks/textures/crt.png new file mode 100644 index 0000000..f8d1323 Binary files /dev/null and b/mods/amogus_blocks/textures/crt.png differ diff --git a/mods/amogus_blocks/textures/crt2.png b/mods/amogus_blocks/textures/crt2.png new file mode 100644 index 0000000..17a36fa Binary files /dev/null and b/mods/amogus_blocks/textures/crt2.png differ diff --git a/mods/amogus_items/init.lua b/mods/amogus_items/init.lua index 05b0d51..1b2029c 100644 --- a/mods/amogus_items/init.lua +++ b/mods/amogus_items/init.lua @@ -32,4 +32,33 @@ minetest.register_craftitem("amogus_items:amogus", { end return itemstack end -}) \ No newline at end of file +}) + +-- add sprite, coke, fanta, tomato, and water items and make it heal 1 hp +minetest.register_craftitem("amogus_items:sprite", { + description = "Sprite", + inventory_image = "sprite.png", + on_use = minetest.item_eat(1), +}) +minetest.register_craftitem("amogus_items:coke", { + description = "Coke", + inventory_image = "coke.png", + on_use = minetest.item_eat(1), +}) +minetest.register_craftitem("amogus_items:fanta", { + description = "Fanta", + inventory_image = "fanta.png", + on_use = minetest.item_eat(1), +}) +minetest.register_craftitem("amogus_items:tomato", { + description = "Tomato", + inventory_image = "tomato.png", + on_use = minetest.item_eat(1), +}) +minetest.register_craftitem("amogus_items:water", { + description = "Water", + inventory_image = "water.png", + on_use = minetest.item_eat(1), +}) +-- add sprite, coke, fanta, tomato, and water crafting recipes + diff --git a/mods/amogus_items/textures/coke.png b/mods/amogus_items/textures/coke.png new file mode 100644 index 0000000..76a4afc Binary files /dev/null and b/mods/amogus_items/textures/coke.png differ diff --git a/mods/amogus_items/textures/fanta.png b/mods/amogus_items/textures/fanta.png new file mode 100644 index 0000000..cfb5284 Binary files /dev/null and b/mods/amogus_items/textures/fanta.png differ diff --git a/mods/amogus_items/textures/flashlight.png b/mods/amogus_items/textures/flashlight.png new file mode 100644 index 0000000..acac85e Binary files /dev/null and b/mods/amogus_items/textures/flashlight.png differ diff --git a/mods/amogus_items/textures/lightsaber_blue.png b/mods/amogus_items/textures/lightsaber_blue.png new file mode 100644 index 0000000..f0a58f8 Binary files /dev/null and b/mods/amogus_items/textures/lightsaber_blue.png differ diff --git a/mods/amogus_items/textures/lightsaber_green.png b/mods/amogus_items/textures/lightsaber_green.png new file mode 100644 index 0000000..c46a30d Binary files /dev/null and b/mods/amogus_items/textures/lightsaber_green.png differ diff --git a/mods/amogus_items/textures/lightsaber_red.png b/mods/amogus_items/textures/lightsaber_red.png new file mode 100644 index 0000000..faa6869 Binary files /dev/null and b/mods/amogus_items/textures/lightsaber_red.png differ diff --git a/mods/amogus_items/textures/sprite.png b/mods/amogus_items/textures/sprite.png new file mode 100644 index 0000000..a126351 Binary files /dev/null and b/mods/amogus_items/textures/sprite.png differ diff --git a/mods/amogus_items/textures/sugar.png b/mods/amogus_items/textures/sugar.png new file mode 100644 index 0000000..b007466 Binary files /dev/null and b/mods/amogus_items/textures/sugar.png differ diff --git a/mods/amogus_items/textures/tomato.png b/mods/amogus_items/textures/tomato.png new file mode 100644 index 0000000..8c0c175 Binary files /dev/null and b/mods/amogus_items/textures/tomato.png differ diff --git a/mods/amogus_items/textures/water.png b/mods/amogus_items/textures/water.png new file mode 100644 index 0000000..154136c Binary files /dev/null and b/mods/amogus_items/textures/water.png differ