Skip to content

Commit

Permalink
Add more types
Browse files Browse the repository at this point in the history
  • Loading branch information
dyceron committed Jul 29, 2023
1 parent 7dfcf32 commit b52ee95
Showing 1 changed file with 114 additions and 2 deletions.
116 changes: 114 additions & 2 deletions src/mercury_engine_data_structures/samus_returns_types.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,16 +164,54 @@
"parent": "CCameraBoundaryCtrl",
"fields": {}
},
"CCharClass": {
"kind": "struct",
"parent": "CTypedObject",
"fields": {}
},
"CTunable": {
"kind": "struct",
"parent": "null",
"parent": null,
"fields": {}
},
"CTunableDroppableBillboard": {
"kind": "struct",
"parent": "CTunable",
"fields": {
"fSpawnSpeedFactor": "float",
"fMaxSpawnVelocity": "float",
"fMaxTimeAlive": "float",
"fTimeToStartBlinking": "float",
"fBlinkPeriod": "float",
"fMaxSqrDistanceToAbsorb": "float",
"sMissileCurrent": "string",
"sMissileMax": "string",
"sSuperMissileCurrent": "string",
"sSuperMissileMax": "string",
"sPowerBombCurrent": "string",
"sPowerBombMax": "string",
"fLifeAmount": "float",
"fLifeBigAmount": "float",
"fSpecialEnergyAmount": "float",
"fSpecialEnergyBigAmount": "float",
"fMissileAmount": "float",
"fSuperMissileAmount": "float",
"fPowerBombAmount": "float",
"fTimeSpawning": "float",
"fTimeSpawningMelee": "float",
"fTimeToBeCollectible": "float"
}
},
"CUsableComponent": {
"kind": "struct",
"parent": "CComponent",
"fields": {}
},
"CElevatorUsableComponent": {
"kind": "struct",
"parent": "CUsableComponent",
"fields": {}
},
"CMetroidDNAUsableComponent": {
"kind": "struct",
"parent": "CUsableComponent",
Expand Down Expand Up @@ -726,6 +764,80 @@
"parent": "CCameraBoundaryCtrl",
"fields": {}
},
"CInterpolationComponent": {
"kind":"struct",
"parent": "CComponent",
"fields": {}
},
"CLifeComponent": {
"kind":"struct",
"parent": "CComponent",
"fields": {
"bDisableCollidersOnDead": "bool",
"bWantsCameraFXPreset": "bool",
"fMaxLife": "float",
"fCurrentLife": "float",
"bCurrentLifeLocked": "float"
}
},
"CCharacterLifeComponent": {
"kind":"struct",
"parent": "CLifeComponent",
"fields": {
"sImpactAnim": "string",
"sDeadAnim": "string"
}
},
"CPlayerInfo": {
"kind":"struct",
"parent": "CTypedObject",
"fields": {
"sInputPreset": "string",
"bIgnoreShellWithIceBeam": "bool",
"iHeatZoneCount": "int"
}
},
"CPlayerInterpolation": {
"kind":"struct",
"parent": "CInterpolationComponent",
"fields": {}
},
"CPlayerLifeComponent": {
"kind":"struct",
"parent": "CCharacterLifeComponent",
"fields": {
"fImpactInvulnerableTime": "float",
"sImpactHardAnim": "string",
"sHardImpactFX": "string"
}
},
"CTunablePlayerLifeComponent": {
"kind":"struct",
"parent": "CTunable",
"fields": {
"fVariaSuitDamageMult": "float",
"fGravitySuitDamageMult": "float",
"fFusionDamageMult": "float",
"fHardModeDamageMult": "float",
"fMorphImplulseDefaultDamage": "float",
"fOnDeathMusicsFade": "float",
"fSlomoInterpTimeDead": "float",
"fSlomoInterpTimeRevive": "float"
}
},
"CPlayerMovement": {
"kind":"struct",
"parent": "CCharacterMovement",
"fields": {
"bForcedAnalogInput": "bool",
"fImpactImpulseX": "float",
"fImpactImpulseY": "float",
"fImpactAirImpulseY": "float",
"fImpactHardImpulseX": "float",
"fImpactHardImpulseY": "float",
"fImpactHardAirImpulseY": "float"
}
},
"CBombFanComponent": {
"kind":"struct",
"parent": "CComponent",
Expand Down Expand Up @@ -1053,4 +1165,4 @@
"parent": "CZetaAttack",
"fields": {}
}
}
}

0 comments on commit b52ee95

Please sign in to comment.