Skip to content
Snippets Groups Projects
Commit bf677c66 authored by dg's avatar dg
Browse files

All alchemist quets ingredients and rewards now have tiles

git-svn-id: http://svn.net-core.org/repos/t-engine4@3778 51575b47-30f0-44d4-a5cc-537603b46e54
parent 881ee38e
No related branches found
No related tags found
No related merge requests found
Showing
with 90 additions and 82 deletions
......@@ -487,6 +487,12 @@ function _M:leaveLevel(level, lev, old_lev)
end
function _M:onLevelLoad(id, fct)
if self.zone and self.level and id == self.zone.short_name.."-"..self.level.level then
print("Direct execute of on level load", id, fct)
fct(self.zone, self.level)
return
end
self.on_level_load_fcts = self.on_level_load_fcts or {}
self.on_level_load_fcts[id] = self.on_level_load_fcts[id] or {}
local l = self.on_level_load_fcts[id]
......@@ -1002,7 +1008,13 @@ function _M:setupCommands()
-- local m = game.zone:makeEntity(game.level, "actor", {random_boss=true}, nil, true)
-- if m then game.zone:addEntity(game.level, m, "actor", game.player.x, game.player.y + 1) end
-- self:changeLevel(1, "test")
self.level.map:particleEmitter(game.player.x, game.player.y, 1, "flame")
local list = mod.class.Object:loadList("/data/general/objects/brotherhood-artifacts.lua")
for _, e in ipairs(list) do if e.image and e.unique then
local o = e:clone()
o:resolve() o:resolve(nil,true)
local x, y = util.findFreeGrid(self.player.x, self.player.y, 15, true, {[engine.Map.OBJECT]=true})
game.zone:addEntity(game.level, o, "object", x, y)
end end
end end,
}
......
......@@ -29,14 +29,14 @@ newEntity{
local x, y = self:findSpotGeneric(who, function(map, x, y) local enc = map:checkAllEntities(x, y, "can_encounter") return enc and enc == "water" end)
if not x then return end
local g = mod.class.Grid.new{
show_tooltip=true,
name="Entrance to an underwater cave",
display='>', color=colors.AQUAMARINE,
notice = true,
change_level=1, change_zone="flooded-cave"
}
g:resolve() g:resolve(nil, true)
local g = game.level.map(x, y, engine.Map.TERRAIN):cloneFull()
g.name = "Entrance to an underwater cave"
g.display='>' g.color_r=colors.AQUAMARINE.r g.color_g=colors.AQUAMARINE.g g.color_b=colors.AQUAMARINE.b g.notice = true
g.change_level=1 g.change_zone="flooded-cave"
g.add_displays = g.add_displays or {}
g.add_displays[#g.add_displays+1] = mod.class.Grid.new{image="terrain/underwater/subsea_cave_entrance_01.png", z=4, display_h=2, display_y=-1}
g.nice_tiler = nil
g.does_block_move = nil
game.zone:addEntity(game.level, g, "terrain", x, y)
game.logPlayer(who, "#LIGHT_BLUE#You notice an entrance to an underwater cave.")
return true
......@@ -51,16 +51,14 @@ newEntity{
local x, y = self:findSpot(who)
if not x then return end
local g = mod.class.Grid.new{
show_tooltip=true,
name="Entrance to a dark crypt",
display='>', color=colors.GREY,
notice = true,
change_level=1, change_zone="shadow-crypt"
}
g:resolve() g:resolve(nil, true)
local g = game.level.map(x, y, engine.Map.TERRAIN):cloneFull()
g.name = "Entrance to a dark crypt"
g.display='>' g.color_r=128 g.color_g=128 g.color_b=128 g.notice = true
g.change_level=1 g.change_zone="shadow-crypt"
g.add_displays = g.add_displays or {}
g.add_displays[#g.add_displays+1] = mod.class.Grid.new{image="terrain/dungeon_entrance_closed02.png", z=5}
g.nice_tiler = nil
game.zone:addEntity(game.level, g, "terrain", x, y)
game.logPlayer(who, "#LIGHT_BLUE#You notice an entrance to a dark crypt. Fetid wind seems to come out of it.")
return true
end
}
......@@ -73,16 +71,14 @@ newEntity{
local x, y = self:findSpot(who)
if not x then return end
local g = mod.class.Grid.new{
show_tooltip=true,
name="Entrance to the orc breeding pit",
display='>', color=colors.GREEN,
notice = true,
change_level=1, change_zone="orc-breeding-pit"
}
g:resolve() g:resolve(nil, true)
local g = game.level.map(x, y, engine.Map.TERRAIN):cloneFull()
g.name = "Entrance to the orc breeding pit"
g.display='>' g.color_r=colors.GREEN.r g.color_g=colors.GREEN.g g.color_b=colors.GREEN.b g.notice = true
g.change_level=1 g.change_zone="orc-breeding-pit"
g.add_displays = g.add_displays or {}
g.add_displays[#g.add_displays+1] = mod.class.Grid.new{image="terrain/ladder_down.png"}
g.nice_tiler = nil
game.zone:addEntity(game.level, g, "terrain", x, y)
game.logPlayer(who, "#LIGHT_BLUE#You find an entrance to a dim, moist cavern. The stench of the warm air rising from it is almost unbearable.")
return true
end
}
......@@ -27,7 +27,7 @@ local Talents = require "engine.interface.ActorTalents"
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_FOX",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_the_fox.png",
name = "Elixir of the Fox", unique=true, unided_name="vial of pink fluid",
display = "!", color=colors.VIOLET,
desc = [[A vial of pink, airy fluid.]],
......@@ -48,7 +48,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_AVOIDANCE",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_avoidance.png",
name = "Elixir of Avoidance", unique=true, unided_name="vial of green fluid",
display = "!", color=colors.GREEN,
desc = [[A vial of opaque green fluid.]],
......@@ -66,7 +66,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_PRECISION",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_precision.png",
name = "Elixir of Precision", unique=true, unided_name="vial of red fluid",
display = "!", color=colors.GREEN,
desc = [[A vial of chunky red fluid.]],
......@@ -84,7 +84,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_MYSTICISM",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_mysticism.png",
name = "Elixir of Mysticism", unique=true, unided_name="vial of cyan fluid",
display = "!", color=colors.BLUE,
desc = [[A vial of glowing cyan fluid.]],
......@@ -105,7 +105,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_SAVIOR",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_the_saviour.png",
name = "Elixir of the Savior", unique=true, unided_name="vial of grey fluid",
display = "!", color=colors.GREY,
desc = [[A vial of bubbling, slate-colored fluid.]],
......@@ -125,7 +125,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_MASTERY",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_mastery.png",
name = "Elixir of Mastery", unique=true, unided_name="vial of maroon fluid",
display = "!", color=colors.PURPLE,
desc = [[A vial of thick maroon fluid.]],
......@@ -144,7 +144,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_FORCE",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_explosive_force.png",
name = "Elixir of Explosive Force", unique=true, unided_name="vial of orange fluid",
display = "!", color=colors.ORANGE,
desc = [[A vial of churning orange fluid.]],
......@@ -162,7 +162,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_SERENDIPITY",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_serendipity.png",
name = "Elixir of Serendipity", unique=true, unided_name="vial of yellow fluid",
display = "!", color=colors.YELLOW,
desc = [[A vial of lifelike yellow fluid.]],
......@@ -181,7 +181,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_FOCUS",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_focus.png",
name = "Elixir of Focus", unique=true, unided_name="vial of clear fluid",
display = "!", color=colors.WHITE,
desc = [[A vial of clear, steaming fluid.]],
......@@ -199,7 +199,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_BRAWN",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_brawn.png",
name = "Elixir of Brawn", unique=true, unided_name="vial of tan fluid",
display = "!", color=colors.TAN,
desc = [[A vial of sluggish tan fluid.]],
......@@ -220,7 +220,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_STONESKIN",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_stoneskin.png",
name = "Elixir of Stoneskin", unique=true, unided_name="vial of iron-colored fluid",
display = "!", color=colors.SLATE,
desc = [[A vial of grainy, iron-colored fluid.]],
......@@ -238,7 +238,7 @@ newEntity{
newEntity{
power_source = {nature=true},
define_as = "ELIXIR_FOUNDATIONS",
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_foundations.png",
name = "Elixir of Foundations", unique=true, unided_name="vial of white fluid",
display = "!", color=colors.WHITE,
desc = [[A vial of murky wuite fluid.]],
......@@ -257,12 +257,12 @@ newEntity{
newEntity{ base = "BASE_TAINT",
name = "Taint of Telepathy",
define_as = "TAINT_TELEPATHY",
define_as = "TAINT_TELEPATHY", image = "object/taint_of_telepathy.png",
unique = true,
identified = true,
cost = 200,
material_level = 3,
inscription_kind = "utility",
inscription_data = {
cooldown = 30,
......@@ -273,12 +273,12 @@ newEntity{ base = "BASE_TAINT",
newEntity{ base = "BASE_INFUSION",
name = "Infusion of Wild Growth",
define_as = "INFUSION_WILD_GROWTH",
define_as = "INFUSION_WILD_GROWTH", image = "object/infusion_of_wild_growth.png",
unique = true,
identified = true,
cost = 200,
material_level = 3,
inscription_kind = "utility",
inscription_data = {
cooldown = 30,
......@@ -292,8 +292,8 @@ newEntity{ base = "BASE_GEM",
power_source = {nature=true},
unique = true,
unided_name = "cloudy, heavy emerald",
name = "Lifebinding Emerald", subtype = "green",
color = colors.GREEN, image="object/emerald.png",
name = "Lifebinding Emerald", subtype = "green", image = "object/lifebinding_emerald.png",
color = colors.GREEN,
desc = [[A lopsided, heavy emerald with murky green clouds shifting sluggishly under the surface.]],
cost = 200,
material_level = 5,
......@@ -319,7 +319,7 @@ newEntity{
power_source = {nature=true},
define_as = "ELIXIR_INVULNERABILITY",
encumber = 2,
type = "potion", subtype="potion",
type = "potion", subtype="potion", image = "object/elixir_of_invulnerability.png",
name = "Elixir of Invulnerability", unique=true, unided_name="vial of black fluid",
display = "!", color=colors.SLATE,
desc = [[A vial of thick fluid, metallic and reflective. It's incredibly heavy.]],
......
......@@ -20,7 +20,7 @@
newEntity{ define_as = "TROLL_INTESTINE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/troll_intestine.png",
level_range = {50, 50},
encumber = 0,
unided_name = "troll guts",
......@@ -32,7 +32,7 @@ newEntity{ define_as = "TROLL_INTESTINE",
newEntity{ define_as = "SKELETON_MAGE_SKULL",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/skeleton_mage_skull.png",
unided_name = "battered skull",
name = "skeleton mage skull",
level_range = {50, 50},
......@@ -44,7 +44,7 @@ newEntity{ define_as = "SKELETON_MAGE_SKULL",
newEntity{ define_as = "RITCH_STINGER",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/ritch_stinger.png",
unided_name = "giant stinger",
name = "ritch stinger",
level_range = {50, 50},
......@@ -56,7 +56,7 @@ newEntity{ define_as = "RITCH_STINGER",
newEntity{ define_as = "ORC_HEART",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/orc_heart.png",
unided_name = "heart",
name = "orc heart",
level_range = {50, 50},
......@@ -68,7 +68,7 @@ newEntity{ define_as = "ORC_HEART",
newEntity{ define_as = "NAGA_TONGUE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/naga_tongue.png",
level_range = {50, 50},
encumber = 0,
unided_name = "naga tongue",
......@@ -80,7 +80,7 @@ newEntity{ define_as = "NAGA_TONGUE",
newEntity{ define_as = "GREATER_DEMON_BILE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/phial_demon_blood.png",
level_range = {50, 50},
encumber = 0,
unided_name = "demon bile",
......@@ -92,7 +92,7 @@ newEntity{ define_as = "GREATER_DEMON_BILE",
newEntity{ define_as = "BONE_GOLEM_DUST",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/pouch_bone_giant_dust.png",
level_range = {50, 50},
encumber = 0,
unided_name = "bone giant dust",
......@@ -104,7 +104,7 @@ newEntity{ define_as = "BONE_GOLEM_DUST",
newEntity{ define_as = "FROST_ANT_STINGER",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/ice_ant_stinger.png",
level_range = {50, 50},
encumber = 0,
unided_name = "stinger",
......@@ -116,7 +116,7 @@ newEntity{ define_as = "FROST_ANT_STINGER",
newEntity{ define_as = "MINOTAUR_NOSE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/minotaur_nose.png",
level_range = {50, 50},
encumber = 0,
unided_name = "minotaur nose",
......@@ -128,7 +128,7 @@ newEntity{ define_as = "MINOTAUR_NOSE",
newEntity{ define_as = "ELDER_VAMPIRE_BLOOD",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/vial_elder_vampire_blood.png",
level_range = {50, 50},
encumber = 0,
unided_name = "black blood",
......@@ -140,7 +140,7 @@ newEntity{ define_as = "ELDER_VAMPIRE_BLOOD",
newEntity{ define_as = "MULTIHUED_WYRM_SCALE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/dragon_scale_multihued.png",
level_range = {50, 50},
encumber = 0,
unided_name = "shimmering scale",
......@@ -152,7 +152,7 @@ newEntity{ define_as = "MULTIHUED_WYRM_SCALE",
newEntity{ define_as = "SPIDER_SPINNERET",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/spider_spinnarets.png",
level_range = {50, 50},
encumber = 0,
unided_name = "spinneret",
......@@ -164,7 +164,7 @@ newEntity{ define_as = "SPIDER_SPINNERET",
newEntity{ define_as = "HONEY_TREE_ROOT",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/honey_tree_root.png",
level_range = {50, 50},
encumber = 0,
unided_name = "dirty root",
......@@ -176,7 +176,7 @@ newEntity{ define_as = "HONEY_TREE_ROOT",
newEntity{ define_as = "BLOATED_HORROR_HEART",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/bloated_horror_heart.png",
level_range = {50, 50},
encumber = 0,
unided_name = "heart",
......@@ -188,7 +188,7 @@ newEntity{ define_as = "BLOATED_HORROR_HEART",
newEntity{ define_as = "ELECTRIC_EEL_TAIL",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/electric_eel_tail.png",
level_range = {50, 50},
encumber = 0,
unided_name = "eel tail",
......@@ -200,7 +200,7 @@ newEntity{ define_as = "ELECTRIC_EEL_TAIL",
newEntity{ define_as = "SQUID_INK",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/vial_squid_ink.png",
level_range = {50, 50},
encumber = 0,
unided_name = "black liquid",
......@@ -212,7 +212,7 @@ newEntity{ define_as = "SQUID_INK",
newEntity{ define_as = "BEAR_PAW",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/bear_paw.png",
level_range = {50, 50},
encumber = 0,
unided_name = "large, clawed paw",
......@@ -224,7 +224,7 @@ newEntity{ define_as = "BEAR_PAW",
newEntity{ define_as = "ICE_WYRM_TOOTH",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/frost_wyrm_tooth.png",
level_range = {50, 50},
encumber = 0,
unided_name = "tooth",
......@@ -236,7 +236,7 @@ newEntity{ define_as = "ICE_WYRM_TOOTH",
newEntity{ define_as = "RED_CRYSTAL_SHARD",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/red_crystal_shard.png",
level_range = {50, 50},
encumber = 0,
unided_name = "red crystal shard",
......@@ -248,7 +248,7 @@ newEntity{ define_as = "RED_CRYSTAL_SHARD",
newEntity{ define_as = "FIRE_WYRM_SALIVA",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/vial_fire_wyrm_saliva.png",
level_range = {50, 50},
encumber = 0,
unided_name = "wyrm saliva",
......@@ -260,7 +260,7 @@ newEntity{ define_as = "FIRE_WYRM_SALIVA",
newEntity{ define_as = "GHOUL_FLESH",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/ghoul_flesh.png",
level_range = {50, 50},
encumber = 0,
unided_name = "chunk of rotten flesh",
......@@ -272,7 +272,7 @@ newEntity{ define_as = "GHOUL_FLESH",
newEntity{ define_as = "MUMMY_BONE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/mummified_bone.png",
level_range = {50, 50},
encumber = 0,
unided_name = "dry, flesh-encrusted bone",
......@@ -284,7 +284,7 @@ newEntity{ define_as = "MUMMY_BONE",
newEntity{ define_as = "SANDWORM_TOOTH",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/sandworm_tooth.png",
level_range = {50, 50},
encumber = 0,
unided_name = "small, pointed tooth",
......@@ -296,7 +296,7 @@ newEntity{ define_as = "SANDWORM_TOOTH",
newEntity{ define_as = "BLACK_MAMBA_HEAD",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/black_mamba_head.png",
level_range = {50, 50},
encumber = 0,
unided_name = "snake head",
......@@ -308,7 +308,7 @@ newEntity{ define_as = "BLACK_MAMBA_HEAD",
newEntity{ define_as = "SNOW_GIANT_KIDNEY",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/snow_giant_kidney.png",
level_range = {50, 50},
encumber = 0,
unided_name = "kidney",
......@@ -320,7 +320,7 @@ newEntity{ define_as = "SNOW_GIANT_KIDNEY",
newEntity{ define_as = "STORM_WYRM_CLAW",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/storm_wyrm_claw.png",
level_range = {50, 50},
encumber = 0,
unided_name = "claw",
......@@ -332,7 +332,7 @@ newEntity{ define_as = "STORM_WYRM_CLAW",
newEntity{ define_as = "GREEN_WORM",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/green_worm.png",
level_range = {50, 50},
encumber = 0,
unided_name = "dead green worm",
......@@ -344,7 +344,7 @@ newEntity{ define_as = "GREEN_WORM",
newEntity{ define_as = "WIGHT_ECTOPLASM",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/vial_wight_ectoplasm.png",
level_range = {50, 50},
encumber = 0,
unided_name = "viscous slime",
......@@ -356,7 +356,7 @@ newEntity{ define_as = "WIGHT_ECTOPLASM",
newEntity{ define_as = "XORN_FRAGMENT",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/xorn_fragment.png",
level_range = {50, 50},
encumber = 0,
unided_name = "chunk of stone",
......@@ -368,7 +368,7 @@ newEntity{ define_as = "XORN_FRAGMENT",
newEntity{ define_as = "WARG_CLAW",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/warg_claw.png",
level_range = {50, 50},
encumber = 0,
unided_name = "claw",
......@@ -380,7 +380,7 @@ newEntity{ define_as = "WARG_CLAW",
newEntity{ define_as = "FAEROS_ASH",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/pharao_ash.png",
level_range = {50, 50},
encumber = 0,
unided_name = "ash",
......@@ -392,7 +392,7 @@ newEntity{ define_as = "FAEROS_ASH",
newEntity{ define_as = "WRETCHLING_EYE",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/wretchling_eyeball.png",
level_range = {50, 50},
encumber = 0,
unided_name = "eyeball",
......@@ -404,7 +404,7 @@ newEntity{ define_as = "WRETCHLING_EYE",
newEntity{ define_as = "FAERLHING_FANG",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/faerlhing_fang.png",
level_range = {50, 50},
encumber = 0,
unided_name = "fang",
......@@ -416,7 +416,7 @@ newEntity{ define_as = "FAERLHING_FANG",
newEntity{ define_as = "VAMPIRE_LORD_FANG",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/vampire_lord_fang.png",
level_range = {50, 50},
encumber = 0,
unided_name = "fang",
......@@ -428,7 +428,7 @@ newEntity{ define_as = "VAMPIRE_LORD_FANG",
newEntity{ define_as = "HUMMERHORN_WING",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/hummerhorn_wing.png",
level_range = {50, 50},
encumber = 0,
unided_name = "translucent insect wing",
......@@ -440,7 +440,7 @@ newEntity{ define_as = "HUMMERHORN_WING",
newEntity{ define_as = "LUMINOUS_HORROR_DUST",
quest=true, identified=true, no_unique_lore=true,
type = "misc", subtype="ingredient",
type = "misc", subtype="ingredient", image = "object/pouch_luminous_horror_dust.png",
level_range = {50, 50},
encumber = 0,
unided_name = "glowing dust",
......
game/modules/tome/data/gfx/shockbolt/object/bear_paw.png

7.09 KiB

game/modules/tome/data/gfx/shockbolt/object/black_mamba_head.png

5.61 KiB

game/modules/tome/data/gfx/shockbolt/object/bloated_horror_heart.png

7.1 KiB

game/modules/tome/data/gfx/shockbolt/object/dragon_scale_multihued.png

5.75 KiB

game/modules/tome/data/gfx/shockbolt/object/electric_eel_tail.png

8.15 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_avoidance.png

3.95 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_brawn.png

3.89 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_explosive_force.png

3.9 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_focus.png

4.02 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_foundations.png

3.91 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_invulnerability.png

3.88 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_mastery.png

3.9 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_mysticism.png

3.94 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_precision.png

3.95 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_serendipity.png

3.91 KiB

game/modules/tome/data/gfx/shockbolt/object/elixir_of_stoneskin.png

3.9 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment