<!-- prePretty --> 📄***Time Fuze Specials Grenade Armor*** ![[Inventory.png|20]] 1 ⚔️ Weapon 7 📏 Near, ![[aoe.png|20]] Close ![[solara.png|20]] 400 ⚙️ When the explosive functions, Create a Tag ![[d6.png]] before spending payout. You can spend payout to increase the size of the tag. ⚙️ Timer ![[d10.png]]. This explosive functions at a determined unit of time at purchase. ⚙️ Concussive ![[d8.png]]. *this item can be used handheld or loaded into a grenade weapon as ammunition, using that weapons range* ⚙️ Cryo ![[d6.png]] <!-- postPretty --> ![[Cryo 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); > ```