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

Many new zone specific creature tiles

git-svn-id: http://svn.net-core.org/repos/t-engine4@3496 51575b47-30f0-44d4-a5cc-537603b46e54
parent f91bbe6f
No related branches found
No related tags found
No related merge requests found
Showing
with 5 additions and 5 deletions
......@@ -425,8 +425,8 @@ function _M:spawnWorldAmbush(enc, dx, dy)
local g1 = game.level.map(dx, dy, engine.Map.TERRAIN)
local g2 = game.level.map(game.player.x, game.player.y, engine.Map.TERRAIN)
local g = g1
if not g.can_encounter then g = g2 end
if not g.can_encounter then return false end
if not g or not g.can_encounter then g = g2 end
if not g or not g.can_encounter then return false end
if g.can_encounter == "desert" then gen.floor = "SAND" gen.wall = "PALMTREE" end
......
......@@ -19,7 +19,7 @@
-- The basic stuff used to damage a grid
setDefaultProjector(function(src, x, y, type, dam, tmp, no_martyr)
if not game.level.map(x, y) then return 0 end
if not game.level.map:isBound(x, y) then return 0 end
local terrain = game.level.map(x, y, Map.TERRAIN)
if terrain then terrain:check("damage_project", src, x, y, type, dam) end
......
......@@ -20,7 +20,7 @@
base_size = 64
return {
system_rotation = 0, system_rotationv = 0.5,
system_rotation = 0, system_rotationv = speed or 0.5,
base = 1000,
......@@ -36,4 +36,4 @@ return {
}, function(self)
self.ps:emit(1)
end, 1, "shockbolt/terrain/wormhole", true
end, 1, image or "shockbolt/terrain/wormhole", true
game/modules/tome/data/gfx/shockbolt/npc/animal_bear_norgos_the_guardian.png

13 KiB

game/modules/tome/data/gfx/shockbolt/npc/animal_canine_lone_wolf.png

8.95 KiB

game/modules/tome/data/gfx/shockbolt/npc/animal_canine_the_withering_thing.png

6.81 KiB

game/modules/tome/data/gfx/shockbolt/npc/dragon_temporal_rantha_the_abomination.png

19.5 KiB

game/modules/tome/data/gfx/shockbolt/npc/elemental_losgoroth_space_disturbance.png

8.51 KiB

game/modules/tome/data/gfx/shockbolt/npc/giant_minotaur_minotaur_of_the_labyrinth.png

15.3 KiB

game/modules/tome/data/gfx/shockbolt/npc/giant_treant_snaproot.png

13 KiB

game/modules/tome/data/gfx/shockbolt/npc/giant_treant_wrathroot.png

18.2 KiB

game/modules/tome/data/gfx/shockbolt/npc/giant_troll_half_dead_forest_troll.png

11.4 KiB

game/modules/tome/data/gfx/shockbolt/npc/giant_troll_prox_the_mighty.png

11.4 KiB

game/modules/tome/data/gfx/shockbolt/npc/horror_corrupted_the_mouth.png

13.2 KiB

game/modules/tome/data/gfx/shockbolt/npc/horror_eldritch_weirdling_beast.png

10.4 KiB

game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_brotoq_the_reaver.png

9.94 KiB

game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_rak_shor_cultist.png

7.68 KiB

game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_ukruk_the_fierce.png

9.45 KiB

game/modules/tome/data/gfx/shockbolt/npc/humanoid_orc_warmaster_gnarg.png

9.3 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