Skip to content
Snippets Groups Projects
Commit c323a2a1 authored by DarkGod's avatar DarkGod
Browse files

Mindstars now randomly roll either as nature or mind damage (except for fixed...

Mindstars now randomly roll either as nature or mind damage (except for fixed artifacts) and give an Attune Mindstar talent to swap them to the other damage type
parent f95f5f21
No related branches found
No related tags found
No related merge requests found
......@@ -2411,6 +2411,19 @@ function _M:hasWeaponType(type)
return weapon
end
--- Check if the actor has a weapon offhand
function _M:hasOffWeaponType(type)
if self:attr("disarmed") then
return nil, "disarmed"
end
if not self:getInven("OFFHAND") then return end
local weapon = self:getInven("OFFHAND")[1]
if not weapon then return nil end
if type and weapon.combat.talented ~= type then return nil end
return weapon
end
--- Check if the actor has a cursed weapon
function _M:hasCursedWeapon()
if self:attr("disarmed") then
......
......@@ -17,6 +17,8 @@
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
local Talents = require "engine.interface.ActorTalents"
newEntity{
define_as = "BASE_MINDSTAR",
slot = "MAINHAND", offslot = "OFFHAND",
......@@ -55,10 +57,12 @@ newEntity{ base = "BASE_MINDSTAR",
apr = 12,
physcrit = 2.5,
dammod = {wil=0.5, cun=0.3},
damtype = resolvers.rngtable{DamageType.MIND, DamageType.NATURE},
},
wielder = {
combat_mindpower = 2,
combat_mindcrit = 1,
learn_talent = { [Talents.T_ATTUNE_MINDSTAR] = 1 },
},
}
......@@ -73,10 +77,12 @@ newEntity{ base = "BASE_MINDSTAR",
apr = 18,
physcrit = 3,
dammod = {wil=0.5, cun=0.3},
damtype = resolvers.rngtable{DamageType.MIND, DamageType.NATURE},
},
wielder = {
combat_mindpower = 4,
combat_mindcrit = 2,
learn_talent = { [Talents.T_ATTUNE_MINDSTAR] = 1 },
},
}
......@@ -91,10 +97,12 @@ newEntity{ base = "BASE_MINDSTAR",
apr = 24,
physcrit = 3.5,
dammod = {wil=0.5, cun=0.3},
damtype = resolvers.rngtable{DamageType.MIND, DamageType.NATURE},
},
wielder = {
combat_mindpower = 6,
combat_mindcrit = 3,
learn_talent = { [Talents.T_ATTUNE_MINDSTAR] = 1 },
},
}
......@@ -109,10 +117,12 @@ newEntity{ base = "BASE_MINDSTAR",
apr = 32,
physcrit = 4.5,
dammod = {wil=0.5, cun=0.3},
damtype = resolvers.rngtable{DamageType.MIND, DamageType.NATURE},
},
wielder = {
combat_mindpower = 8,
combat_mindcrit = 4,
learn_talent = { [Talents.T_ATTUNE_MINDSTAR] = 1 },
},
}
......@@ -127,9 +137,11 @@ newEntity{ base = "BASE_MINDSTAR",
apr = 40,
physcrit = 5,
dammod = {wil=0.5, cun=0.3},
damtype = resolvers.rngtable{DamageType.MIND, DamageType.NATURE},
},
wielder = {
combat_mindpower = 10,
combat_mindcrit = 5,
learn_talent = { [Talents.T_ATTUNE_MINDSTAR] = 1 },
},
}
game/modules/tome/data/gfx/talents/attune_mindstar.png

13.4 KiB

......@@ -106,6 +106,38 @@ newTalent{
end,
}
newTalent{
name = "Attune Mindstar",
type = {"wild-gift/objects", 1},
cooldown = 5,
points = 5,
no_unlearn_last = true,
no_npc_use = true,
message = function(self, t)
return ("@Source@ refocuses the energies of %s mindstar."):format(self:his_her())
end,
action = function(self, t)
local apply = function(o)
if not o.combat or not o.wielder or not o.wielder.learn_talent or not o.wielder.learn_talent[self.T_ATTUNE_MINDSTAR] then return end
if o.combat.damtype == DamageType.NATURE then
o.combat.damtype = DamageType.MIND
game.logPlayer(self, "You attune your %s to deal #ORANGE#mind#LAST# damage.", o:getName{do_color=1})
elseif o.combat.damtype == DamageType.MIND then
o.combat.damtype = DamageType.NATURE
game.logPlayer(self, "You attune your %s to deal #LIGHT_GREEN#nature#LAST# damage.", o:getName{do_color=1})
end
end
local mh = self:hasWeaponType("mindstar")
local oh = self:hasOffWeaponType("mindstar")
if mh then apply(mh) end
if oh then apply(oh) end
end,
info = function(self, t)
return ([[Alter the flow of energies through a staff.]])
end,
}
newTalent{
name = "Command Staff",
type = {"spell/objects", 1},
......
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