CarryParam

From Pikmin Technical Knowledge Base
Jump to navigation Jump to search

In Pikmin 3, carryParam dictates how much something weighs, how many pikmin can carry it, and how many pikmin it creates.

The following example is for Bulborbs:

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. Extra parameter for special entities.[unsure]
# @var(int,mExtra)
0 The value for this parameter The extra parameter will do nothing as it's set to 0.[unsure]