<!-- prePretty --> 📄***Automatic Kinetic Rifle*** ![[Loadout-1.png|20]] Load Out (2), ![[hands.png|18]] Hands (2), ⚔️ Weapon 5, 📏Far, ![[ammo.png|18]] Ammo (30) ![[solara.png|20]] 2000 ⚙️ ***Kinetic:*** reduce the reload delay by -1 ⚙️ ***Automatic:*** Spend 10 ammo for +4 bonus effort or Multi 2 with this weapon ⚙️ ***Run and Gun:*** Assault ![[d8.png]] <!-- postPretty --> ![[z. Assets/Dark Future Images/Mars Apex.png]] > Battle-Tested in both conventional as well as ganger warfare, this iconic workhorse has been the assault rifle of corporate and civilian warzones. Known for its ease of use, rugged reliability, and solid frame capable of a variety of upgrades to adapt to any mission set. A rifle of the masses, it has proven itself an inexpensive solution to most problems. Seen in use by freelancers, criminals, and corporate sec units, most models are likely to sport under barrel shotguns or grenade launchers as well as enhanced scopes and target tracking software. > [!creator]+ > Frame > ```meta-bind > INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Ranged/Frames"), useLinks(true)):weaponFrame] > ``` > > ~~~meta-bind-js-view > {weaponFrame} as weaponFrame > --- > const toCopy = [ > ["equipmentSize", "math"], > ["hands" , "math"], > ["weaponRating" , "math"], > ["range" , "math"], > ["ammo" , "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/Ranged/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/Ranged/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); > ```