I really need perhaps a better name, and some kind of description. Help will be welcome.
So stat changes:
Str +3 (+2), Dex +5 (+2), Cun +1(-4)
Tree Changes:
+Combat-Techniques-Active
+Combat-Techniques-Active.
-Lethality
-Trapping
Starting talents
+Precise Strikes
+Dual Weapon Training
Stealth
Dual Strike
-Lethality
-Trap Mastery
Diff:
Code: Select all
--- a/game/modules/tome/data/birth/classes/rogue.lua
+++ b/game/modules/tome/data/birth/classes/rogue.lua
@@ -30,6 +30,7 @@ newBirthDescriptor{
__ALL__ = "disallow",
Rogue = "allow",
Shadowblade = "allow",
+ Twinblade = "allow",
},
},
copy = {
@@ -118,3 +119,37 @@ newBirthDescriptor{
resolvers.inscription("RUNE:_MANASURGE", {cooldown=25, dur=10, mana=620}),
},
}
+
+newBirthDescriptor{
+ type = "subclass",
+ name = "Twinblade",
+ desc = {
+ "TODO: Write some description here.",
+ "#GOLD#Stat modifiers:",
+ "#LIGHT_BLUE# * +3 Strength, +5 Dexterity, +0 Constitution",
+ "#LIGHT_BLUE# * +0 Magic, +0 Willpower, +1 Cunning",
+ },
+ stats = { dex=5, str=3, cun=1, },
+ talents_types = {
+ ["technique/dualweapon-attack"]={true, 0.3},
+ ["technique/dualweapon-training"]={true, 0.3},
+ ["technique/combat-techniques-active"]={true, 0.3},
+ ["technique/combat-techniques-passive"]={true, 0.3},
+ ["technique/combat-training"]={true, 0.3},
+ ["technique/field-control"]={false, 0},
+ ["cunning/stealth"]={true, 0.3},
+ ["cunning/trapping"]={false, 0.3},
+ ["cunning/dirty"]={true, 0.3},
+ ["cunning/lethality"]={false, 0.3},
+ ["cunning/survival"]={true, 0.3},
+ },
+ unlockable_talents_types = {
+ ["cunning/poisons"]={false, 0.3, "rogue_poisons"},
+ },
+ talents = {
+ [ActorTalents.T_STEALTH] = 1,
+ [ActorTalents.T_DUAL_WEAPON_TRAINING] = 1,
+ [ActorTalents.T_PRECISE_STRIKES] = 1,
+ [ActorTalents.T_DUAL_STRIKE] = 1,
+ },
+}