Drum-loaded: Difference between revisions

2,248 bytes added ,  20:30, 16 June 2022
m
wording/clarity
No edit summary
m (wording/clarity)
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Mod
{{Mod
|title     ={{qud text|drum-loaded}}
| title             = {{qud text|drum-loaded}}
|type       =Magazine
| type               = Magazine
|id         =ModDrumLoaded
| id                 = ModDrumLoaded
|rarity     =U
| rarity             = U
|mintier   = 3
| mintier           = 3
|tinkerable =yes
| tinkerable         = yes
|tinkertier =2
| tinkertier         = 2
|value     =1.2
| value             = 1.2
|desc       =&CDrum-loaded: This weapon may hold 20% additional ammo.
| empsensitive      = no
| powerloadsensitive = no
| realitydistortion  = no
| desc               = &CDrum-loaded: This weapon may hold 20% additional ammo.
| gameversion        = 2.0.201.114
}}
}}
Drum-loaded is a modification for magazine based weapons, or non-bow or dart gun weapons that use physical ammo. It increases the maximum ammo they can hold by 20%, with a minimum increase of one.
== Eligible Equipment ==
<div style="display:flex;flex-wrap:wrap;">
<div style="margin-right: 2.5em;">
=== Rifles ===
{{#cargo_query:table=ItemsTable=IT, GeneralData=GD, MissileWeaponData=MWD
| join on = IT.JoinKey=GD.JoinKey, IT.JoinKey=MWD.JoinKey
| fields = CONCAT("{{favilink id{{!}}", IT.ObjectID, "}}") = Item, MWD.MaxAmmo=Ammo (base), CONCAT(CASE
  WHEN FLOOR(MWD.MaxAmmo*1.2) = MWD.MaxAmmo
  THEN
    MWD.MaxAmmo + 1
  ELSE
    FLOOR(MWD.MaxAmmo*1.2)
END) = Ammo (modded)
| where = IT._pageNamespace = 0 AND IT._pageNamespace = 0 AND MWD.MaxAmmo > 0 AND  GD.ParentObject WITHIN "BaseRifle"
| order by = MWD.MaxAmmo ASC, GD.Tier ASC
}}
</div>
<div style="margin-right: 2.5em;">
=== Pistols ===
{{#cargo_query:table=ItemsTable=IT, GeneralData=GD, MissileWeaponData=MWD
| join on = IT.JoinKey=GD.JoinKey, IT.JoinKey=MWD.JoinKey
| fields = CONCAT("{{favilink id{{!}}", IT.ObjectID, "}}") = Item, MWD.MaxAmmo=Ammo (base), CONCAT(CASE
  WHEN FLOOR(MWD.MaxAmmo*1.2) = MWD.MaxAmmo
  THEN
    MWD.MaxAmmo + 1
  ELSE
    FLOOR(MWD.MaxAmmo*1.2)
END) = Ammo (modded)
| where = IT._pageNamespace = 0 AND IT._pageNamespace = 0 AND MWD.MaxAmmo > 0 AND  GD.ParentObject WITHIN "BaseMagazinePistol"
| order by = MWD.MaxAmmo
}}
</div>
<div style="margin-right: 2.5em;">
=== Heavy Weapons ===
{{#cargo_query:table=ItemsTable=IT, GeneralData=GD, MissileWeaponData=MWD
| join on = IT.JoinKey=GD.JoinKey,IT.JoinKey=MWD.JoinKey
| fields = CONCAT("{{favilink id{{!}}", IT.ObjectID, "}}") = Item, MWD.MaxAmmo=Ammo (base), CONCAT(CASE
  WHEN FLOOR(MWD.MaxAmmo*1.2) = MWD.MaxAmmo
  THEN
    MWD.MaxAmmo + 1
  ELSE
    FLOOR(MWD.MaxAmmo*1.2)
END) = Ammo (modded)
| where = IT._pageNamespace = 0 AND IT._pageNamespace = 0 AND MWD.MaxAmmo > 0 AND  GD.ParentObject WITHIN "BaseMagazineHeavyWeapon"
| order by = MWD.MaxAmmo ASC, GD.Tier ASC
}}
</div>
</div>
{{Mod Navbox}}