Difference between revisions of "CarryParam"
Jump to navigation
Jump to search
(Created page with "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: "Chappy"...") |
m (5 revisions imported) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | carryParam dictates how much something weighs, how many pikmin can carry it, and how many pikmin it creates | + | 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: | |
− | "Chappy" 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:File formats]] |
Latest revision as of 05:19, 5 April 2018
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] |