Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Well you will have to go into the editor for this. I would advise reading some of the help from question #2 of the FAQ.Ok ShadowChemosh i downloaded and installed your Dragon Born but i would like to tweak it by giving it wings but i am new to data entry now i wanted to know where would i start to add the wing function like this
1 HD Glide where they get a +10 on Acrobatic checks
6 HD Can Fly 30 Feet with Average Flight
12 HD 60 Feet with Above Average Flight
~ Plus 10 to acrobatics at 1 HD
#skillbonus[skAcrobat] += 10
~ If 12+ HD give 60ft fly speed
If (herofield[tHitDice].value >= 12) Then
~ Give 60ft fly speed
#value[xFly] += 60
~ Set maneuverability rating to Good
perform hero.child[xFly].assign[Maneuver.Good]
~ If 6+ hit dice give 30ft and average rating
elseIf (herofield[tHitDice].value >= 6) Then
~ Give 30ft fly speed
#value[xFly] += 30
~ Set maneuverability rating to Average
perform hero.child[xFly].assign[Maneuver.Average]
endif
Go to the "Adjust" tab and "Other Adjustments" select "Ability: Uses/Period". Then select the Breath Weapon and set the counter to +1 or how many times you wish.Now is there way to change the Breath Weapon where instead of 1 once a day
Well you will have to go into the editor for this. I would advise reading some of the help from question #2 of the FAQ.
1) But for a crash course go to "Tools->Launch Editor".
2) File->Open Data File...
3) Select "PFRPG_Race_Dragonborn.user"
4) Click the "Racial Special" tab.
5) bottom left blue button "New (Blank)"
6) Change name ??? to Wings
7) Change unique ID ra? to raDBWings
8) Description text type in "I have wings".
9) Click blue button "Eval Scripts"
9a) add new eval.
10) Select Phase: Post-levels/10000
11) copy in this script:
12) top left blue button "Test Now!".Code:~ Plus 10 to acrobatics at 1 HD #skillbonus[skAcrobat] += 10 ~ If 12+ HD give 60ft fly speed If (herofield[tHitDice].value >= 12) Then ~ Give 60ft fly speed #value[xFly] += 60 ~ Set maneuverability rating to Good perform hero.child[xFly].assign[Maneuver.Good] ~ If 6+ hit dice give 30ft and average rating elseIf (herofield[tHitDice].value >= 6) Then ~ Give 30ft fly speed #value[xFly] += 30 ~ Set maneuverability rating to Average perform hero.child[xFly].assign[Maneuver.Average] endif
13) Click on "Race"
14) Click on Dragonborn.
15) Click on top right "Bootstraps"
16) add new bootstrap
17) type in "raDBWings"
18) OK out of the window.
19) Save
20) Test Now! again.
21) add your new dragonborn with wings!