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

fix

git-svn-id: http://svn.net-core.org/repos/t-engine4@2391 51575b47-30f0-44d4-a5cc-537603b46e54
parent e455c12d
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ newBirthDescriptor{
name = "Sun Paladin",
desc = {
"Sun Paladins hail from the Gates of Morning, the last bastion of the free people in the Far East.",
"Their way of life is well represented by their motto 'We walk in the dark places no others will enter. We stand on the bridge, and no one may pass.'",
"Their way of life is well represented by their motto 'The Sun is our giver, our purity, our essence. We carry the light into dark places, and against our strength none shall pass.'",
"They can channel the power of the Sun to smite all who seek to destroy the Sunwall.",
"Competent in both weapon and shield combat and magic, they usually burn their foes from afar before engaging in melee.",
"Their most important stats are: Strength and Magic",
......@@ -89,7 +89,7 @@ newBirthDescriptor{
name = "Anorithil",
desc = {
"Anorithils hail from the Gates of Morning, the last bastion of the free people in the Far East.",
"Their way of life is well represented by their motto 'We are Grey. We stand between the darkness and the light.'",
"Their way of life is well represented by their motto 'We stand betwixt the Sun and Moon, where light and darkness meet. In the grey twilight we seek our destiny.'",
"They can channel the power of the Sun and the Moon to burn and tear apart all who seek to destroy the Sunwall.",
"Masters of Sun and Moon magic, they usually burn their foes with Sun rays before calling the fury of the stars.",
"Their most important stats are: Magic and Cunning",
......
......@@ -221,3 +221,27 @@ newEntity{
return true
end,
}
newEntity{
name = "Temporal Rift",
type = "harmless", subtype = "special", unique = true,
level_range = {16, 26},
rarity = 8,
on_world_encounter = "mark-spellblaze",
on_encounter = function(self, who)
local x, y = self:findSpot(who)
if not x then return end
local g = mod.class.Grid.new{
show_tooltip=true,
name="Temporal Rift",
display='>', color=colors.VIOLET, image = "terrain/grass.png", add_displays = {mod.class.Grid.new{image = "object/temporal_instability.png"}},
notice = true,
change_level=1, change_zone="temporal-rift",
}
g:resolve() g:resolve(nil, true)
game.zone:addEntity(game.level, g, "terrain", x, y)
game.logPlayer(who, "#LIGHT_BLUE#You notice a strange disturbance. It seems to be a rift in reality itself.")
return true
end,
}
......@@ -31,8 +31,7 @@ newEntity{
newEntity{
define_as = "SPACE_TURBULENCE",
name = "space turbulence",
display = '#', color=colors.WHITE,
shader = "space_turbulence", textures = { function() return _3DNoise, true end },
display = '#', color=colors.WHITE, image="terrain/temporal_instability_yellow.png",
always_remember = true,
does_block_move = true,
_noalpha = false,
......
......@@ -237,9 +237,7 @@ newTalent{
return true
end,
info = function(self, t)
local percent = t.getPercent(self, t)
return ([[Casting this spell sends you back to the moment you entered the current dungeon level.
Traveling through time carries with it inherent penalties and doing so will permanently reduce your hit points by %d%%.]])
:format(percent)
return ([[]])
:format()
end,
}
......@@ -23,7 +23,7 @@ In the uttermost east, on the continent known only as the Far East, dwell the la
Anorithil are mages who are trained in special magic to focus the powers of the Sun and Moon.
They have learned to harness the energy of both shadows and light in their battle against the Pride.
Their motto is: "I am Grey. I stand between the candle and the star. We are Grey. We stand between the darkness and the light."
Their motto is: "We stand betwixt the Sun and Moon, where light and darkness meet. In the grey twilight we seek our destiny."
You have helped one of them and can now create new characters with the #LIGHT_GREEN#Anorithil class#WHITE#.
......
......@@ -23,7 +23,7 @@ In the uttermost east, on the continent known only as the Far East, dwell the la
Sun Paladins are warriors who are trained in special magic to focus the powers of the Sun.
Paragons of all that is good, they are nonetheless terrible in their battle against the Pride.
Their motto is: "We walk in the dark places no others will enter. We stand on the bridge, and no one may pass."
Their motto is: "The Sun is our giver, our purity, our essence. We carry the light into dark places, and against our strength none shall pass."
You have discovered the Gates of Morning and can now create new characters with the #LIGHT_GREEN#Sun Paladin class#WHITE#.
......
......@@ -24,7 +24,7 @@ load("/data/general/grids/sand.lua")
newEntity{
define_as = "OLD_FOREST",
name = "way to the old forest", image = "terrain/way_next_8.png",
name = "way to the old forest", image = "terrain/grass.png", add_displays = {class.new{image = "terrain/way_next_8.png"}},
display = '<', color_r=255, color_g=255, color_b=0,
notice = true,
always_remember = true,
......
......@@ -24,7 +24,7 @@ load("/data/general/grids/water.lua")
newEntity{
define_as = "LAKE_NUR",
name = "way to the lake of Nur",
display = '>', color_r=255, color_g=255, color_b=0, image = "terrain/way_next_2.png",
display = '>', color_r=255, color_g=255, color_b=0, image = "terrain/grass.png", add_displays = {class.new{image = "terrain/way_next_2.png"}},
notice = true,
always_remember = true,
change_level = 1, change_zone = "lake-nur",
......
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