diff --git a/game/modules/tome/data/timed_effects/magical.lua b/game/modules/tome/data/timed_effects/magical.lua index 4963a6d5f20f8f0c5cc1220efd65e22e36e2e339..f677c84ab069fb6d35de18831726e3ecb3b4c418 100644 --- a/game/modules/tome/data/timed_effects/magical.lua +++ b/game/modules/tome/data/timed_effects/magical.lua @@ -2905,19 +2905,6 @@ newEffect{ end } -newEffect{ - name = "PATH_OF_THE_SUN", image = "talents/path_of_the_sun.png", - desc = "Path of the Sun", - long_desc = function(self, eff) return ("The target is able to instantly travel alongside Sun Paths."):format() end, - type = "magical", - subtype = { sun=true, }, - status = "beneficial", - parameters = {}, - activate = function(self, eff) - self:effectTemporaryValue(eff, "walk_sun_path", 1) - end -} - newEffect{ name = "SUNCLOAK", image = "talents/suncloak.png", desc = "Suncloak", diff --git a/game/modules/tome/data/timed_effects/other.lua b/game/modules/tome/data/timed_effects/other.lua index 8b97c999e5b359e5cf1e4815e96339584dd9f60d..6019d9501e9133f81fd8a65ad3a2691fe8272068 100644 --- a/game/modules/tome/data/timed_effects/other.lua +++ b/game/modules/tome/data/timed_effects/other.lua @@ -142,6 +142,19 @@ newEffect{ end, } +newEffect{ + name = "PATH_OF_THE_SUN", image = "talents/path_of_the_sun.png", + desc = "Path of the Sun", + long_desc = function(self, eff) return ("The target is able to instantly travel alongside Sun Paths."):format() end, + type = "other", + subtype = { sun=true, }, + status = "beneficial", + parameters = {}, + activate = function(self, eff) + self:effectTemporaryValue(eff, "walk_sun_path", 1) + end +} + newEffect{ name = "TIME_PRISON", image = "talents/time_prison.png", desc = "Time Prison",