<!-- prePretty --> 📄***Tactical Plasma (Medium) Long Sword*** ![[Loadout-1.png|20]] Load Out (2), ![[hands.png|18]] Hands (2), ⚔️Weapon 5 ![[solara.png|20]] 3600 ⚙️ ***Plasma (Medium):*** <span style="color:rgb(0, 176, 80)">Weapon is -1 Equipment.</span> This weapon takes 1 action to turn on. When this weapon is on, do 2 bonus damage to armor durability. <span style="color:rgb(255, 0, 0)">-1 DS to use this weapon.</span> ⚙️ ***Tactical:*** <span style="color:rgb(0, 176, 80)"> +1 DS </span>when using a Card during a play. ⚙️ ***Light Weight:*** This weapon can be used One Handed for <span style="color:rgb(255, 0, 0)">-1 DS</span> <!-- postPretty --> ![[Kusanagi Tsurugi.png]] > [!creator]+ > Frame > ```meta-bind > INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Melee/Frames"), useLinks(true)):weaponFrame] > ``` > > ~~~meta-bind-js-view > {weaponFrame} as weaponFrame > --- > const toCopy = [ > ["equipmentSize", "math"], > ["hands" , "math"], > ["weaponRating" , "math"], > ["cost" , "math"], > ["frameTalentname" , "text"], > ["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/Melee/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/Melee/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); > ```