<!-- prePretty -->
📄***Injected Designer Grade Booster***
![[Inventory.png|20]] 1
![[solara.png|20]] 330
⚙️ +3 DS to Dexterity and +2 DS to Controlled
⚙️ ![[Injected.png|20]] Drug Takes effect immediately and has a number of uses equal to 1/2 the drug's strength.
⚙️ The Drug has a strength of ![[d10.png]] <span style="color:rgb(255, 0, 0)">Crash 10</span>.
<!-- postPretty -->
![[Root.png]]
> [!creator]+
> Frame
> ```meta-bind
> INPUT[suggester(optionQuery("GM area/Templates/Go All In/Weapon Data/Drugs/Frames"), useLinks(true)):weaponFrame]
> ```
>
> ~~~meta-bind-js-view
> {weaponFrame} as weaponFrame
> ---
> const toCopy = [
> ["inventorySize", "math"],
> ["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/Drugs/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/Drugs/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);
> ```