Nanon: Difference between revisions

1,128 bytes added ,  17:59, 3 May 2022
m
no edit summary
m (exclude natural weapons from the eligible items table)
mNo edit summary
 
(4 intermediate revisions by 3 users not shown)
Line 8: Line 8:
  | nativetier = 4
  | nativetier = 4
  | difficulty = 2
  | difficulty = 2
  | complexty = 2
  | complexity = 2
| empsensitive      = yes
| powerloadsensitive = yes
| realitydistortion  = no
  | value      = 1.3
  | value      = 1.3
  | desc      = &CNanon: (tier-based)% chance to dismember upon penetration.
  | desc      = &CNanon: (tier-based)% chance to dismember upon penetration.
}}
}}
The {{name}} mod can be applied to most beam weapons. It adds a [[item tier|tier]]-based chance to dismember limbs whenever a projectile from the weapon penetrates a target. The exact percentage chance to dismember is randomly determined when the mod is applied, and will either be equal to the weapon tier, or the weapon tier + 1. This randomization is not tied to a stable seed, meaning that it can be re-rolled using [[Precognition]] or similar effects.{{Code Reference|class=ModNanon|name=ModNanon}}
The {{name}} mod can be applied to most beam weapons. It adds a [[item tier|tier]]-based chance to dismember limbs whenever a projectile from the weapon penetrates a target. The exact percentage chance to dismember is randomly determined when the mod is applied, and will either be equal to the weapon tier, or the weapon tier + 1. This randomization is not tied to a stable seed, meaning that it can be re-rolled using {{favilink|Precognition}} or similar effects.{{Code Reference|class=ModNanon|name=ModNanon}}


{{name|caps}} weapons are not affected by the [[Dismember]] or [[Decapitate]] skills. They will always have a very small chance to decapitate, regardless of these skills. Each time that the {{name}} dismember effect triggers, there is a 1 in 1,000 chance (0.1%) that decapitatable limbs, namely heads, will be added to the pool of limbs that the projectile can randomly dismember. Even then, the decapitatable limb must be randomly selected from among all of the target's remaining dismemberable and decapitatable limbs.<ref name="ModNanon" />
{{name|caps}} weapons are not affected by the [[Dismember]] or [[Decapitate]] skills. They will always have a very small chance to decapitate, regardless of these skills. Each time that the {{name}} dismember effect triggers, there is a 1 in 1,000 chance (0.1%) that decapitatable limbs, namely heads, will be added to the pool of limbs that the projectile can randomly dismember. Even then, the decapitatable limb must be randomly selected from among all of the target's remaining dismemberable and decapitatable limbs.<ref name="ModNanon" />
Line 21: Line 24:
{{simple formula|( NanonDismemberChance + OverloadedBonus ) * PrecisionNanonFingersBonus}}
{{simple formula|( NanonDismemberChance + OverloadedBonus ) * PrecisionNanonFingersBonus}}


== Eligible Items ==
== Eligible Equiptment ==
{{#cargo_query:
{{#cargo_query:
   | tables = Modability=M,GeneralData=GD,ItemsTable=IT,ExtraInfo=EI
   | tables = Modability=M,GeneralData=GD,ItemsTable=IT,ExtraInfo=EI
Line 29: Line 32:
             CONCAT('{{(}}qud text{{!}}&C',GD.Tier,'%{{)}} &nbsp; or &nbsp; {{(}}qud text{{!}}&C',GD.Tier+1,'%{{)}}') = Chance to Dismember
             CONCAT('{{(}}qud text{{!}}&C',GD.Tier,'%{{)}} &nbsp; or &nbsp; {{(}}qud text{{!}}&C',GD.Tier+1,'%{{)}}') = Chance to Dismember
   | where = M.SupportedMods HOLDS 'BeamWeaponMods' AND EI.Info LIKE '%EnergyAmmoLoader,,,%' AND GD._pageNamespace='0'
   | where = M.SupportedMods HOLDS 'BeamWeaponMods' AND EI.Info LIKE '%EnergyAmmoLoader,,,%' AND GD._pageNamespace='0'
  | order by = GD.Tier DESC,GD.PlainName
  | format = table
}}
=== Eligible NPC Equipment ===
{{#cargo_query:
  | tables = Modability=M,GeneralData=GD,ItemsTable=IT,ExtraInfo=EI
  | join on = M.JoinKey=GD.JoinKey,M.JoinKey=IT.JoinKey,M.JoinKey=EI.JoinKey
  | fields = CONCAT(CASE
                WHEN GD.ObjectID = 'Naser Cannon'
                THEN '{{(}}favilink{{!}}galgal{{!}}possessive{{)}}'
                WHEN GD.ObjectID = 'LightLock'
                THEN '{{(}}favilink{{!}}conservator{{!}}possessive{{)}}'
                WHEN GD.ObjectID = 'Point-Defense Laser'
                THEN '{{(}}favilink{{!}}anomaly extinguisher{{!}}possessive{{)}}'
                ELSE ''
            END,'{{(}}favilink id{{!}}',M.ObjectID,'{{)}}')=Item,
            GD.Tier,
            CONCAT('{{(}}qud text{{!}}&C',GD.Tier,'%{{)}} &nbsp; or &nbsp; {{(}}qud text{{!}}&C',GD.Tier+1,'%{{)}}') = Chance to Dismember
  | where = M.SupportedMods HOLDS 'BeamWeaponMods' AND EI.Info LIKE '%EnergyAmmoLoader,,,%' AND GD._pageNamespace<>'0'
   | order by = GD.Tier DESC,GD.PlainName
   | order by = GD.Tier DESC,GD.PlainName
   | format = table
   | format = table
2,158

edits