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

plop

git-svn-id: http://svn.net-core.org/repos/t-engine4@1657 51575b47-30f0-44d4-a5cc-537603b46e54
parent 165040a0
No related branches found
No related tags found
No related merge requests found
......@@ -61,8 +61,8 @@ newAI("target_player_radius", function(self)
end
end)
-- Special targetting for mount doom, select a normal target, if none is found go for the player
newAI("mount_doom_target", function(self)
-- Special targetting for charred scar, select a normal target, if none is found go for the player
newAI("charred_scar_target", function(self)
if self:runAI("target_simple") then return true end
self.ai_target.actor = game.player
return true
......
......@@ -43,7 +43,7 @@ So, now you will kill me and complete the cycle of destruction?]],
newChat{ id="what",
text = [[You.. you do not know?
A few hours after you entered this place a raid of orcs fell upon us. They were not alone -- demons walked among them. We were overwhelmed! Utterly destroyed!
My land is no more! All because you could not stop them at Mount Doom! You failed us! People died to protect you and you failed!
My land is no more! All because you could not stop them at the Charred Scar! You failed us! People died to protect you and you failed!
#LIGHT_GREEN#*She starts to weep...*#WHITE#]],
answers = {
{"I know my mistakes and I intend to correct them. Please let me pass. I cannot save your people but I can make their death mean something!", action=spare},
......
......@@ -18,7 +18,7 @@
-- darkgod@te4.org
local function void_portal_open(npc, player)
-- Mount doom was succesfull
-- Charred scar was succesfull
if player:hasQuest("charred-scar") and player:hasQuest("charred-scar"):isCompleted("stopped") then return false end
return true
end
......
......@@ -18,12 +18,12 @@
-- darkgod@te4.org
local function void_portal_open(npc, player)
-- Mount doom was succesfull
-- Charred scar was succesfull
if player:hasQuest("charred-scar") and player:hasQuest("charred-scar"):isCompleted("stopped") then return false end
return true
end
local function aeryn_alive(npc, player)
-- Mount doom was succesfull
-- Charred scar was succesfull
if player:hasQuest("charred-scar") and player:hasQuest("charred-scar"):isCompleted("stopped") then return true end
-- Spared aeryn
......
......@@ -17,12 +17,12 @@
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
-- Ruysh mount doom
-- Ruysh Charred scar
name = "The Doom of the World!"
desc = function(self, who)
local desc = {}
desc[#desc+1] = "You were sent to Mount Doom, in the ancient land of Mordor, where the One Ring was once forged by Sauron and destroyed by Frodo Baggins."
desc[#desc+1] = "This place is still full of the power of the ring and the orcs intend to absorb this power using the Staff of Absorption!"
desc[#desc+1] = "You were sent to the Charred Scar at the haert of which lies a huge volcano. In the Age of Pyre it destroyed the old Sher'Tul ruins that stood there, absorbing much of their latent magic."
desc[#desc+1] = "This place is still full of that power and the orcs intend to absorb this power using the Staff of Absorption!"
desc[#desc+1] = "Whatever their plan may be, they must be stopped at all cost."
desc[#desc+1] = "The volcano is attacked by orcs, a few Sun Paladins made it there with you, they will hold the line at the cost of their lives to buy you some time."
desc[#desc+1] = "Honor their sacrifice, do not let the orcs finish their work!"
......@@ -58,10 +58,10 @@ start_fyrk = function(self)
game.zone:addEntity(game.level, fyrk, "actor", 6, 455)
if self:isCompleted("not-stopped") then
game.logPlayer(game.player, "#VIOLET#A portal activates in the distance, you hear the orcs shout 'The Blue Wizards have departed, follow them!'")
game.logPlayer(game.player, "#VIOLET#A portal activates in the distance, you hear the orcs shout 'The Sorcerers have departed, follow them!'")
else
game.logPlayer(game.player, "#VIOLET#The Blue Wizards flee through a portal, as you prepare to follow them a huge faeros appears to block the way.")
world:gainAchievement("MOUNT_DOOM_SUCCESS", game.player)
game.logPlayer(game.player, "#VIOLET#The Sorcerers flee through a portal, as you prepare to follow them a huge faeros appears to block the way.")
world:gainAchievement("CHARRED_SCAR_SUCCESS", game.player)
end
game.player:setQuestStatus("charred-scar", engine.Quest.COMPLETED)
end
......@@ -25,14 +25,14 @@ load("/data/general/grids/mountain.lua")
newEntity{
define_as = "MOUNT_DOOM_PORTAL",
name = "Farportal: Mount Doom",
define_as = "CHARRED_SCAR_PORTAL",
name = "Farportal: Charred Scar",
display = '&', color_r=255, color_g=0, color_b=220, back_color=colors.VIOLET,
notice = true,
always_remember = true,
show_tooltip = true,
desc = [[A farportal is a way to travel incredible distances in the blink of an eye. They usually require an external item to use. You have no idea if it is even two-way.
This one seems to go to the west, to Mount Doom, in the land of Mordor. A fiery volcano that can only spell death...]],
This one seems to go to the west, to Charred Scar. A fiery volcano that can only spell death...]],
orb_portal = {
change_level = 1,
......@@ -42,7 +42,7 @@ This one seems to go to the west, to Mount Doom, in the land of Mordor. A fiery
-- Find all portals and deactivate them
for i = -4, 4 do for j = -4, 4 do if game.level.map:isBound(who.x + i, who.y + j) then
local g = game.level.map(who.x + i, who.y + j, engine.Map.TERRAIN)
if g.define_as and g.define_as == "MOUNT_DOOM_PORTAL" then g.orb_portal = nil end
if g.define_as and g.define_as == "CHARRED_SCAR_PORTAL" then g.orb_portal = nil end
end end end
end,
on_use = function(self, who)
......
......@@ -190,7 +190,7 @@ newEntity{
end,
}
-- Aeryn trying to kill the player if mount doom quest failed
-- Aeryn trying to kill the player if charred scar quest failed
newEntity{ define_as = "FALLEN_SUN_PALADIN_AERYN",
type = "humanoid", subtype = "human",
display = "p",
......
......@@ -62,7 +62,7 @@ return {
game.player:grantQuest("high-peak")
for uid, e in pairs(level.entities) do e.faction="blue-wizards" end
-- if we failed at mount doom (or did not do it at all) the gate of morning is destroyed and Aeryn turned to the service of the istari
-- if we failed at charred scar (or did not do it at all) the gate of morning is destroyed and Aeryn turned to the service of the istari
if level.level == 15 then
local mtdm = game.player:hasQuest("charred-scar")
if not mtdm or mtdm:isCompleted("not-stopped") then
......
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