Next spell I have been working on
Arcane Condordance:
A shimmering, blue and gold radiance surrounds you, enhancing arcane spells cast by your allies within its area. Any arcane spell cast by a creature within the area gains a +1 enhancement bonus to the DC of any saving throws against the spell, and can be cast as if one of the following metamagic feats was applied to it (without increasing the spell level or casting time): Enlarge Spell, Extend Spell, Silent Spell, or Still Spell (you choose the metamagic feat when you cast arcane concordance).
THis is how I coded it but it failed
AURA:10 ally;CL:1
Another spell that failed
Entropic Shield
A magical field appears around you, glowing with a chaotic blast of multicolored hues. This field deflects incoming arrows, rays, and other ranged attacks. Each ranged attack directed at you for which the attacker must make an attack roll has a 20% miss chance (similar to the effects of concealment). Other attacks that simply work at a distance are not affected.
my code:
Entropic Shield;IFTAG:ranged;CONC:20
Granting Advantage to rolls other than attack
I tried to code giving advantage to rolls other than attack. No success so far. Tried the following for the Spell Borrow Fortune
Borrow Fortune;ADVSKILL
Borrow Fortune;ADVSAVE
those dont work.
numeric values math rules.
Hi, looking at the effects wiki there are many useful values
like LVL level CL caster level all atrribs and stufff.
on my version of barkskin spell i have effect
Barkskin;AC:1 [d3CL4], naturalenhancement
this works.....exactly as the spell specifies....The effect grants a +2 enhancement bonus to the creature's existing natural armor bonus. This enhancement bonus increases by 1 for every three caster levels above 3rd, to a maximum of +5 at 12th level.
i have run tests and the d3 on the front is divide by 3.... but then im lost.....
where can i find the math rules please.
i know this effect works but i am missing some important rules and want to look them up myself.