Difference between revisions of "CarryParam"

From Pikmin Technical Knowledge Base
Jump to navigation Jump to search
Line 2: Line 2:
 
In ''Pikmin 3'', carryParam dictates how much something weighs, how many pikmin can carry it, and how many pikmin it creates. It's currently unknown what "extra" does.
 
In ''Pikmin 3'', carryParam dictates how much something weighs, how many pikmin can carry it, and how many pikmin it creates. It's currently unknown what "extra" does.
  
For example:
+
The following example is for Bulborbs:
 
 
"Chappy" 0 # Params ----- Bulborb
 
 
 
 
"mCarryMin" ----- # Of Pikmin needed to carry
 
 
 
# @var(int,mCarryMin)
 
 
 
10
 
 
 
"mCarryMax" ----- # Of Pikmin can carry
 
 
 
# @var(int,mCarryMax)
 
 
 
20
 
 
 
"mIncPikmins" ----- # Of Pikmin created
 
 
 
# @var(int,mIncPikmins)
 
 
 
10
 
 
 
"mExtra"
 
 
 
# @var(int,mExtra)
 
 
 
0
 
  
 +
{| class="wikitable sortable"
 +
|-
 +
! Line || Description || Translation
 +
|-
 +
|- "Chappy" 0 || The name of the entity and its ID. || Bulborb.
 +
|-
 +
|- "mCarryMin" || Parameter name. || Minimum number of Pikmin needed to carry.
 +
|-
 +
|- # @var(int,mCarryMin) ||  ||
 +
|-
 +
|- 10 || The value for this parameter. || 10 Pikmin are the minimum amount needed to carry a Bulborb.
 +
|-
 +
|- "mCarryMax" || Parameter name. || Maximum number of Pikmin allowed to carry.
 +
|-
 +
|- # @var(int,mCarryMax) ||  ||
 +
|-
 +
|- 20 || The value for this parameter. || 20 Pikmin are the maximum amount allowed to carry a Bulborb.
 +
|-
 +
|- "mIncPikmins" || Parameter name. || The number of Pikmin gained upon collecting a Bulborb.
 +
|-
 +
|- # @var(int,mIncPikmins) ||  ||
 +
|-
 +
|- 10 || The value for this parameter || 10 Pikmin will be gained upon collecting a Bulborb.
 +
|-
 +
|- "mExtra" || Parameter name. || {{unsure|Extra parameter for special entities.}}
 +
|-
 +
|- # @var(int,mExtra) ||  ||
 +
|-
 +
|- 0 || The value for this parameter || {{unsure|The extra parameter will do nothing as it's set to 0.}}
 
[[Category:Pikmin 3]]
 
[[Category:Pikmin 3]]
 
[[Category:File formats]]
 
[[Category:File formats]]

Revision as of 14:31, 20 February 2018

To do: Clean up.

In Pikmin 3, carryParam dictates how much something weighs, how many pikmin can carry it, and how many pikmin it creates. It's currently unknown what "extra" does.

The following example is for Bulborbs:

Line Description Translation