Fixed more stuff

master
DonBatman 2016-03-05 15:45:10 -08:00
parent 346b3a704e
commit 12892e8eef
53 changed files with 30 additions and 23 deletions

View File

@ -98,7 +98,7 @@ minetest.register_node("mymagic:colored_energy_"..col,{
description = "Energy Block",
tiles = {{name="mymagic_teleport_ani_"..col..".png", animation={type="vertical_frames",aspect_w=16, aspect_h=16, length=0.5}}},
-- paramtype = "light",
drawtype = "normal",
drawtype = "glasslike",
post_effect_color = rgb,
drop = "",
light_source = 14,

View File

@ -141,7 +141,14 @@ minetest.override_item("mymagic:door_bottom_open2",{
minetest.register_craft({
output = "mymagic:door_dungeon",
recipe = {
{"default:stonebrick","default:stonebrick","default:stonebrick"},
{"default:stonebrick","mymagic:orb_orange","default:stonebrick"},
{"default:stonebrick","default:stonebrick","default:stonebrick"},
},
})

View File

@ -126,25 +126,25 @@ then
{"mymagic_tools:knife_enchanted_"..mtr.."_green", "blue", "mymagic_tools:knife_enchanted_"..mtr.."_blue"},
{"mymagic_tools:knife_enchanted_"..mtr.."_blue", "red", "mymagic_tools:knife_enchanted_"..mtr.."_red"},
{"3d_armor:helmet_diamond", "orange", "dungeon_armor:diamond_helmet_orange"},
{"3d_armor:chestplate_diamond", "orange", "dungeon_armor:diamond_chestplate_orange"},
{"3d_armor:leggings_diamond", "orange", "dungeon_armor:diamond_leggings_orange"},
{"3d_armor:boots_diamond", "orange", "dungeon_armor:diamond_boots_orange"},
{"3d_armor:helmet_diamond", "orange", "mymagic_tools:diamond_helmet_orange"},
{"3d_armor:chestplate_diamond", "orange", "mymagic_tools:diamond_chestplate_orange"},
{"3d_armor:leggings_diamond", "orange", "mymagic_tools:diamond_leggings_orange"},
{"3d_armor:boots_diamond", "orange", "mymagic_tools:diamond_boots_orange"},
{"dungeon_armor:diamond_helmet_orange", "green", "dungeon_armor:diamond_helmet_green"},
{"dungeon_armor:diamond_chestplate_orange", "green", "dungeon_armor:diamond_chestplate_green"},
{"dungeon_armor:diamond_leggings_orange", "green", "dungeon_armor:diamond_leggings_green"},
{"dungeon_armor:diamond_boots_orange", "green", "dungeon_armor:diamond_boots_green"},
{"mymagic_tools:diamond_helmet_orange", "green", "mymagic_tools:diamond_helmet_green"},
{"mymagic_tools:diamond_chestplate_orange", "green", "mymagic_tools:diamond_chestplate_green"},
{"mymagic_tools:diamond_leggings_orange", "green", "mymagic_tools:diamond_leggings_green"},
{"mymagic_tools:diamond_boots_orange", "green", "mymagic_tools:diamond_boots_green"},
{"dungeon_armor:diamond_helmet_green", "blue", "dungeon_armor:diamond_helmet_blue"},
{"dungeon_armor:diamond_chestplate_green", "blue", "dungeon_armor:diamond_chestplate_blue"},
{"dungeon_armor:diamond_leggings_green", "blue", "dungeon_armor:diamond_leggings_blue"},
{"dungeon_armor:diamond_boots_green", "blue", "dungeon_armor:diamond_boots_blue"},
{"mymagic_tools:diamond_helmet_green", "blue", "mymagic_tools:diamond_helmet_blue"},
{"mymagic_tools:diamond_chestplate_green", "blue", "mymagic_tools:diamond_chestplate_blue"},
{"mymagic_tools:diamond_leggings_green", "blue", "mymagic_tools:diamond_leggings_blue"},
{"mymagic_tools:diamond_boots_green", "blue", "mymagic_tools:diamond_boots_blue"},
{"dungeon_armor:diamond_helmet_blue", "red", "dungeon_armor:diamond_helmet_red"},
{"dungeon_armor:diamond_chestplate_blue", "red", "dungeon_armor:diamond_chestplate_red"},
{"dungeon_armor:diamond_leggings_blue", "red", "dungeon_armor:diamond_leggings_red"},
{"dungeon_armor:diamond_boots_blue", "red", "dungeon_armor:diamond_boots_red"},
{"mymagic_tools:diamond_helmet_blue", "red", "mymagic_tools:diamond_helmet_red"},
{"mymagic_tools:diamond_chestplate_blue", "red", "mymagic_tools:diamond_chestplate_red"},
{"mymagic_tools:diamond_leggings_blue", "red", "mymagic_tools:diamond_leggings_red"},
{"mymagic_tools:diamond_boots_blue", "red", "mymagic_tools:diamond_boots_red"},
}
for i in ipairs (tool_list) do

View File

@ -106,7 +106,7 @@ minetest.register_craft({
minetest.register_craft({
output = 'mymagic_tools:knife_bronze',
recipe = {
{'mymagic_tools:knife_ingot'},
{'default:bronze_ingot'},
{'default:bronze_ingot'},
{'group:stick'},
}

View File

@ -16,25 +16,25 @@ for i in ipairs (colors) do
minetest.register_tool("mymagic_tools:"..mat.."_helmet_"..col, {
description = mdes.." Helmet Enchanted "..des,
inventory_image = "mymagic_armor_inv_helmet_"..mat.."_"..col..".png",
inventory_image = "mymagic_tools_armor_inv_helmet_"..mat.."_"..col..".png",
groups = {armor_head=ar1, armor_heal=ar2, armor_use=ar3, armor_fire=ar4},
wear = 0,
})
minetest.register_tool("mymagic_tools:"..mat.."_chestplate_"..col, {
description = mdes.." Chestplate Enchanted "..des,
inventory_image = "mymagic_armor_inv_chestplate_"..mat.."_"..col..".png",
inventory_image = "mymagic_tools_armor_inv_chestplate_"..mat.."_"..col..".png",
groups = {armor_torso=20, armor_heal=12, armor_use=50, armor_fire=ar4},
wear = 0,
})
minetest.register_tool("mymagic_tools:"..mat.."_leggings_"..col, {
description = mdes.." Leggings Enchanted "..des,
inventory_image = "mymagic_armor_inv_leggings_"..mat.."_"..col..".png",
inventory_image = "mymagic_tools_armor_inv_leggings_"..mat.."_"..col..".png",
groups = {armor_legs=20, armor_heal=12, armor_use=50, armor_fire=ar4},
wear = 0,
})
minetest.register_tool("mymagic_tools:"..mat.."_boots_"..col, {
description = mdes.." Boots Enchanted "..des,
inventory_image = "mymagic_armor_inv_boots_"..mat.."_"..col..".png",
inventory_image = "mymagic_tools_armor_inv_boots_"..mat.."_"..col..".png",
groups = {armor_feet=15, armor_heal=12, armor_use=50, physics_speed=0.8, physics_jump=0.5, armor_fire=ar4},
wear = 0,
})

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 432 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 552 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 524 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 481 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 809 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 438 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 338 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B