[antum_overrides] Re-add textures & fix textures no loading correctly.

This commit is contained in:
AntumDeluge 2016-09-02 21:54:42 -07:00
parent 12a0352e6a
commit b756002208
15 changed files with 20 additions and 19 deletions

View File

@ -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')

View File

@ -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')

View File

@ -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

View File

@ -0,0 +1 @@
The texture pack for the Antum Minetest/Freeminer game.

Binary file not shown.

After

Width:  |  Height:  |  Size: 633 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB