Plasma Sheath
Source
Core Rulebook pg. 100
As a move action, you can cause all of your melee attacks to deal fire damage instead of their normal damage type. (The attacks are still made against the target’s EAC or KAC as normal for the weapon.) This benefit lasts for 1 round or until you leave photon mode.
When you are attuned or fully attuned, your attacks with plasma sheath deal additional fire damage equal to half your level.
Dragonscript
ID
557101a87195813ec7559b86
Effect
select 1 from ['Inactive', 'Active', 'Active (Photon Attuned)'] name 'Plasma Sheath' description 'As a move action, you can cause all of your melee attacks to deal fire damage instead of their normal damage type. (The attacks are still made against the target’s EAC or KAC as normal for the weapon.) This benefit lasts for 1 round or until you leave photon mode. When you are attuned or fully attuned, your attacks with plasma sheath deal additional fire damage equal to half your level.' then if {$ == 'Active'} then set character.damageType.melee to fire else if {$ == 'Active (Photon Attuned)'} then [set character.damageType.melee to fire, bonus (character.level/2) to character.damage.melee as misc];