<!-- prePretty --> πŸ“„***Point Detonating Arcane Grenade Armor*** ![[Inventory.png|20]] 1 βš”οΈ Weapon 7 πŸ“ Near, ![[aoe.png|20]] Close ![[solara.png|20]] 750 βš™οΈ <span style="color:rgb(255, 0, 234)"> Create an arcane foundation when purchasing this item</span>. When the explosive functions, Create an arcane tag ![[d6.png]] before spending payout. Spend payout to increase these effects. βš™οΈ This explosive functions on impact βš™οΈ Concussive ![[d8.png]]. *this item can be used handheld or loaded into a grenade weapon as ammunition, using that weapons range* βš™οΈ <span style="color:rgb(255, 0, 234)">Soulfire</span> ![[d6.png]]. <!-- postPretty --> ![[WyrdFire Grenade.png]] > Built by witches for witches. This rare ordinance is pure Mage killer in a can. Arcane grenades of a particularly brutal nature they channel Soul Fire to literally burnout the soul from any living thing inside its blast. These are purpose built for HVTs of significance magical potential as the bomb itself is volatile. As a result few are ever kept on hand for very long and most freelancers will never even see one. Those that have and used them on a job know firsthand why they are nicknamed "Soul Scorchers" . > [!creator]+ > Frame > ```meta-bind > INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Explosives/Frames"), useLinks(true)):weaponFrame] > ``` > > ~~~meta-bind-js-view > {weaponFrame} as weaponFrame > --- > const toCopy = [ > ["inventorySize", "math"], > ["weaponRating" , "math"], > ["range" , "text"], > ["aoe" , "text"], > ["cost" , "math"], > ["frameTalent" , "text"] > ]; > const weaponFrame = context.bound.weaponFrame; > const mb = engine.getPlugin('obsidian-meta-bind-plugin').api; > const path = weaponFrame?.match(/\[\[(.*?)(?:\|.*)?\]\]/)[1]; > const str = toCopy.map((e) => `\`VIEW[{${path}#${e[0]}}][${e[1]}(hidden):${e[0]}]\``).join("\n"); > return engine.markdown.create(str); > ~~~ > > Feature > ```meta-bind > INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Explosives/Features"), useLinks(true)):featureName] > ``` > > ```meta-bind-js-view > {featureName} as featureName > --- > const toCopy = [ > ["featureTalent", "text"], > ["featureCost" , "math"] > ]; > const featureName = context.bound.featureName; > const mb = engine.getPlugin('obsidian-meta-bind-plugin').api; > const path = featureName?.match(/\[\[(.*?)(?:\|.*)?\]\]/)[1]; > const str = toCopy.map((e) => `\`VIEW[{${path}#${e[0]}}][${e[1]}(hidden):${e[0]}]\``).join("\n"); > return engine.markdown.create(str); > ``` > > Family > ```meta-bind > INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Explosives/Family"), useLinks(true)):familyName] > ``` > > ```meta-bind-js-view > {familyName} as familyName > --- > const toCopy = [ > ["familyTalent", "text"], > ["familyCost" , "math"] > ]; > const familyName = context.bound.familyName; > const mb = engine.getPlugin('obsidian-meta-bind-plugin').api; > const path = familyName?.match(/\[\[(.*?)(?:\|.*)?\]\]/)[1]; > const str = toCopy.map((e) => `\`VIEW[{${path}#${e[0]}}][${e[1]}(hidden):${e[0]}]\``).join("\n"); > return engine.markdown.create(str); > ```