<!-- prePretty -->
๐***Point Detonating Specials Grenade Armor***
![[Inventory.png|20]] 1 โ๏ธ Weapon 7 ๐ Near, ![[aoe.png|20]] Close
![[solara.png|20]] 600
โ๏ธ When the explosive functions, Create a Tag ![[d6.png]] before spending payout. You can spend payout to increase the size of the tag.
โ๏ธ 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*
โ๏ธ Burn ![[d6.png]]
<!-- postPretty -->
![[Incendiary Grenade.png]]
> [!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);
> ```