diff --git a/mods/antum/overrides/items/animalmaterials.lua b/mods/antum/overrides/items/animalmaterials.lua index 5c1c23df..d66017ba 100644 --- a/mods/antum/overrides/items/animalmaterials.lua +++ b/mods/antum/overrides/items/animalmaterials.lua @@ -25,22 +25,22 @@ --]] -minetest.register_craftitem(":animalmaterials:fish_bluewhite", { - description = "Raw Bluewhite Fish", - image = "food/fish_raw", +minetest.register_craftitem(':animalmaterials:fish_bluewhite', { + description = 'Raw Bluewhite Fish', + image = 'fish_raw.png', on_use = minetest.item_eat(1), groups = { meat=1, eatable=1 }, stack_max = 25 }) -minetest.register_alias("fish_bluewhite_raw", "animalmaterials:fish_bluewhite") +minetest.register_alias('fish_bluewhite_raw', 'animalmaterials:fish_bluewhite') -minetest.register_craftitem(":animalmaterials:fish_clownfish", { - description = "Raw Clownfish", - image = "food/fish_raw", +minetest.register_craftitem(':animalmaterials:fish_clownfish', { + description = 'Raw Clownfish', + image = 'fish_raw.png', on_use = minetest.item_eat(1), groups = { meat=1, eatable=1 }, stack_max = 25 }) -minetest.register_alias("clownfish_raw", "animalmaterials:fish_clownfish") +minetest.register_alias('clownfish_raw', 'animalmaterials:fish_clownfish') diff --git a/mods/antum/overrides/items/cooking.lua b/mods/antum/overrides/items/cooking.lua index c97c6999..ed07a5cc 100644 --- a/mods/antum/overrides/items/cooking.lua +++ b/mods/antum/overrides/items/cooking.lua @@ -25,22 +25,22 @@ --]] -minetest.register_craftitem(":cooking:fish_bluewhite_cooked", { - description = "Cooked Bluewhite Fish", - image = "food/fish_cooked", +minetest.register_craftitem(':cooking:fish_bluewhite_cooked', { + description = 'Cooked Bluewhite Fish', + image = 'fish_cooked.png', on_use = core.item_eat(6), groups = { meat=1 , eatable=1}, stack_max = 25 }) -minetest.register_alias("fish_bluewhite_cooked", "cooking:fish_bluewhite_cooked") +minetest.register_alias('fish_bluewhite_cooked', 'cooking:fish_bluewhite_cooked') -minetest.register_craftitem(":cooking:fish_clownfish_cooked", { - description = "Cooked Clownfish", - image = "food/fish_cooked", +minetest.register_craftitem(':cooking:fish_clownfish_cooked', { + description = 'Cooked Clownfish', + image = 'fish_cooked.png', on_use = core.item_eat(6), groups = { meat=1 , eatable=1}, stack_max = 25 }) -minetest.register_alias("clownfish_cooked", "cooking:fish_clownfish_cooked") +minetest.register_alias('clownfish_cooked', 'cooking:fish_clownfish_cooked') diff --git a/mods/antum/overrides/items/kpgmobs.lua b/mods/antum/overrides/items/kpgmobs.lua index 7115971f..8db2013f 100644 --- a/mods/antum/overrides/items/kpgmobs.lua +++ b/mods/antum/overrides/items/kpgmobs.lua @@ -30,7 +30,7 @@ local tdir = 'animal_inventory' minetest.register_craftitem(':kpgmobs:horseh1', { description = 'Brown Horse', - inventory_image = tdir .. '/horse_brown', + inventory_image = 'horse_brown.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then @@ -45,7 +45,7 @@ minetest.register_alias('brown_horse', 'kpgmobs:horseh1') minetest.register_craftitem(':kpgmobs:horsepegh1', { description = 'White Horse', - inventory_image = tdir .. '/horse_white', + inventory_image = 'horse_white.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then @@ -60,7 +60,7 @@ minetest.register_alias('white_horse', 'kpgmobs:horsepegh1') minetest.register_craftitem(':kpgmobs:horsearah1', { description = 'Black Horse', - inventory_image = tdir .. '/horse_black', + inventory_image = 'horse_black.png', on_place = function(itemstack, placer, pointed_thing) if pointed_thing.above then diff --git a/mods/antum/overrides/textures/description.txt b/mods/antum/overrides/textures/description.txt new file mode 100644 index 00000000..7f7577ad --- /dev/null +++ b/mods/antum/overrides/textures/description.txt @@ -0,0 +1 @@ +The texture pack for the Antum Minetest/Freeminer game. diff --git a/mods/antum/overrides/textures/fish_cooked.png b/mods/antum/overrides/textures/fish_cooked.png new file mode 100644 index 00000000..545ccae9 Binary files /dev/null and b/mods/antum/overrides/textures/fish_cooked.png differ diff --git a/mods/antum/overrides/textures/fish_raw.png b/mods/antum/overrides/textures/fish_raw.png new file mode 100644 index 00000000..01583fbd Binary files /dev/null and b/mods/antum/overrides/textures/fish_raw.png differ diff --git a/mods/antum/overrides/textures/glass/test.png b/mods/antum/overrides/textures/glass/test.png new file mode 100644 index 00000000..27b97de2 Binary files /dev/null and b/mods/antum/overrides/textures/glass/test.png differ diff --git a/mods/antum/overrides/textures/green.png b/mods/antum/overrides/textures/green.png new file mode 100644 index 00000000..b057abd1 Binary files /dev/null and b/mods/antum/overrides/textures/green.png differ diff --git a/mods/antum/overrides/textures/green_detail.png b/mods/antum/overrides/textures/green_detail.png new file mode 100644 index 00000000..6cd707d3 Binary files /dev/null and b/mods/antum/overrides/textures/green_detail.png differ diff --git a/mods/antum/overrides/textures/horse_black.png b/mods/antum/overrides/textures/horse_black.png new file mode 100644 index 00000000..a3540750 Binary files /dev/null and b/mods/antum/overrides/textures/horse_black.png differ diff --git a/mods/antum/overrides/textures/horse_brown.png b/mods/antum/overrides/textures/horse_brown.png new file mode 100644 index 00000000..7508ff3c Binary files /dev/null and b/mods/antum/overrides/textures/horse_brown.png differ diff --git a/mods/antum/overrides/textures/horse_white.png b/mods/antum/overrides/textures/horse_white.png new file mode 100644 index 00000000..8bf07a53 Binary files /dev/null and b/mods/antum/overrides/textures/horse_white.png differ diff --git a/mods/antum/overrides/textures/meat_cooked.png b/mods/antum/overrides/textures/meat_cooked.png new file mode 100644 index 00000000..c0319342 Binary files /dev/null and b/mods/antum/overrides/textures/meat_cooked.png differ diff --git a/mods/antum/overrides/textures/meat_raw.png b/mods/antum/overrides/textures/meat_raw.png new file mode 100644 index 00000000..3325e04d Binary files /dev/null and b/mods/antum/overrides/textures/meat_raw.png differ diff --git a/mods/antum/overrides/textures/screenshot.png b/mods/antum/overrides/textures/screenshot.png new file mode 100644 index 00000000..d52f240f Binary files /dev/null and b/mods/antum/overrides/textures/screenshot.png differ