Normal-type moves become Fairy type and deal 20% more damage.
Paste this first in PokeBattle_Move under Normalize:
def pbType(type,attacker,opponent)
if isConst?(type,PBTypes,:NORMAL) && attacker.hasWorkingAbility(:PIXILATE)
type=getConst(PBTypes,:FAIRY) || 0
end
return...