<!-- prePretty --> 📄***Automatic Rail (Heavy) Heavy MG*** ![[Loadout-1.png|20]] Load Out (5), ![[hands.png|18]] Hands (3), ⚔️ Weapon 8, 📏Distant, ![[ammo.png|18]] Ammo (100) ![[solara.png|20]] 27000 ⚙️ ***Rail (Heavy):*** Requires 1 action to turn the weapon on. When the weapon is on, target armor soak is -3. Increase reload delay +1 ⚙️ ***Automatic:*** Spend 10 ammo for +4 bonus effort or Multi 2 with this weapon ⚙️ ***Accuracy Through Volume:*** When you roll Red with Automatic, Target gains the Suppressed ![[d6.png]] Tag <!-- postPretty --> ![[Avalon Beowulf.png]] > Fire superiority at the push of a button. Chamber in a proprietary ammo consisting of adamantine tipped penatrator rounds. The magrail MG can rip through any armor like paper. Typically crew served or mounted, this MG can be hipfired through the use of a Grav-lite belt, but is known to be very cumbersome. This are frequently installed in autonomous configurations in many corpo building as a deterrent for basically anything short of a tank > [!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); > ```