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

many typos

git-svn-id: http://svn.net-core.org/repos/t-engine4@2238 51575b47-30f0-44d4-a5cc-537603b46e54
parent 9c683dc4
No related branches found
No related tags found
No related merge requests found
Showing
with 54 additions and 54 deletions
......@@ -24,14 +24,14 @@
newAI("target_heal", function(self)
if self.ai_target.actor and not self.ai_target.actor.dead and rng.percent(90) then return true end
-- Find closer ennemy and target it
-- Find closer enemy and target it
-- Get list of actors ordered by distance
local arr = self.fov.actors_dist
local act
for i = 1, #arr do
act = self.fov.actors_dist[i]
-- print("AI looking for target", self.uid, self.name, "::", act.uid, act.name, self.fov.actors[act].sqdist)
-- find the closest ennemy
-- find the closest enemy
if act and self:reactionToward(act) >= 0 and not act.dead then
self.ai_target.actor = act
return true
......
......@@ -21,7 +21,7 @@ local Astar = require "engine.Astar"
-- AI for the escort quest
-- the NPC will run on the given path up to the end and then start summoning
-- This alows him to buildup his distancemap to make demons follow him
-- This allows him to buildup his distancemap to make demons follow him
newAI("move_quest_limmir", function(self)
if self.limmir_target then
local tx, ty = self.limmir_target.x, self.limmir_target.y
......
......@@ -47,7 +47,7 @@ local function shadowChooseActorTarget(self)
end
if #actors > 0 then
--game.logPlayer(self.summoner, "#PINK#%s has choosen an actor.", self.name:capitalize())
--game.logPlayer(self.summoner, "#PINK#%s has chosen an actor.", self.name:capitalize())
self.ai_target.actor = actors[rng.range(1, #actors)]
self:check("on_acquire_target", act)
act:check("on_targeted", self)
......
......@@ -23,7 +23,7 @@
newAI("target_simple", function(self)
if self.ai_target.actor and not self.ai_target.actor.dead and rng.percent(90) then return true end
-- Find closer ennemy and target it
-- Find closer enemy and target it
-- Get list of actors ordered by distance
local arr = self.fov.actors_dist
local act
......@@ -32,7 +32,7 @@ newAI("target_simple", function(self)
for i = 1, #arr do
act = self.fov.actors_dist[i]
-- print("AI looking for target", self.uid, self.name, "::", act.uid, act.name, self.fov.actors[act].sqdist)
-- find the closest ennemy
-- find the closest enemy
if act and self:reactionToward(act) < 0 and not act.dead and
(
-- If it has lite we can always see it
......
......@@ -23,7 +23,7 @@ local Astar = require "engine.Astar"
newAI("target_world", function(self)
if self.ai_target.actor and not self.ai_target.actor.dead and rng.percent(90) then return true end
-- Find closer ennemy and target it
-- Find closer enemy and target it
-- Get list of actors ordered by distance
local arr = self.fov.actors_dist
local act
......@@ -32,7 +32,7 @@ newAI("target_world", function(self)
for i = 1, #arr do
act = self.fov.actors_dist[i]
-- print("AI looking for target", self.uid, self.name, "::", act.uid, act.name, self.fov.actors[act].sqdist)
-- find the closest ennemy
-- find the closest enemy
if act and self:reactionToward(act) < 0 and not act.dead and
-- Otherwise check if we can see it with our "senses"
self.fov.actors[act].sqdist <= sqsense
......
......@@ -39,7 +39,7 @@ local Map = require "engine.Map"
local DamageType = require "engine.DamageType"
module(..., package.seeall, class.inherit(
-- a ToME actor is a complex beast it uses may inetrfaces
-- a ToME actor is a complex beast it uses may interfaces
engine.Actor,
engine.interface.ActorInventory,
engine.interface.ActorTemporaryEffects,
......@@ -208,7 +208,7 @@ function _M:act()
self.changed = true
-- If ressources are too low, disable sustains
-- If resources are too low, disable sustains
if self.mana < 1 or self.stamina < 1 or self.psi < 1 then
for tid, _ in pairs(self.sustain_talents) do
local t = self:getTalentFromId(tid)
......@@ -242,7 +242,7 @@ function _M:act()
-- Compute timed effects
self:timedEffects()
-- Handle thunderstorm, even if the actor is stunned or incampacited it still works
-- Handle thunderstorm, even if the actor is stunned or incapacitated it still works
if self:isTalentActive(self.T_THUNDERSTORM) then
local t = self:getTalentFromId(self.T_THUNDERSTORM)
t.do_storm(self, t)
......@@ -428,7 +428,7 @@ function _M:dropNoTeleportObjects()
local o = inven[item]
if o.no_teleport then
self:dropFloor(inven, item, false, true)
game.logPlayer(self, "#LIGHT_RED#Your %s is immunte to the teleportation and drops to the floor!", o:getName{do_color=true})
game.logPlayer(self, "#LIGHT_RED#Your %s is immune to the teleportation and drops to the floor!", o:getName{do_color=true})
end
end
end
......@@ -456,10 +456,10 @@ end
--- Teleports randomly to a passable grid
-- This simply calls the default actor teleportRandom but first checks for space-time stability
-- @param x the coord of the teleporatation
-- @param y the coord of the teleporatation
-- @param x the coord of the teleportation
-- @param y the coord of the teleportation
-- @param dist the radius of the random effect, if set to 0 it is a precise teleport
-- @param min_dist the minimun radius of of the effect, will never teleport closer. Defaults to 0 if not set
-- @param min_dist the minimum radius of of the effect, will never teleport closer. Defaults to 0 if not set
-- @return true if the teleport worked
function _M:teleportRandom(x, y, dist, min_dist)
if game.level.data.no_teleport_south and y + dist > self.y then
......@@ -743,7 +743,7 @@ function _M:onTakeHit(value, src)
if self:attr("disruption_shield") then
local mana = self:getMana()
local mana_val = value * self:attr("disruption_shield")
-- We have enough to absord the full hit
-- We have enough to absorb the full hit
if mana_val <= mana then
self:incMana(-mana_val)
self.disruption_shield_absorb = self.disruption_shield_absorb + value
......@@ -2020,7 +2020,7 @@ function _M:projected(tx, ty, who, t, x, y, damtype, dam, particles)
return false
end
--- Called when we are targetted by a projectile
--- Called when we are targeted by a projectile
function _M:on_projectile_target(x, y, p)
if self:attr("slow_projectiles") then
print("Projectile slowing down from", p.energy.mod)
......
......@@ -575,7 +575,7 @@ function _M:tick()
self:targetOnTick()
engine.GameTurnBased.tick(self)
-- Fun stuff: this can make the game realtime, although callit it in display() will make it work better
-- Fun stuff: this can make the game realtime, although calling it in display() will make it work better
-- (since display is on a set FPS while tick() ticks as much as possible
-- engine.GameEnergyBased.tick(self)
end
......@@ -626,7 +626,7 @@ function _M:display(nb_keyframes)
self.player:playerFOV()
end
-- Display using Framebuffer, sotaht we can use shaders and all
-- Display using Framebuffer, so that we can use shaders and all
if self.fbo then
self.fbo:use(true)
......@@ -973,7 +973,7 @@ function _M:mouseRightClick(mx, my)
self:registerDialog(MapMenu.new(mx, my, tmx, tmy))
end
--- Ask if we realy want to close, if so, save the game first
--- Ask if we really want to close, if so, save the game first
function _M:onQuit()
self.player:runStop("quitting")
self.player:restStop("quitting")
......
......@@ -65,7 +65,7 @@ function _M:zoneCheckBackupGuardian()
if self.allow_backup_guardians[game.zone.short_name] and self.allow_backup_guardians[game.zone.short_name].on_level == game.level.level then
local data = self.allow_backup_guardians[game.zone.short_name]
-- Place the guardian, we do not check for connectivity, vault or whatever, the player is suppoed to be strong enough to get there
-- Place the guardian, we do not check for connectivity, vault or whatever, the player is supposed to be strong enough to get there
local m = game.zone:makeEntityByName(game.level, "actor", data.guardian)
if m then
local x, y = rng.range(0, game.level.map.w - 1), rng.range(0, game.level.map.h - 1)
......@@ -230,7 +230,7 @@ function _M:generateRandart(add, base, lev)
print(" * using themes", table.concat(table.keys(themes), ','))
-----------------------------------------------------------
-- Impue powers in the randart
-- Imbue powers in the randart
-----------------------------------------------------------
local function merger(dst, src)
for k, e in pairs(src) do
......
......@@ -78,7 +78,7 @@ end
--- Check if we are angered
-- @param src the angerer
-- @param set true if value is the finite value, false if it is an increment
-- @param value the value to add/substract
-- @param value the value to add/subtract
function _M:checkAngered(src, set, value)
if not src.resolveSource then return end
if not src.faction then return end
......
......@@ -43,7 +43,7 @@ function _M:init(t, no_default)
end
--- Can this object act at all
-- Most object will want to anwser false, only recharging and stuff needs them
-- Most object will want to answer false, only recharging and stuff needs them
function _M:canAct()
if self.power_regen or self.use_talent then return true end
return false
......
......@@ -106,7 +106,7 @@ function _M:onBirth(birther)
end
function _M:onEnterLevel(zone, level)
-- Save where we enterred
-- Save where we entered
self.entered_level = {x=self.x, y=self.y}
-- Fire random escort quest
......@@ -514,7 +514,7 @@ function _M:restCheck()
self:incStamina(self.stamina_regen * perc)
self:incMana(self.mana_regen * perc)
-- Check ressources, make sure they CAN go up, otherwise we will never stop
-- Check resources, make sure they CAN go up, otherwise we will never stop
if not self.resting.rest_turns then
if self.air_regen < 0 then return false, "loosing breath!" end
if self:getMana() < self:getMaxMana() and self.mana_regen > 0 then return true end
......@@ -529,25 +529,25 @@ function _M:restCheck()
end
--- Can we continue running?
-- We can run if no hostiles are in sight, and if we no interresting terrains are next to us
-- We can run if no hostiles are in sight, and if we no interesting terrains are next to us
function _M:runCheck()
local spotted = spotHostiles(self)
if spotted then return false, ("hostile spotted (%s%s)"):format(spotted.actor.name, game.level.map:isOnScreen(spotted.x, spotted.y) and "" or " - offscreen") end
if self.air_regen < 0 then return false, "losing breath!" end
-- Notice any noticable terrain
-- Notice any noticeable terrain
local noticed = false
self:runScan(function(x, y)
-- Only notice interresting terrains
-- Only notice interesting terrains
local grid = game.level.map(x, y, Map.TERRAIN)
if grid and grid.notice then noticed = "interesting terrain" end
-- Objects are always interresting
-- Objects are always interesting
local obj = game.level.map:getObject(x, y, 1)
if obj then noticed = "object seen" end
-- Traps are always interresting if known
-- Traps are always interesting if known
local trap = game.level.map(x, y, Map.TRAP)
if trap and trap:knownBy(self) then noticed = "trap spotted" end
end)
......@@ -637,7 +637,7 @@ function _M:getEncumberTitleUpdator(title)
end
function _M:playerPickup()
-- If 2 or more objects, display a pickup dialog, otehrwise just picks up
-- If 2 or more objects, display a pickup dialog, otherwise just picks up
if game.level.map:getObject(self.x, self.y, 2) then
local titleupdator = self:getEncumberTitleUpdator("Pickup")
local d d = self:showPickupFloor(titleupdator(), nil, function(o, item)
......@@ -825,7 +825,7 @@ function _M:on_pickup_object(o)
end
end
--- Tell us when we are targetted
--- Tell us when we are targeted
function _M:on_targeted(act)
if self:attr("invisible") or self:attr("stealth") then
if self:canSee(act) and game.level.map.seens(act.x, act.y) then
......
......@@ -30,7 +30,7 @@ function _M:loadStores(f)
end
function _M:init(t, no_default)
-- t.allow_sell = function() require("engine.ui.Dialog"):simplePopup("Can not sell", "The shopkeeper is not interrested in buying your items.") return false end
-- t.allow_sell = function() require("engine.ui.Dialog"):simplePopup("Can not sell", "The shopkeeper is not interested in buying your items.") return false end
t.store.buy_percent = t.store.buy_percent or 5
t.store.sell_percent = t.store.sell_percent or 100
t.store.purse = t.store.purse or 20
......@@ -167,7 +167,7 @@ function _M:descObjectPrice(who, what, o)
end
--- Actor interacts with the store
-- @param who the actor who interracts
-- @param who the actor who interacts
function _M:interact(who)
who:sortInven()
Store.interact(self, who)
......
......@@ -45,7 +45,7 @@ function _M:achievementWho(src)
end
--- Gain an achievement
-- @param id the achivement to gain
-- @param id the achievement to gain
-- @param src who did it
function _M:gainAchievement(id, src, ...)
local a = self.achiev_defs[id]
......
......@@ -22,7 +22,7 @@ local Map = require "engine.Map"
require "engine.Generator"
local Random = require "engine.generator.actor.Random"
--- Very specialized generator that puts sandworms in interresting spots to dig tunnels
--- Very specialized generator that puts sandworms in interesting spots to dig tunnels
module(..., package.seeall, class.inherit(engine.Generator))
function _M:init(zone, map, level, spots)
......@@ -33,7 +33,7 @@ function _M:init(zone, map, level, spots)
end
function _M:generate()
-- Make the random generaor place normal actors
-- Make the random generator place normal actors
self.random:generate()
-- Now place sandworm tunnelers
......
......@@ -32,7 +32,7 @@ function _M:init(t)
end
function _M:setInscription(id, name, data, cooldown, vocal, src, bypass_max_same)
-- Count occurences
-- Count occurrences
local nb_same = 0
for i = 1, self.max_inscriptions do
if self.inscriptions[i] and self.inscriptions[i] == name.."_"..i then nb_same = nb_same + 1 end
......
......@@ -37,7 +37,7 @@ function _M:archeryAcquireTargets(tg, params)
end
params = params or {}
print("[ARCHERY AQUIRE TARGETS WITH]", weapon.name, ammo.name)
print("[ARCHERY ACQUIRE TARGETS WITH]", weapon.name, ammo.name)
local realweapon = weapon
weapon = weapon.combat
......
......@@ -105,8 +105,8 @@ function _M:attackTarget(target, damtype, mult, noenergy)
end
end
end
-- All wpeaons in off hands
-- Offhand atatcks are with a damage penality, taht can be reduced by talents
-- All weapons in off hands
-- Offhand attacks are with a damage penalty, that can be reduced by talents
if self:getInven(self.INVEN_OFFHAND) then
local offmult = self:getOffHandMult(mult)
for i, o in ipairs(self:getInven(self.INVEN_OFFHAND)) do
......@@ -180,7 +180,7 @@ function _M:checkHit(atk, def, min, max, factor)
return rng.percent(hit), hit
end
--- Try to totaly evade an attack
--- Try to totally evade an attack
function _M:checkEvasion(target)
if not target:attr("evasion") then return end
......
......@@ -23,7 +23,7 @@ module(..., package.seeall, class.make)
-------------------------------------------------------------
-- Ressources
-- Resources
-------------------------------------------------------------
TOOLTIP_GOLD = [[#GOLD#Gold#LAST#
Money!
......@@ -34,7 +34,7 @@ You can gain money by looting it from your foes, by selling items and by doing s
TOOLTIP_LIFE = [[#GOLD#Life#LAST#
This is your life force, when you take damage this is reduced more and more.
If it reaches below zero you die.
Death is usualy permanent so beware!
Death is usually permanent so beware!
It is increased by Constitution.]]
TOOLTIP_AIR = [[#GOLD#Air#LAST#
......@@ -96,13 +96,13 @@ Each time you level you gain stat and talent points to use to improve your chara
]]
TOOLTIP_ENCUMBERED = [[#GOLD#Encumberance#LAST#
Each object you carry has an encumberance value, your maximun carrying capacity is determined by your strength.
Each object you carry has an encumberance value, your maximum carrying capacity is determined by your strength.
You can not move while encumbered, drop some items.
]]
TOOLTIP_INSCRIPTIONS = [[#GOLD#Inscriptions#LAST#
The people of Eyal have found a way to create herbal infusions and runes that can be inscribed on the skin of a creature.
Those inscriptions give the bearer always accessible powers. Usualy most people have a simple regeneration infusion, but there are other kind of potion inscriptions.
Those inscriptions give the bearer always accessible powers. Usually most people have a simple regeneration infusion, but there are other kind of potion inscriptions.
]]
-------------------------------------------------------------
......@@ -155,7 +155,7 @@ Attack speed represents how fast your attacks are compared to a normal turn.
The lower it is the faster your attacks are.
]]
TOOLTIP_COMBAT_RANGE = [[#GOLD#Firing range#LAST#
The maximun distance your weapon can reach.
The maximum distance your weapon can reach.
]]
TOOLTIP_COMBAT_AMMO = [[#GOLD#Ammo remaining#LAST#
This is the amount of ammo you have left.
......@@ -172,7 +172,7 @@ It represents the fatigue created by wearing heavy equipment.
Not all talents are affected, notably Wild Gifts are not.
]]
TOOLTIP_ARMOR = [[#GOLD#Armour#LAST#
Armour value is a flat damage reduction substracted from every incoming melee and ranged physical attacks.
Armour value is a flat damage reduction subtracted from every incoming melee and ranged physical attacks.
This is countered by armour penetration and is applied before all kinds of critical damage increase, talent multipliers and damage multiplier, thus making even small amounts have greater effects.
]]
TOOLTIP_DEFENSE = [[#GOLD#Defense#LAST#
......@@ -222,12 +222,12 @@ TOOLTIP_INC_DAMAGE = [[#GOLD#Damage increase: specific#LAST#
All damage of this type that you deal, through any means, is increased by this percentage.
]]
TOOLTIP_RESIST_ALL = [[#GOLD#Damage resistance: all#LAST#
All damage you receieve, through any means, is decreased by this percentage.
All damage you receive, through any means, is decreased by this percentage.
This stacks with individual damage type resistances.
]]
TOOLTIP_RESIST = [[#GOLD#Damage resistance: specific#LAST#
All damage of this type that you receive, through any means, is reduced by this percentage.
]]
TOOLTIP_SPECIFIC_IMMUNE = [[#GOLD#Effect resistance chance#LAST#
This represents your chance to completly avoid the effect in question.
This represents your chance to completely avoid the effect in question.
]]
......@@ -21,10 +21,10 @@ require "engine.class"
local WA = require "engine.interface.WorldAchievements"
local table = table
--- Handles archievements in a world
--- Handles achievements in a world
module(..., package.seeall, class.inherit({}, WA))
--- Make a new achivement with a name and desc
--- Make a new achievement with a name and desc
function _M:newAchievement(t)
t.id = t.id or t.name
t.id = t.id:upper():gsub("[ ]", "_")
......
......@@ -86,7 +86,7 @@ newBirthDescriptor{
desc = {
"The Doomed are fallen mages who once wielded powerful magic wrought by ambition and dark bargains.",
"They now possess only a twisted shadow of that power as they struggle to keep it from consuming them.",
"Only time will tell if they can choose a new path or are dooomed forever.",
"Only time will tell if they can choose a new path or are doomed forever.",
"The Doomed strike from behind a veil of darkness or a host of shadows.",
"They feed upon their enemies as they unleash powerful forces and terrible punishments.",
"Their most important stats are: Magic and Willpower",
......
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