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

Sandworm queen heart now has a tile

Summoning circle in undead start now has tiles


git-svn-id: http://svn.net-core.org/repos/t-engine4@3775 51575b47-30f0-44d4-a5cc-537603b46e54
parent 31bccb4a
No related branches found
No related tags found
No related merge requests found
Showing
with 11 additions and 3 deletions
......@@ -41,7 +41,7 @@ You are mine! Be quiet!
]],
answers = {
{"[attack]", action=function(npc, player)
local floor = game.zone:makeEntityByName(game.level, "terrain", "FLOOR")
local floor = game.zone:makeEntityByName(game.level, "terrain", "SUMMON_CIRCLE_BROKEN")
game.zone:addEntity(game.level, floor, "terrain", 22, 3)
end},
}
......
game/modules/tome/data/gfx/shockbolt/object/artifact/queen_heart.png

9.72 KiB

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

3.03 KiB

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

2.97 KiB

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

3.12 KiB

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

2.65 KiB

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

2.73 KiB

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

2.74 KiB

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

2.88 KiB

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

2.34 KiB

......@@ -21,8 +21,16 @@ load("/data/general/grids/basic.lua")
newEntity{
define_as = "SUMMON_CIRCLE",
name = "unholy circle", image = "terrain/summon-glyph.png",
name = "unholy circle", image = "terrain/marble_floor.png", add_mos = {{image=resolvers.generic(function() return "object/candle_dark"..rng.range(1,3)..".png" end)}},
force_clone = true,
display = ';', color=colors.GOLD, back_color=colors.GREY,
always_remember = true,
does_block_move = true,
}
newEntity{
define_as = "SUMMON_CIRCLE_BROKEN",
name = "broken unholy circle", image = "terrain/marble_floor.png", add_mos = {{image="object/candle_dark4.png"}},
display = '.', color=colors.GOLD, back_color=colors.GREY,
always_remember = true,
}
......@@ -32,7 +32,7 @@ end
newEntity{
power_source = {nature=true},
define_as = "SANDQUEEN_HEART",
type = "corpse", subtype = "heart",
type = "corpse", subtype = "heart", image = "object/artifact/queen_heart.png",
name = "Heart of the Sandworm Queen", unique=true, unided_name="pulsing organ",
display = "*", color=colors.VIOLET,
desc = [[The heart of the Sandworm Queen, ripped from her dead body. You could ... consume it, should you feel mad enough.]],
......
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