Module:Gm4Sprite/Aliases: Difference between revisions
Jump to navigation
Jump to search
(The word "Relocated" isn't actually in the title) |
(add TNT landmines aliases) |
||
Line 99: | Line 99: | ||
['Zauber Regeneration Soulution'] = { title = 'Soulution of Regeneration', name = 'Zauber Regeneration Potion', text = '&79/9 Sips/&9Regeneration IV (0:22)/Speed III (0:16)' }, | ['Zauber Regeneration Soulution'] = { title = 'Soulution of Regeneration', name = 'Zauber Regeneration Potion', text = '&79/9 Sips/&9Regeneration IV (0:22)/Speed III (0:16)' }, | ||
['Zauber Strength Soulution'] = { title = 'Soulution of Strength', name = 'Zauber Strength Potion', text = '&79/9 Sips/&9Strength IV (1:30)//&5When Applied:/&9+12 Attack Damage' }, | ['Zauber Strength Soulution'] = { title = 'Soulution of Strength', name = 'Zauber Strength Potion', text = '&79/9 Sips/&9Strength IV (1:30)//&5When Applied:/&9+12 Attack Damage' }, | ||
['Zauber Leaping Soulution'] = { title = 'Soulution of Leaping', name = 'Zauber Leaping Potion', text = '&79/9 Sips/&9Jump Boost IV (1:30)' } | ['Zauber Leaping Soulution'] = { title = 'Soulution of Leaping', name = 'Zauber Leaping Potion', text = '&79/9 Sips/&9Jump Boost IV (1:30)' }, | ||
'TNT Landmines', | |||
['Landmine (Invisible)'] = { title = '&eLandmine', name = 'Landmine (Invisible)', text = '&o&5Drop to Use\Invisible' }, | |||
['Soft Defuser'] = { name = 'Soft Defuser', text = '&o&5Drop to Use' }, | |||
} | } | ||
Line 108: | Line 112: | ||
'Crystal of Resistance', | 'Crystal of Resistance', | ||
'Crystal of Speed', | 'Crystal of Speed', | ||
'Relocator' | 'Relocator', | ||
'Landmine' | |||
} | } | ||
Line 376: | Line 381: | ||
end | end | ||
end | end | ||
--TNT Landmines | |||
local landmines = { | |||
'Crafting Table', | |||
'Dirt', | |||
'Grass Block', | |||
'Netherrack', | |||
'Stone Bricks', | |||
'Stone', | |||
} | |||
for _, block in ipairs ( landmines ) do | |||
local name = 'Landmine (' .. block .. ')' | |||
local lore = '&o&5Drop to Use\Disguised as ' .. block | |||
aliases[name] = { title = '&eLandmine', name = name , text = lore } | |||
end | |||
return aliases | return aliases |