summaryrefslogtreecommitdiff
path: root/lib/scpt
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-04-07 15:45:47 +0200
committerBardur Arantsson <bardur@scientician.net>2012-04-07 15:51:49 +0200
commit203d42e75a02c68d7cda9ff85023910bd1a0a6f4 (patch)
tree5567957f8576b55a8fc6ba4b9c7e99786397f7f7 /lib/scpt
parenta01f15e08da3b2e0e326b2a94100e17962136741 (diff)
Lua: Refactor Lua-based powers into C
Diffstat (limited to 'lib/scpt')
-rw-r--r--lib/scpt/init.lua3
-rw-r--r--lib/scpt/powers.lua59
2 files changed, 0 insertions, 62 deletions
diff --git a/lib/scpt/init.lua b/lib/scpt/init.lua
index ea42f927..d0512c76 100644
--- a/lib/scpt/init.lua
+++ b/lib/scpt/init.lua
@@ -11,9 +11,6 @@ tome_dofile("help.lua")
-- let the store specific stuff happen!
tome_dofile("stores.lua")
--- Add various 'U' powers
-tome_dofile("powers.lua")
-
-- Add the mimic shapes
tome_dofile("mimic.lua")
diff --git a/lib/scpt/powers.lua b/lib/scpt/powers.lua
deleted file mode 100644
index 90d69ac7..00000000
--- a/lib/scpt/powers.lua
+++ /dev/null
@@ -1,59 +0,0 @@
--- Various 'U' powers
-
--- Invisibility power, for the mouse mimic shape
-POWER_INVISIBILITY = add_power
-{
- ["name"] = "invisibility",
- ["desc"] = "You are able melt into the shadows to become invisible.",
- ["desc_get"] = "You suddenly become able to melt into the shadows.",
- ["desc_lose"] = "You lose your shadow-melting ability.",
- ["level"] = 30,
- ["cost"] = 10,
- ["stat"] = A_DEX,
- ["fail"] = 20,
- ["power"] = function()
- set_invis(20 + randint(30), 30)
- end,
-}
-
--- Web power, for the spider mimic shape
-POWER_WEB = add_power
-{
- ["name"] = "web",
- ["desc"] = "You are able throw a thick and very resistant spider web.",
- ["desc_get"] = "You suddenly become able to weave webs.",
- ["desc_lose"] = "You lose your web-weaving capability.",
- ["level"] = 25,
- ["cost"] = 30,
- ["stat"] = A_DEX,
- ["fail"] = 20,
- ["power"] = function()
- -- Warning, beware of f_info changes .. I hate to do that ..
- grow_things(16, 1 + (player.lev / 10))
- end,
-}
-
--- Activating/stopping space-continuum
--- When stopped it will induce constant mana loss
-POWER_COR_SPACE_TIME = add_power
-{
- ["name"] = "control space/time continuum",
- ["desc"] = "You are able to control the space/time continuum.",
- ["desc_get"] = "You become able to control the space/time continuum.",
- ["desc_lose"] = "You are no more able to control the space/time continuum.",
- ["level"] = 1,
- ["cost"] = 10,
- ["stat"] = A_WIS,
- ["fail"] = 10,
- ["power"] = function()
- if player.corrupt_anti_teleport_stopped == TRUE then
- player.corrupt_anti_teleport_stopped = FALSE
- msg_print("You stop controlling your corruption.")
- player.update = bor(player.update, PU_BONUS)
- else
- player.corrupt_anti_teleport_stopped = TRUE
- msg_print("You start controlling your corruption, teleportation works once more.")
- player.update = bor(player.update, PU_BONUS)
- end
- end,
-}