Difference between revisions of "CarryParam"
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. | ||
− | + | The following example is for Bulborbs: | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | {| 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 13: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 |
---|