Trying to code a new race my roomate and I created using Oread as a base.
The race counts their charisma as 2 points higher if they have the draconic bloodline as a sorcerer. the script for Oread is as follows
What changes to do I need to make to make it fit for my race?
The race counts their charisma as 2 points higher if they have the draconic bloodline as a sorcerer. the script for Oread is as follows
field[abValue].value += 2
~if we have the elemental: earth bloodline
if (hero.tagis[Ability.cSorElem] + hero.tagis[BloodEner.Acid] >= 2) then
~show us on the special tab
perform assign[Helper.ShowSpec]
~add 2 to the effective attribute for the sorcerer class
hero.childfound[cHelpSor].field[cSplAttVal].value += field[abValue].value
endif
~find all of the cleric's earth domain powers, and add +1 extra level
foreach pick in hero from BaseClSpec where "SpecSource.cHelpClr"
if (eachpick.root.tagis[HasDomain.cdEarth] <> 0) then
eachpick.field[xEffectLev].value += 1
endif
nexteach
~note that there are a few bloodline powers that depend on CHA for their uses/day or DC. Those modifications are made on the individual abilities.
What changes to do I need to make to make it fit for my race?