summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/scripts
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-11 12:37:03 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-11 12:37:03 +0200
commit77587839e0e17de5b94c9a0431dd0c0692efa76a (patch)
treed46c7a4f692e78ea58ace2d0c5a732d95b44e1ad /crawl-ref/source/scripts
parent23d74574e7def472bdfc72832c5b264c756dbc65 (diff)
downloadcrawl-ref-77587839e0e17de5b94c9a0431dd0c0692efa76a.tar.gz
crawl-ref-77587839e0e17de5b94c9a0431dd0c0692efa76a.zip
Traps&Doors -> Traps.
The only relevant use left, silently opening doors, is now 100% Stealth (and DEX), rather than 50% Stealth 50% T&D.
Diffstat (limited to 'crawl-ref/source/scripts')
-rw-r--r--crawl-ref/source/scripts/training_simu.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/scripts/training_simu.lua b/crawl-ref/source/scripts/training_simu.lua
index 0860ee59af..c987e6bedb 100644
--- a/crawl-ref/source/scripts/training_simu.lua
+++ b/crawl-ref/source/scripts/training_simu.lua
@@ -28,14 +28,14 @@ if (job == "Fi") then
[weapon_skill] = { 1, 1, 18 },
Armour = { 3, 1, 27 },
Shields = { 3, 1, 27 },
- ["Traps & Doors"] = { 10, 1, 8 },
+ Traps = { 10, 1, 8 },
Evocations = { 5, 5, 10 },
}
elseif (job == "FE") then
skills = { Dodging = { 3, 1, 27 },
Stealth = { 4, 1, 6 },
Shields = { 5, 8, 5 },
- ["Traps & Doors"] = { 10, 1, 8 },
+ Traps = { 10, 1, 8 },
Spellcasting = { 2, 1, 27 },
Conjurations = { 1, 1, 27 },
@@ -51,7 +51,7 @@ elseif (job == "Sk") then
Dodging = { 3, 1, 27 },
Stealth = { 4, 1, 6 },
Shields = { 5, 8, 10 },
- ["Traps & Doors"] = { 10, 1, 8 },
+ Traps = { 10, 1, 8 },
Spellcasting = { 2, 2, 27 },
Charms = { 1, 2, 12 },