diff --git a/include/z64actor.h b/include/z64actor.h index 27732fc13c..df16224504 100644 --- a/include/z64actor.h +++ b/include/z64actor.h @@ -30,7 +30,7 @@ typedef struct { /* 0x2 */ Vec3s unk_2; // scale } struct_80124618; // size = 0x8 -typedef struct ActorInit { +typedef struct ActorProfile { /* 0x00 */ s16 id; /* 0x02 */ u8 type; /* 0x04 */ u32 flags; @@ -40,7 +40,7 @@ typedef struct ActorInit { /* 0x14 */ ActorFunc destroy; /* 0x18 */ ActorFunc update; /* 0x1C */ ActorFunc draw; -} ActorInit; // size = 0x20 +} ActorProfile; // size = 0x20 typedef void (*ActorShadowFunc)(struct Actor* actor, struct Lights* mapper, struct PlayState* play); diff --git a/include/z64actor_dlftbls.h b/include/z64actor_dlftbls.h index ba16fd8036..49ee9c756b 100644 --- a/include/z64actor_dlftbls.h +++ b/include/z64actor_dlftbls.h @@ -9,7 +9,7 @@ DECLARE_OVERLAY_SEGMENT(Arrow_Fire) #define AM_FIELD_SIZE SEGMENT_SIZE(ovl_Arrow_Fire) -struct ActorInit; +struct ActorProfile; #define DEFINE_ACTOR(_name, enumValue, _allocType, _debugName) enumValue, #define DEFINE_ACTOR_INTERNAL(_name, enumValue, _allocType, _debugName) enumValue, @@ -35,7 +35,7 @@ typedef struct ActorOverlay { /* 0x08 */ void* vramStart; /* 0x0C */ void* vramEnd; /* 0x10 */ void* loadedRamAddr; // original name: "allocp" - /* 0x14 */ struct ActorInit* initInfo; + /* 0x14 */ struct ActorProfile* profile; /* 0x18 */ char* name; /* 0x1C */ u16 allocType; // bit 0: don't allocate memory, use actorContext->0x250? bit 1: Always keep loaded? /* 0x1E */ s8 numLoaded; // original name: "clients" diff --git a/include/z64effect_ss.h b/include/z64effect_ss.h index 37b12b1fe7..b00419de27 100644 --- a/include/z64effect_ss.h +++ b/include/z64effect_ss.h @@ -33,17 +33,17 @@ typedef u32 (*EffectSsInitFunc)(struct PlayState* play, u32 index, struct Effect typedef void(*EffectSsUpdateFunc)(struct PlayState* play, u32 index, struct EffectSs* particle); typedef void(*EffectSsDrawFunc)(struct PlayState* play, u32 index, struct EffectSs* particle); -typedef struct EffectSsInit { +typedef struct EffectSsProfile { /* 0x0 */ u32 type; /* 0x4 */ EffectSsInitFunc init; -} EffectSsInit; // size = 0x8 +} EffectSsProfile; // size = 0x8 typedef struct EffectSsOverlay { /* 0x00 */ RomFile file; /* 0x08 */ void* vramStart; /* 0x0C */ void* vramEnd; /* 0x10 */ void* loadedRamAddr; - /* 0x14 */ EffectSsInit* initInfo; + /* 0x14 */ EffectSsProfile* profile; /* 0x18 */ u8 unk18; // Always 1? } EffectSsOverlay; // size = 0x1C diff --git a/include/z64transition.h b/include/z64transition.h index c280e864fa..923e076cb6 100644 --- a/include/z64transition.h +++ b/include/z64transition.h @@ -51,7 +51,7 @@ typedef struct TransitionTile { #define TC_SET_PARAMS (1 << 7) -typedef struct TransitionInit { +typedef struct TransitionProfile { /* 0x00 */ void* (*init)(void* transition); /* 0x04 */ void (*destroy)(void* transition); /* 0x08 */ void (*update)(void* transition, s32 updateRate); @@ -61,7 +61,7 @@ typedef struct TransitionInit { /* 0x18 */ void (*setColor)(void* transition, u32 color); /* 0x1C */ void (*setEnvColor)(void* transition, u32 color); /* 0x20 */ s32 (*isDone)(void* transition); -} TransitionInit; // size = 0x24 +} TransitionProfile; // size = 0x24 typedef struct TransitionOverlay { union { @@ -74,7 +74,7 @@ typedef struct TransitionOverlay { /* 0x04 */ void* vramStart; /* 0x08 */ void* vramEnd; /* 0x0C */ RomFile file; - /* 0x14 */ TransitionInit* initInfo; + /* 0x14 */ TransitionProfile* profile; /* 0x18 */ size_t size; } TransitionOverlay; diff --git a/src/code/z_actor.c b/src/code/z_actor.c index 3e503664c0..8ca7284359 100644 --- a/src/code/z_actor.c +++ b/src/code/z_actor.c @@ -3273,15 +3273,15 @@ Actor* Actor_Spawn(ActorContext* actorCtx, PlayState* play, s16 actorId, f32 pos CS_ID_NONE, HALFDAYBIT_ALL, NULL); } -ActorInit* Actor_LoadOverlay(ActorContext* actorCtx, s16 index) { +ActorProfile* Actor_LoadOverlay(ActorContext* actorCtx, s16 index) { size_t overlaySize; ActorOverlay* overlayEntry = &gActorOverlayTable[index]; - ActorInit* actorInit; + ActorProfile* profile; overlaySize = (uintptr_t)overlayEntry->vramEnd - (uintptr_t)overlayEntry->vramStart; if (overlayEntry->vramStart == NULL) { - actorInit = overlayEntry->initInfo; + profile = overlayEntry->profile; } else { if (overlayEntry->loadedRamAddr == NULL) { if (overlayEntry->allocType & ALLOCTYPE_ABSOLUTE) { @@ -3304,21 +3304,21 @@ ActorInit* Actor_LoadOverlay(ActorContext* actorCtx, s16 index) { overlayEntry->numLoaded = 0; } - actorInit = (void*)(uintptr_t)((overlayEntry->initInfo != NULL) - ? (void*)((uintptr_t)overlayEntry->initInfo - - (intptr_t)((uintptr_t)overlayEntry->vramStart - - (uintptr_t)overlayEntry->loadedRamAddr)) - : NULL); + profile = (void*)(uintptr_t)((overlayEntry->profile != NULL) + ? (void*)((uintptr_t)overlayEntry->profile - + (intptr_t)((uintptr_t)overlayEntry->vramStart - + (uintptr_t)overlayEntry->loadedRamAddr)) + : NULL); } - return actorInit; + return profile; } Actor* Actor_SpawnAsChildAndCutscene(ActorContext* actorCtx, PlayState* play, s16 index, f32 x, f32 y, f32 z, s16 rotX, s16 rotY, s16 rotZ, s32 params, u32 csId, u32 halfDaysBits, Actor* parent) { s32 pad; Actor* actor; - ActorInit* actorInit; + ActorProfile* profile; s32 objectSlot; ActorOverlay* overlayEntry; @@ -3326,20 +3326,20 @@ Actor* Actor_SpawnAsChildAndCutscene(ActorContext* actorCtx, PlayState* play, s1 return NULL; } - actorInit = Actor_LoadOverlay(actorCtx, index); - if (actorInit == NULL) { + profile = Actor_LoadOverlay(actorCtx, index); + if (profile == NULL) { return NULL; } - objectSlot = Object_GetSlot(&play->objectCtx, actorInit->objectId); + objectSlot = Object_GetSlot(&play->objectCtx, profile->objectId); if ((objectSlot <= OBJECT_SLOT_NONE) || - ((actorInit->type == ACTORCAT_ENEMY) && Flags_GetClear(play, play->roomCtx.curRoom.num) && - (actorInit->id != ACTOR_BOSS_05))) { + ((profile->type == ACTORCAT_ENEMY) && Flags_GetClear(play, play->roomCtx.curRoom.num) && + (profile->id != ACTOR_BOSS_05))) { Actor_FreeOverlay(&gActorOverlayTable[index]); return NULL; } - actor = ZeldaArena_Malloc(actorInit->instanceSize); + actor = ZeldaArena_Malloc(profile->instanceSize); if (actor == NULL) { Actor_FreeOverlay(&gActorOverlayTable[index]); return NULL; @@ -3350,22 +3350,22 @@ Actor* Actor_SpawnAsChildAndCutscene(ActorContext* actorCtx, PlayState* play, s1 overlayEntry->numLoaded++; } - bzero(actor, actorInit->instanceSize); + bzero(actor, profile->instanceSize); actor->overlayEntry = overlayEntry; - actor->id = actorInit->id; - actor->flags = actorInit->flags; + actor->id = profile->id; + actor->flags = profile->flags; - if (actorInit->id == ACTOR_EN_PART) { + if (profile->id == ACTOR_EN_PART) { actor->objectSlot = rotZ; rotZ = 0; } else { actor->objectSlot = objectSlot; } - actor->init = actorInit->init; - actor->destroy = actorInit->destroy; - actor->update = actorInit->update; - actor->draw = actorInit->draw; + actor->init = profile->init; + actor->destroy = profile->destroy; + actor->update = profile->update; + actor->draw = profile->draw; if (parent != NULL) { actor->room = parent->room; @@ -3394,7 +3394,7 @@ Actor* Actor_SpawnAsChildAndCutscene(ActorContext* actorCtx, PlayState* play, s1 actor->halfDaysBits = HALFDAYBIT_ALL; } - Actor_AddToCategory(actorCtx, actor, actorInit->type); + Actor_AddToCategory(actorCtx, actor, profile->type); { uintptr_t prevSeg = gSegments[0x06]; diff --git a/src/code/z_actor_dlftbls.c b/src/code/z_actor_dlftbls.c index f884de2dfb..05a1da25da 100644 --- a/src/code/z_actor_dlftbls.c +++ b/src/code/z_actor_dlftbls.c @@ -2,11 +2,11 @@ #include "fault.h" -// Segment and InitVars declarations (also used in the table below) +// Segment and Profile declarations (also used in the table below) #define DEFINE_ACTOR(name, _enumValue, _allocType, _debugName) \ - extern struct ActorInit name##_InitVars; \ + extern struct ActorProfile name##_Profile; \ DECLARE_OVERLAY_SEGMENT(name) -#define DEFINE_ACTOR_INTERNAL(name, _enumValue, _allocType, _debugName) extern struct ActorInit name##_InitVars; +#define DEFINE_ACTOR_INTERNAL(name, _enumValue, _allocType, _debugName) extern struct ActorProfile name##_Profile; #define DEFINE_ACTOR_UNSET(_enumValue) #include "tables/actor_table.h" @@ -22,15 +22,15 @@ SEGMENT_START(ovl_##name), \ SEGMENT_END(ovl_##name), \ NULL, \ - &name##_InitVars, \ + &name##_Profile, \ NULL, \ allocType, \ 0, \ }, -#define DEFINE_ACTOR_INTERNAL(name, _enumValue, allocType, _debugName) \ - { \ - ROM_FILE_UNSET, NULL, NULL, NULL, &name##_InitVars, NULL, allocType, 0, \ +#define DEFINE_ACTOR_INTERNAL(name, _enumValue, allocType, _debugName) \ + { \ + ROM_FILE_UNSET, NULL, NULL, NULL, &name##_Profile, NULL, allocType, 0, \ }, #define DEFINE_ACTOR_UNSET(_enumValue) { 0 }, diff --git a/src/code/z_effect_soft_sprite.c b/src/code/z_effect_soft_sprite.c index fda7dc1033..e76942d4a9 100644 --- a/src/code/z_effect_soft_sprite.c +++ b/src/code/z_effect_soft_sprite.c @@ -171,7 +171,7 @@ void EffectSs_Spawn(PlayState* play, s32 type, s32 priority, void* initData) { s32 index; u32 overlaySize; EffectSsOverlay* overlayEntry = &gParticleOverlayTable[type]; - EffectSsInit* initInfo; + EffectSsProfile* profile; if (EffectSS_FindFreeSpace(priority, &index) != 0) { // Abort because we couldn't find a suitable slot to add this effect in @@ -182,7 +182,7 @@ void EffectSs_Spawn(PlayState* play, s32 type, s32 priority, void* initData) { overlaySize = (uintptr_t)overlayEntry->vramEnd - (uintptr_t)overlayEntry->vramStart; if (overlayEntry->vramStart == NULL) { - initInfo = overlayEntry->initInfo; + profile = overlayEntry->profile; } else { if (overlayEntry->loadedRamAddr == NULL) { overlayEntry->loadedRamAddr = ZeldaArena_MallocR(overlaySize); @@ -195,21 +195,21 @@ void EffectSs_Spawn(PlayState* play, s32 type, s32 priority, void* initData) { overlayEntry->vramEnd, overlayEntry->loadedRamAddr); } - initInfo = (void*)(uintptr_t)((overlayEntry->initInfo != NULL) - ? (void*)((uintptr_t)overlayEntry->initInfo - - (intptr_t)((uintptr_t)overlayEntry->vramStart - - (uintptr_t)overlayEntry->loadedRamAddr)) - : NULL); + profile = (void*)(uintptr_t)((overlayEntry->profile != NULL) + ? (void*)((uintptr_t)overlayEntry->profile - + (intptr_t)((uintptr_t)overlayEntry->vramStart - + (uintptr_t)overlayEntry->loadedRamAddr)) + : NULL); } - if (initInfo->init != NULL) { + if (profile->init != NULL) { // Delete the previous effect in the slot, in case the slot wasn't free EffectSS_Delete(&sEffectSsInfo.dataTable[index]); sEffectSsInfo.dataTable[index].type = type; sEffectSsInfo.dataTable[index].priority = priority; - if (initInfo->init(play, index, &sEffectSsInfo.dataTable[index], initData) == 0) { + if (profile->init(play, index, &sEffectSsInfo.dataTable[index], initData) == 0) { EffectSS_ResetEntry(&sEffectSsInfo.dataTable[index]); } } diff --git a/src/code/z_effect_soft_sprite_dlftbls.c b/src/code/z_effect_soft_sprite_dlftbls.c index 69dab2885f..e2f6f25ad0 100644 --- a/src/code/z_effect_soft_sprite_dlftbls.c +++ b/src/code/z_effect_soft_sprite_dlftbls.c @@ -1,9 +1,9 @@ #include "z64effect_ss.h" #include "segment_symbols.h" -// Init Vars and linker symbol declarations (used in the table below) +// Profile and linker symbol declarations (used in the table below) #define DEFINE_EFFECT_SS(name, _enumValue) \ - extern EffectSsInit name##_InitVars; \ + extern EffectSsProfile name##_Profile; \ DECLARE_OVERLAY_SEGMENT(name) #define DEFINE_EFFECT_SS_UNSET(_enumValue) @@ -13,9 +13,9 @@ #undef DEFINE_EFFECT_SS #undef DEFINE_EFFECT_SS_UNSET -#define DEFINE_EFFECT_SS(name, _enumValue) \ - { \ - ROM_FILE(ovl_##name), SEGMENT_START(ovl_##name), SEGMENT_END(ovl_##name), NULL, &name##_InitVars, 1, \ +#define DEFINE_EFFECT_SS(name, _enumValue) \ + { \ + ROM_FILE(ovl_##name), SEGMENT_START(ovl_##name), SEGMENT_END(ovl_##name), NULL, &name##_Profile, 1, \ }, #define DEFINE_EFFECT_SS_UNSET(_enumValue) { 0 }, diff --git a/src/code/z_en_a_keep.c b/src/code/z_en_a_keep.c index 4279f01fa0..d062e0e1f5 100644 --- a/src/code/z_en_a_keep.c +++ b/src/code/z_en_a_keep.c @@ -13,7 +13,7 @@ void EnAObj_Draw(Actor* thisx, PlayState* play); void EnAObj_Idle(EnAObj* this, PlayState* play); void EnAObj_Talk(EnAObj* this, PlayState* play); -ActorInit En_A_Obj_InitVars = { +ActorProfile En_A_Obj_Profile = { /**/ ACTOR_EN_A_OBJ, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/code/z_en_item00.c b/src/code/z_en_item00.c index 2d841a634c..2101ff71f1 100644 --- a/src/code/z_en_item00.c +++ b/src/code/z_en_item00.c @@ -25,7 +25,7 @@ void EnItem00_DrawSprite(EnItem00* this, PlayState* play); void EnItem00_DrawHeartContainer(EnItem00* this, PlayState* play); void EnItem00_DrawHeartPiece(EnItem00* this, PlayState* play); -ActorInit En_Item00_InitVars = { +ActorProfile En_Item00_Profile = { /**/ ACTOR_EN_ITEM00, /**/ ACTORCAT_MISC, /**/ FLAGS, diff --git a/src/code/z_fbdemo_circle.c b/src/code/z_fbdemo_circle.c index 55c8c7fe8b..2bbf7938ed 100644 --- a/src/code/z_fbdemo_circle.c +++ b/src/code/z_fbdemo_circle.c @@ -31,7 +31,7 @@ void TransitionCircle_SetType(void* thisx, s32 type); void TransitionCircle_Draw(void* thisx, Gfx** gfxp); s32 TransitionCircle_IsDone(void* thisx); -TransitionInit TransitionCircle_InitVars = { +TransitionProfile TransitionCircle_Profile = { TransitionCircle_Init, TransitionCircle_Destroy, TransitionCircle_Update, TransitionCircle_Draw, TransitionCircle_Start, TransitionCircle_SetType, TransitionCircle_SetColor, NULL, TransitionCircle_IsDone, diff --git a/src/code/z_fbdemo_dlftbls.c b/src/code/z_fbdemo_dlftbls.c index 091d02ed66..5fa14a9084 100644 --- a/src/code/z_fbdemo_dlftbls.c +++ b/src/code/z_fbdemo_dlftbls.c @@ -3,12 +3,12 @@ #include "segment_symbols.h" #include "z64lib.h" -// InitVars and Linker symbol declarations (used in the table below) +// Profile and Linker symbol declarations (used in the table below) #define DEFINE_TRANSITION(_enumValue, structName, _instanceName, name) \ - extern TransitionInit structName##_InitVars; \ + extern TransitionProfile structName##_Profile; \ DECLARE_OVERLAY_SEGMENT(name) -#define DEFINE_TRANSITION_INTERNAL(_enumValue, structName, _instanceName) extern TransitionInit structName##_InitVars; +#define DEFINE_TRANSITION_INTERNAL(_enumValue, structName, _instanceName) extern TransitionProfile structName##_Profile; #include "tables/transition_table.h" @@ -21,12 +21,12 @@ SEGMENT_START(ovl_##name), \ SEGMENT_END(ovl_##name), \ ROM_FILE(ovl_##name), \ - &structName##_InitVars, \ + &structName##_Profile, \ sizeof(structName), \ }, #define DEFINE_TRANSITION_INTERNAL(_enumValue, structName, _instanceName) \ - { { 0, 0 }, NULL, NULL, 0, 0, &structName##_InitVars, sizeof(structName) }, + { { 0, 0 }, NULL, NULL, 0, 0, &structName##_Profile, sizeof(structName) }, TransitionOverlay gTransitionOverlayTable[] = { #include "tables/transition_table.h" @@ -38,25 +38,25 @@ TransitionOverlay gTransitionOverlayTable[] = { void Transition_Init(TransitionContext* transitionCtx) { TransitionOverlay* overlayEntry; ptrdiff_t relocOffset; - TransitionInit* initInfo[1]; + TransitionProfile* profile[1]; overlayEntry = &gTransitionOverlayTable[transitionCtx->fbdemoType]; TransitionOverlay_Load(overlayEntry); relocOffset = (uintptr_t)Lib_PhysicalToVirtual(overlayEntry->loadInfo.addr) - (uintptr_t)overlayEntry->vramStart; - initInfo[0] = NULL; - initInfo[0] = (overlayEntry->initInfo != NULL) ? (TransitionInit*)((uintptr_t)overlayEntry->initInfo + relocOffset) - : initInfo[0]; + profile[0] = NULL; + profile[0] = (overlayEntry->profile != NULL) ? (TransitionProfile*)((uintptr_t)overlayEntry->profile + relocOffset) + : profile[0]; - transitionCtx->init = initInfo[0]->init; - transitionCtx->destroy = initInfo[0]->destroy; - transitionCtx->start = initInfo[0]->start; - transitionCtx->isDone = initInfo[0]->isDone; - transitionCtx->draw = initInfo[0]->draw; - transitionCtx->update = initInfo[0]->update; - transitionCtx->setType = initInfo[0]->setType; - transitionCtx->setColor = initInfo[0]->setColor; - transitionCtx->setEnvColor = initInfo[0]->setEnvColor; + transitionCtx->init = profile[0]->init; + transitionCtx->destroy = profile[0]->destroy; + transitionCtx->start = profile[0]->start; + transitionCtx->isDone = profile[0]->isDone; + transitionCtx->draw = profile[0]->draw; + transitionCtx->update = profile[0]->update; + transitionCtx->setType = profile[0]->setType; + transitionCtx->setColor = profile[0]->setColor; + transitionCtx->setEnvColor = profile[0]->setEnvColor; } void Transition_Destroy(TransitionContext* transitionCtx) { diff --git a/src/code/z_fbdemo_fade.c b/src/code/z_fbdemo_fade.c index 64502a68e8..7f27355e3a 100644 --- a/src/code/z_fbdemo_fade.c +++ b/src/code/z_fbdemo_fade.c @@ -30,7 +30,7 @@ static Gfx sTransFadeSetupDL[] = { gsSPEndDisplayList(), }; -TransitionInit TransitionFade_InitVars = { +TransitionProfile TransitionFade_Profile = { TransitionFade_Init, TransitionFade_Destroy, TransitionFade_Update, TransitionFade_Draw, TransitionFade_Start, TransitionFade_SetType, TransitionFade_SetColor, NULL, TransitionFade_IsDone, diff --git a/src/code/z_player_call.c b/src/code/z_player_call.c index da82e88ffb..0957a81bc6 100644 --- a/src/code/z_player_call.c +++ b/src/code/z_player_call.c @@ -10,7 +10,7 @@ ActorFunc sPlayerCallDestroyFunc; ActorFunc sPlayerCallUpdateFunc; ActorFunc sPlayerCallDrawFunc; -ActorInit Player_InitVars = { +ActorProfile Player_Profile = { /**/ ACTOR_PLAYER, /**/ ACTORCAT_PLAYER, /**/ FLAGS, diff --git a/src/code/z_player_lib.c b/src/code/z_player_lib.c index 445d50165a..f7f63c09a3 100644 --- a/src/code/z_player_lib.c +++ b/src/code/z_player_lib.c @@ -393,11 +393,11 @@ void func_8012301C(Actor* thisx, PlayState* play2) { if (this->av1.actionVar1 == 2) { s16 objectId = gPlayerFormObjectIds[GET_PLAYER_FORM]; - gActorOverlayTable[ACTOR_PLAYER].initInfo->objectId = objectId; + gActorOverlayTable[ACTOR_PLAYER].profile->objectId = objectId; func_8012F73C(&play->objectCtx, this->actor.objectSlot, objectId); this->actor.objectSlot = Object_GetSlot(&play->objectCtx, GAMEPLAY_KEEP); } else if (this->av1.actionVar1 >= 3) { - s32 objectSlot = Object_GetSlot(&play->objectCtx, gActorOverlayTable[ACTOR_PLAYER].initInfo->objectId); + s32 objectSlot = Object_GetSlot(&play->objectCtx, gActorOverlayTable[ACTOR_PLAYER].profile->objectId); if (Object_IsLoaded(&play->objectCtx, objectSlot)) { this->actor.objectSlot = objectSlot; diff --git a/src/code/z_scene.c b/src/code/z_scene.c index e7a2c50dbb..20d2c528db 100644 --- a/src/code/z_scene.c +++ b/src/code/z_scene.c @@ -175,7 +175,7 @@ void Scene_CommandSpawnList(PlayState* play, SceneCmd* cmd) { play->objectCtx.numEntries = loadedCount; play->objectCtx.numPersistentEntries = loadedCount; playerObjectId = gPlayerFormObjectIds[GET_PLAYER_FORM]; - gActorOverlayTable[0].initInfo->objectId = playerObjectId; + gActorOverlayTable[ACTOR_PLAYER].profile->objectId = playerObjectId; Object_SpawnPersistent(&play->objectCtx, playerObjectId); play->objectCtx.slots[play->objectCtx.numEntries].segment = objectPtr; diff --git a/src/overlays/actors/ovl_Arms_Hook/z_arms_hook.c b/src/overlays/actors/ovl_Arms_Hook/z_arms_hook.c index 315d8682e0..5c30a1375c 100644 --- a/src/overlays/actors/ovl_Arms_Hook/z_arms_hook.c +++ b/src/overlays/actors/ovl_Arms_Hook/z_arms_hook.c @@ -20,7 +20,7 @@ void ArmsHook_Draw(Actor* thisx, PlayState* play); void ArmsHook_Wait(ArmsHook* this, PlayState* play); void ArmsHook_Shoot(ArmsHook* this, PlayState* play); -ActorInit Arms_Hook_InitVars = { +ActorProfile Arms_Hook_Profile = { /**/ ACTOR_ARMS_HOOK, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Arrow_Fire/z_arrow_fire.c b/src/overlays/actors/ovl_Arrow_Fire/z_arrow_fire.c index ec307aec5b..43abe7c3ac 100644 --- a/src/overlays/actors/ovl_Arrow_Fire/z_arrow_fire.c +++ b/src/overlays/actors/ovl_Arrow_Fire/z_arrow_fire.c @@ -21,7 +21,7 @@ void FireArrow_Fly(ArrowFire* this, PlayState* play); #include "assets/overlays/ovl_Arrow_Fire/ovl_Arrow_Fire.c" -ActorInit Arrow_Fire_InitVars = { +ActorProfile Arrow_Fire_Profile = { /**/ ACTOR_ARROW_FIRE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c b/src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c index 6de91b421b..f519e2a924 100644 --- a/src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c +++ b/src/overlays/actors/ovl_Arrow_Ice/z_arrow_ice.c @@ -23,7 +23,7 @@ void ArrowIce_Fly(ArrowIce* this, PlayState* play); static s32 sBssPad; -ActorInit Arrow_Ice_InitVars = { +ActorProfile Arrow_Ice_Profile = { /**/ ACTOR_ARROW_ICE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Arrow_Light/z_arrow_light.c b/src/overlays/actors/ovl_Arrow_Light/z_arrow_light.c index 059d03288d..59131c031e 100644 --- a/src/overlays/actors/ovl_Arrow_Light/z_arrow_light.c +++ b/src/overlays/actors/ovl_Arrow_Light/z_arrow_light.c @@ -21,7 +21,7 @@ void ArrowLight_Fly(ArrowLight* this, PlayState* play); #include "assets/overlays/ovl_Arrow_Light/ovl_Arrow_Light.c" -ActorInit Arrow_Light_InitVars = { +ActorProfile Arrow_Light_Profile = { /**/ ACTOR_ARROW_LIGHT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Astr_Bombwall/z_bg_astr_bombwall.c b/src/overlays/actors/ovl_Bg_Astr_Bombwall/z_bg_astr_bombwall.c index 7805715e6c..fa97ab9579 100644 --- a/src/overlays/actors/ovl_Bg_Astr_Bombwall/z_bg_astr_bombwall.c +++ b/src/overlays/actors/ovl_Bg_Astr_Bombwall/z_bg_astr_bombwall.c @@ -23,7 +23,7 @@ void func_80C0A418(BgAstrBombwall* this, PlayState* play); void func_80C0A458(BgAstrBombwall* this, PlayState* play); void func_80C0A4BC(BgAstrBombwall* this, PlayState* play); -ActorInit Bg_Astr_Bombwall_InitVars = { +ActorProfile Bg_Astr_Bombwall_Profile = { /**/ ACTOR_BG_ASTR_BOMBWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Botihasira/z_bg_botihasira.c b/src/overlays/actors/ovl_Bg_Botihasira/z_bg_botihasira.c index 75146d65fb..bc6af7a70d 100644 --- a/src/overlays/actors/ovl_Bg_Botihasira/z_bg_botihasira.c +++ b/src/overlays/actors/ovl_Bg_Botihasira/z_bg_botihasira.c @@ -18,7 +18,7 @@ void BgBotihasira_Draw(Actor* thisx, PlayState* play); void BgBotihasira_DoNothing(BgBotihasira* this, PlayState* play); -ActorInit Bg_Botihasira_InitVars = { +ActorProfile Bg_Botihasira_Profile = { /**/ ACTOR_BG_BOTIHASIRA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Breakwall/z_bg_breakwall.c b/src/overlays/actors/ovl_Bg_Breakwall/z_bg_breakwall.c index 1a40b492b5..5b7285b106 100644 --- a/src/overlays/actors/ovl_Bg_Breakwall/z_bg_breakwall.c +++ b/src/overlays/actors/ovl_Bg_Breakwall/z_bg_breakwall.c @@ -45,7 +45,7 @@ void func_808B7B54(Actor* thisx, PlayState* play); void func_808B7D34(Actor* thisx, PlayState* play); void BgBreakwall_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Breakwall_InitVars = { +ActorProfile Bg_Breakwall_Profile = { /**/ ACTOR_BG_BREAKWALL, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c b/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c index 45cdef9e06..d9d9a67736 100644 --- a/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c +++ b/src/overlays/actors/ovl_Bg_Crace_Movebg/z_bg_crace_movebg.c @@ -41,7 +41,7 @@ typedef enum { u8 sIsLoaded[32]; -ActorInit Bg_Crace_Movebg_InitVars = { +ActorProfile Bg_Crace_Movebg_Profile = { /**/ ACTOR_BG_CRACE_MOVEBG, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ctower_Gear/z_bg_ctower_gear.c b/src/overlays/actors/ovl_Bg_Ctower_Gear/z_bg_ctower_gear.c index dd76f8edff..d88ac74283 100644 --- a/src/overlays/actors/ovl_Bg_Ctower_Gear/z_bg_ctower_gear.c +++ b/src/overlays/actors/ovl_Bg_Ctower_Gear/z_bg_ctower_gear.c @@ -19,7 +19,7 @@ void BgCtowerGear_Draw(Actor* thisx, PlayState* play); void BgCtowerGear_UpdateOrgan(Actor* thisx, PlayState* play); void BgCtowerGear_DrawOrgan(Actor* thisx, PlayState* play); -ActorInit Bg_Ctower_Gear_InitVars = { +ActorProfile Bg_Ctower_Gear_Profile = { /**/ ACTOR_BG_CTOWER_GEAR, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ctower_Rot/z_bg_ctower_rot.c b/src/overlays/actors/ovl_Bg_Ctower_Rot/z_bg_ctower_rot.c index 421f8cc794..15142f177a 100644 --- a/src/overlays/actors/ovl_Bg_Ctower_Rot/z_bg_ctower_rot.c +++ b/src/overlays/actors/ovl_Bg_Ctower_Rot/z_bg_ctower_rot.c @@ -21,7 +21,7 @@ void BgCtowerRot_DoorDoNothing(BgCtowerRot* this, PlayState* play); void BgCtowerRot_DoorIdle(BgCtowerRot* this, PlayState* play); void BgCtowerRot_SetupDoorClose(BgCtowerRot* this, PlayState* play); -ActorInit Bg_Ctower_Rot_InitVars = { +ActorProfile Bg_Ctower_Rot_Profile = { /**/ ACTOR_BG_CTOWER_ROT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Danpei_Movebg/z_bg_danpei_movebg.c b/src/overlays/actors/ovl_Bg_Danpei_Movebg/z_bg_danpei_movebg.c index fec339aaa1..9ac1e8dd23 100644 --- a/src/overlays/actors/ovl_Bg_Danpei_Movebg/z_bg_danpei_movebg.c +++ b/src/overlays/actors/ovl_Bg_Danpei_Movebg/z_bg_danpei_movebg.c @@ -29,7 +29,7 @@ void func_80AF72F8(BgDanpeiMovebg* this, PlayState* play); void func_80AF7354(BgDanpeiMovebg* this, PlayState* play); void func_80AF746C(BgDanpeiMovebg* this, PlayState* play); -ActorInit Bg_Danpei_Movebg_InitVars = { +ActorProfile Bg_Danpei_Movebg_Profile = { /**/ ACTOR_BG_DANPEI_MOVEBG, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dblue_Balance/z_bg_dblue_balance.c b/src/overlays/actors/ovl_Bg_Dblue_Balance/z_bg_dblue_balance.c index 6096b0a89e..33eae8723b 100644 --- a/src/overlays/actors/ovl_Bg_Dblue_Balance/z_bg_dblue_balance.c +++ b/src/overlays/actors/ovl_Bg_Dblue_Balance/z_bg_dblue_balance.c @@ -29,7 +29,7 @@ void func_80B83758(Actor* thisx, PlayState* play); AnimatedMaterial* D_80B83C70; AnimatedMaterial* D_80B83C74; -ActorInit Bg_Dblue_Balance_InitVars = { +ActorProfile Bg_Dblue_Balance_Profile = { /**/ ACTOR_BG_DBLUE_BALANCE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dblue_Elevator/z_bg_dblue_elevator.c b/src/overlays/actors/ovl_Bg_Dblue_Elevator/z_bg_dblue_elevator.c index 6ec3d14e2e..afe9bb0900 100644 --- a/src/overlays/actors/ovl_Bg_Dblue_Elevator/z_bg_dblue_elevator.c +++ b/src/overlays/actors/ovl_Bg_Dblue_Elevator/z_bg_dblue_elevator.c @@ -28,7 +28,7 @@ void BgDblueElevator_Pause(BgDblueElevator* this, PlayState* play); void BgDblueElevator_SetupMove(BgDblueElevator* this); void BgDblueElevator_Move(BgDblueElevator* this, PlayState* play); -ActorInit Bg_Dblue_Elevator_InitVars = { +ActorProfile Bg_Dblue_Elevator_Profile = { /**/ ACTOR_BG_DBLUE_ELEVATOR, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dblue_Movebg/z_bg_dblue_movebg.c b/src/overlays/actors/ovl_Bg_Dblue_Movebg/z_bg_dblue_movebg.c index 9a6a539847..040b5b5bbd 100644 --- a/src/overlays/actors/ovl_Bg_Dblue_Movebg/z_bg_dblue_movebg.c +++ b/src/overlays/actors/ovl_Bg_Dblue_Movebg/z_bg_dblue_movebg.c @@ -44,7 +44,7 @@ u8 D_80A2B870[][2] = { { 0x03, 0x03 }, { 0x03, 0x05 }, { 0x03, 0x01 }, { 0x03, 0x06 }, { 0x03, 0x02 }, { 0x03, 0x04 }, { 0x03, 0x00 }, }; -ActorInit Bg_Dblue_Movebg_InitVars = { +ActorProfile Bg_Dblue_Movebg_Profile = { /**/ ACTOR_BG_DBLUE_MOVEBG, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dblue_Waterfall/z_bg_dblue_waterfall.c b/src/overlays/actors/ovl_Bg_Dblue_Waterfall/z_bg_dblue_waterfall.c index aef28bcb84..2a301d4def 100644 --- a/src/overlays/actors/ovl_Bg_Dblue_Waterfall/z_bg_dblue_waterfall.c +++ b/src/overlays/actors/ovl_Bg_Dblue_Waterfall/z_bg_dblue_waterfall.c @@ -25,7 +25,7 @@ void func_80B84BCC(BgDblueWaterfall* this, PlayState* play); void func_80B84EF0(BgDblueWaterfall* this, PlayState* play); void func_80B84F20(BgDblueWaterfall* this, PlayState* play); -ActorInit Bg_Dblue_Waterfall_InitVars = { +ActorProfile Bg_Dblue_Waterfall_Profile = { /**/ ACTOR_BG_DBLUE_WATERFALL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dkjail_Ivy/z_bg_dkjail_ivy.c b/src/overlays/actors/ovl_Bg_Dkjail_Ivy/z_bg_dkjail_ivy.c index 1cf798e2e6..452ef2e59a 100644 --- a/src/overlays/actors/ovl_Bg_Dkjail_Ivy/z_bg_dkjail_ivy.c +++ b/src/overlays/actors/ovl_Bg_Dkjail_Ivy/z_bg_dkjail_ivy.c @@ -24,7 +24,7 @@ void BgDkjailIvy_BeginCutscene(BgDkjailIvy* this, PlayState* play); void BgDkjailIvy_SetupFadeOut(BgDkjailIvy* this); void BgDkjailIvy_FadeOut(BgDkjailIvy* this, PlayState* play); -ActorInit Bg_Dkjail_Ivy_InitVars = { +ActorProfile Bg_Dkjail_Ivy_Profile = { /**/ ACTOR_BG_DKJAIL_IVY, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Dy_Yoseizo/z_bg_dy_yoseizo.c b/src/overlays/actors/ovl_Bg_Dy_Yoseizo/z_bg_dy_yoseizo.c index d91f4b6aac..8bf99b7c58 100644 --- a/src/overlays/actors/ovl_Bg_Dy_Yoseizo/z_bg_dy_yoseizo.c +++ b/src/overlays/actors/ovl_Bg_Dy_Yoseizo/z_bg_dy_yoseizo.c @@ -25,7 +25,7 @@ void BgDyYoseizo_SpawnEffect(BgDyYoseizo* this, Vec3f* initPos, Vec3f* initVeloc void BgDyYoseizo_UpdateEffects(BgDyYoseizo* this, PlayState* play); void BgDyYoseizo_DrawEffects(BgDyYoseizo* this, PlayState* play); -ActorInit Bg_Dy_Yoseizo_InitVars = { +ActorProfile Bg_Dy_Yoseizo_Profile = { /**/ ACTOR_BG_DY_YOSEIZO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_F40_Block/z_bg_f40_block.c b/src/overlays/actors/ovl_Bg_F40_Block/z_bg_f40_block.c index 3d40d3a359..9e1c78ff49 100644 --- a/src/overlays/actors/ovl_Bg_F40_Block/z_bg_f40_block.c +++ b/src/overlays/actors/ovl_Bg_F40_Block/z_bg_f40_block.c @@ -26,7 +26,7 @@ void func_80BC44F4(BgF40Block* this, PlayState* play); void func_80BC4530(BgF40Block* this, PlayState* play); void func_80BC457C(BgF40Block* this, PlayState* play); -ActorInit Bg_F40_Block_InitVars = { +ActorProfile Bg_F40_Block_Profile = { /**/ ACTOR_BG_F40_BLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_F40_Flift/z_bg_f40_flift.c b/src/overlays/actors/ovl_Bg_F40_Flift/z_bg_f40_flift.c index ea49075e70..e09679c1aa 100644 --- a/src/overlays/actors/ovl_Bg_F40_Flift/z_bg_f40_flift.c +++ b/src/overlays/actors/ovl_Bg_F40_Flift/z_bg_f40_flift.c @@ -19,7 +19,7 @@ void BgF40Flift_Draw(Actor* thisx, PlayState* play); void func_808D75F0(BgF40Flift* this, PlayState* play); void func_808D7714(BgF40Flift* this, PlayState* play); -ActorInit Bg_F40_Flift_InitVars = { +ActorProfile Bg_F40_Flift_Profile = { /**/ ACTOR_BG_F40_FLIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_F40_Switch/z_bg_f40_switch.c b/src/overlays/actors/ovl_Bg_F40_Switch/z_bg_f40_switch.c index 97d1b4de00..dc010e47e9 100644 --- a/src/overlays/actors/ovl_Bg_F40_Switch/z_bg_f40_switch.c +++ b/src/overlays/actors/ovl_Bg_F40_Switch/z_bg_f40_switch.c @@ -24,7 +24,7 @@ void BgF40Switch_Press(BgF40Switch* this, PlayState* play); void BgF40Switch_WaitToPress(BgF40Switch* this, PlayState* play); void BgF40Switch_IdleUnpressed(BgF40Switch* this, PlayState* play); -ActorInit Bg_F40_Switch_InitVars = { +ActorProfile Bg_F40_Switch_Profile = { /**/ ACTOR_BG_F40_SWITCH, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_F40_Swlift/z_bg_f40_swlift.c b/src/overlays/actors/ovl_Bg_F40_Swlift/z_bg_f40_swlift.c index 9f8bfa8003..d2fb9647ea 100644 --- a/src/overlays/actors/ovl_Bg_F40_Swlift/z_bg_f40_swlift.c +++ b/src/overlays/actors/ovl_Bg_F40_Swlift/z_bg_f40_swlift.c @@ -19,7 +19,7 @@ void BgF40Swlift_Draw(Actor* thisx, PlayState* play); static s32 sSwitchFlags[4] = { 0xFF, 0xFF, 0xFF, 0xFF }; static s32 sHeights[4]; -ActorInit Bg_F40_Swlift_InitVars = { +ActorProfile Bg_F40_Swlift_Profile = { /**/ ACTOR_BG_F40_SWLIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Fire_Wall/z_bg_fire_wall.c b/src/overlays/actors/ovl_Bg_Fire_Wall/z_bg_fire_wall.c index 01aa6a2d73..bec145812a 100644 --- a/src/overlays/actors/ovl_Bg_Fire_Wall/z_bg_fire_wall.c +++ b/src/overlays/actors/ovl_Bg_Fire_Wall/z_bg_fire_wall.c @@ -21,7 +21,7 @@ void func_809AC638(BgFireWall* this, PlayState* play); void func_809AC68C(BgFireWall* this, PlayState* play); void func_809AC6C0(BgFireWall* this, PlayState* play); -ActorInit Bg_Fire_Wall_InitVars = { +ActorProfile Bg_Fire_Wall_Profile = { /**/ ACTOR_BG_FIRE_WALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Fu_Kaiten/z_bg_fu_kaiten.c b/src/overlays/actors/ovl_Bg_Fu_Kaiten/z_bg_fu_kaiten.c index b7afb2d713..92ecdac9b2 100644 --- a/src/overlays/actors/ovl_Bg_Fu_Kaiten/z_bg_fu_kaiten.c +++ b/src/overlays/actors/ovl_Bg_Fu_Kaiten/z_bg_fu_kaiten.c @@ -16,7 +16,7 @@ void BgFuKaiten_Destroy(Actor* thisx, PlayState* play); void BgFuKaiten_Update(Actor* thisx, PlayState* play); void BgFuKaiten_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Fu_Kaiten_InitVars = { +ActorProfile Bg_Fu_Kaiten_Profile = { /**/ ACTOR_BG_FU_KAITEN, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Fu_Mizu/z_bg_fu_mizu.c b/src/overlays/actors/ovl_Bg_Fu_Mizu/z_bg_fu_mizu.c index cfc0b974fc..16ddf0403d 100644 --- a/src/overlays/actors/ovl_Bg_Fu_Mizu/z_bg_fu_mizu.c +++ b/src/overlays/actors/ovl_Bg_Fu_Mizu/z_bg_fu_mizu.c @@ -16,7 +16,7 @@ void BgFuMizu_Destroy(Actor* thisx, PlayState* play); void BgFuMizu_Update(Actor* thisx, PlayState* play); void BgFuMizu_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Fu_Mizu_InitVars = { +ActorProfile Bg_Fu_Mizu_Profile = { /**/ ACTOR_BG_FU_MIZU, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Goron_Oyu/z_bg_goron_oyu.c b/src/overlays/actors/ovl_Bg_Goron_Oyu/z_bg_goron_oyu.c index 33b8d96f8d..1469dcb7c9 100644 --- a/src/overlays/actors/ovl_Bg_Goron_Oyu/z_bg_goron_oyu.c +++ b/src/overlays/actors/ovl_Bg_Goron_Oyu/z_bg_goron_oyu.c @@ -23,7 +23,7 @@ void BgGoronOyu_UpdateWaterBoxInfo(BgGoronOyu* this, PlayState* play); void BgGoronOyu_SpawnEffects(BgGoronOyu* this, PlayState* play); void func_80B40160(BgGoronOyu* this, PlayState* play); -ActorInit Bg_Goron_Oyu_InitVars = { +ActorProfile Bg_Goron_Oyu_Profile = { /**/ ACTOR_BG_GORON_OYU, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Haka_Bombwall/z_bg_haka_bombwall.c b/src/overlays/actors/ovl_Bg_Haka_Bombwall/z_bg_haka_bombwall.c index d429816ad1..ff108e4f94 100644 --- a/src/overlays/actors/ovl_Bg_Haka_Bombwall/z_bg_haka_bombwall.c +++ b/src/overlays/actors/ovl_Bg_Haka_Bombwall/z_bg_haka_bombwall.c @@ -24,7 +24,7 @@ void BgHakaBombwall_PlayCutscene(BgHakaBombwall* this, PlayState* play); void BgHakaBombwall_SetupEndCutscene(BgHakaBombwall* this); void BgHakaBombwall_EndCutscene(BgHakaBombwall* this, PlayState* play); -ActorInit Bg_Haka_Bombwall_InitVars = { +ActorProfile Bg_Haka_Bombwall_Profile = { /**/ ACTOR_BG_HAKA_BOMBWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Haka_Curtain/z_bg_haka_curtain.c b/src/overlays/actors/ovl_Bg_Haka_Curtain/z_bg_haka_curtain.c index 2cff62a5c9..aaa5ef5fa1 100644 --- a/src/overlays/actors/ovl_Bg_Haka_Curtain/z_bg_haka_curtain.c +++ b/src/overlays/actors/ovl_Bg_Haka_Curtain/z_bg_haka_curtain.c @@ -26,7 +26,7 @@ void func_80B6DD9C(BgHakaCurtain* this, PlayState* play); void func_80B6DEA8(BgHakaCurtain* this, PlayState* play); void func_80B6DE80(BgHakaCurtain* this); -ActorInit Bg_Haka_Curtain_InitVars = { +ActorProfile Bg_Haka_Curtain_Profile = { /**/ ACTOR_BG_HAKA_CURTAIN, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Haka_Tomb/z_bg_haka_tomb.c b/src/overlays/actors/ovl_Bg_Haka_Tomb/z_bg_haka_tomb.c index 58d1794582..bf642bf6e7 100644 --- a/src/overlays/actors/ovl_Bg_Haka_Tomb/z_bg_haka_tomb.c +++ b/src/overlays/actors/ovl_Bg_Haka_Tomb/z_bg_haka_tomb.c @@ -23,7 +23,7 @@ void func_80BD6768(BgHakaTomb* this, PlayState* play); void BgHakaTomb_SetupDoNothing(BgHakaTomb* this); void BgHakaTomb_DoNothing(BgHakaTomb* this, PlayState* play); -ActorInit Bg_Haka_Tomb_InitVars = { +ActorProfile Bg_Haka_Tomb_Profile = { /**/ ACTOR_BG_HAKA_TOMB, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Hakugin_Bombwall/z_bg_hakugin_bombwall.c b/src/overlays/actors/ovl_Bg_Hakugin_Bombwall/z_bg_hakugin_bombwall.c index 8e48112d0e..1e84254276 100644 --- a/src/overlays/actors/ovl_Bg_Hakugin_Bombwall/z_bg_hakugin_bombwall.c +++ b/src/overlays/actors/ovl_Bg_Hakugin_Bombwall/z_bg_hakugin_bombwall.c @@ -26,7 +26,7 @@ void func_80ABCCE4(BgHakuginBombwall* this, PlayState* play); void func_80ABCD98(BgHakuginBombwall* this, PlayState* play); void func_80ABCE60(BgHakuginBombwall* this, PlayState* play); -ActorInit Bg_Hakugin_Bombwall_InitVars = { +ActorProfile Bg_Hakugin_Bombwall_Profile = { /**/ ACTOR_BG_HAKUGIN_BOMBWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Hakugin_Elvpole/z_bg_hakugin_elvpole.c b/src/overlays/actors/ovl_Bg_Hakugin_Elvpole/z_bg_hakugin_elvpole.c index b2a3f2891d..36d1f4d7d4 100644 --- a/src/overlays/actors/ovl_Bg_Hakugin_Elvpole/z_bg_hakugin_elvpole.c +++ b/src/overlays/actors/ovl_Bg_Hakugin_Elvpole/z_bg_hakugin_elvpole.c @@ -18,7 +18,7 @@ void BgHakuginElvpole_Draw(Actor* thisx, PlayState* play); void func_80ABD92C(BgHakuginElvpole* this, PlayState* play); -ActorInit Bg_Hakugin_Elvpole_InitVars = { +ActorProfile Bg_Hakugin_Elvpole_Profile = { /**/ ACTOR_BG_HAKUGIN_ELVPOLE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Hakugin_Post/z_bg_hakugin_post.c b/src/overlays/actors/ovl_Bg_Hakugin_Post/z_bg_hakugin_post.c index 800611942c..43b331e304 100644 --- a/src/overlays/actors/ovl_Bg_Hakugin_Post/z_bg_hakugin_post.c +++ b/src/overlays/actors/ovl_Bg_Hakugin_Post/z_bg_hakugin_post.c @@ -38,7 +38,7 @@ void func_80A9D61C(Actor* thisx, PlayState* play); BgHakuginPostColliders D_80A9DDC0; BgHakuginPostUnkStruct D_80A9E028; -ActorInit Bg_Hakugin_Post_InitVars = { +ActorProfile Bg_Hakugin_Post_Profile = { /**/ ACTOR_BG_HAKUGIN_POST, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Hakugin_Switch/z_bg_hakugin_switch.c b/src/overlays/actors/ovl_Bg_Hakugin_Switch/z_bg_hakugin_switch.c index bef5143f69..23f8509813 100644 --- a/src/overlays/actors/ovl_Bg_Hakugin_Switch/z_bg_hakugin_switch.c +++ b/src/overlays/actors/ovl_Bg_Hakugin_Switch/z_bg_hakugin_switch.c @@ -39,7 +39,7 @@ void func_80B165E0(BgHakuginSwitch* this, PlayState* play); u32 D_80B16AF0; -ActorInit Bg_Hakugin_Switch_InitVars = { +ActorProfile Bg_Hakugin_Switch_Profile = { /**/ ACTOR_BG_HAKUGIN_SWITCH, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Icefloe/z_bg_icefloe.c b/src/overlays/actors/ovl_Bg_Icefloe/z_bg_icefloe.c index 9c4ce8f634..5b560d7d9e 100644 --- a/src/overlays/actors/ovl_Bg_Icefloe/z_bg_icefloe.c +++ b/src/overlays/actors/ovl_Bg_Icefloe/z_bg_icefloe.c @@ -23,7 +23,7 @@ void func_80AC4D2C(BgIcefloe* this, PlayState* play); void func_80AC4C34(BgIcefloe* this, PlayState* play); void func_80AC4CF0(BgIcefloe* this); -ActorInit Bg_Icefloe_InitVars = { +ActorProfile Bg_Icefloe_Profile = { /**/ ACTOR_BG_ICEFLOE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c b/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c index 0f3ba27717..5d6fff3052 100644 --- a/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c +++ b/src/overlays/actors/ovl_Bg_Icicle/z_bg_icicle.c @@ -42,7 +42,7 @@ static ColliderCylinderInit sCylinderInit = { { 13, 120, 0, { 0, 0, 0 } }, }; -ActorInit Bg_Icicle_InitVars = { +ActorProfile Bg_Icicle_Profile = { /**/ ACTOR_BG_ICICLE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Block/z_bg_ikana_block.c b/src/overlays/actors/ovl_Bg_Ikana_Block/z_bg_ikana_block.c index 6528b4bffe..74c682253b 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Block/z_bg_ikana_block.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Block/z_bg_ikana_block.c @@ -25,7 +25,7 @@ void func_80B7F360(BgIkanaBlock* this); void func_80B7F398(BgIkanaBlock* this, PlayState* play); void func_80B7F564(Actor* thisx, PlayState* play); -ActorInit Bg_Ikana_Block_InitVars = { +ActorProfile Bg_Ikana_Block_Profile = { /**/ ACTOR_BG_IKANA_BLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Bombwall/z_bg_ikana_bombwall.c b/src/overlays/actors/ovl_Bg_Ikana_Bombwall/z_bg_ikana_bombwall.c index b4148cbc5a..9780222224 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Bombwall/z_bg_ikana_bombwall.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Bombwall/z_bg_ikana_bombwall.c @@ -25,7 +25,7 @@ void func_80BD503C(BgIkanaBombwall* this, PlayState* play); void func_80BD5118(BgIkanaBombwall* this); void func_80BD5134(BgIkanaBombwall* this, PlayState* play); -ActorInit Bg_Ikana_Bombwall_InitVars = { +ActorProfile Bg_Ikana_Bombwall_Profile = { /**/ ACTOR_BG_IKANA_BOMBWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Dharma/z_bg_ikana_dharma.c b/src/overlays/actors/ovl_Bg_Ikana_Dharma/z_bg_ikana_dharma.c index c07278e195..5dc7988d27 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Dharma/z_bg_ikana_dharma.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Dharma/z_bg_ikana_dharma.c @@ -24,7 +24,7 @@ void BgIkanaDharma_StartCutscene(BgIkanaDharma* this, PlayState* play); void BgIkanaDharma_SetupWaitForCutsceneToEnd(BgIkanaDharma* this); void BgIkanaDharma_WaitForCutsceneToEnd(BgIkanaDharma* this, PlayState* play); -ActorInit Bg_Ikana_Dharma_InitVars = { +ActorProfile Bg_Ikana_Dharma_Profile = { /**/ ACTOR_BG_IKANA_DHARMA, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Mirror/z_bg_ikana_mirror.c b/src/overlays/actors/ovl_Bg_Ikana_Mirror/z_bg_ikana_mirror.c index 78a3ff46c7..2c4a85f498 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Mirror/z_bg_ikana_mirror.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Mirror/z_bg_ikana_mirror.c @@ -26,7 +26,7 @@ void BgIkanaMirror_Wait(BgIkanaMirror* this, PlayState* play); void BgIkanaMirror_SetupEmitLight(BgIkanaMirror* this); void BgIkanaMirror_EmitLight(BgIkanaMirror* this, PlayState* play); -ActorInit Bg_Ikana_Mirror_InitVars = { +ActorProfile Bg_Ikana_Mirror_Profile = { /**/ ACTOR_BG_IKANA_MIRROR, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Ray/z_bg_ikana_ray.c b/src/overlays/actors/ovl_Bg_Ikana_Ray/z_bg_ikana_ray.c index cb63d897fc..b1bbf000e9 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Ray/z_bg_ikana_ray.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Ray/z_bg_ikana_ray.c @@ -21,7 +21,7 @@ void BgIkanaRay_UpdateCheckForActivation(BgIkanaRay* this, PlayState* play); void BgIkanaRay_SetActivated(BgIkanaRay* this); void BgIkanaRay_UpdateActivated(BgIkanaRay* this, PlayState* play); -ActorInit Bg_Ikana_Ray_InitVars = { +ActorProfile Bg_Ikana_Ray_Profile = { /**/ ACTOR_BG_IKANA_RAY, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Rotaryroom/z_bg_ikana_rotaryroom.c b/src/overlays/actors/ovl_Bg_Ikana_Rotaryroom/z_bg_ikana_rotaryroom.c index 57d158ffd6..0495e14c3b 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Rotaryroom/z_bg_ikana_rotaryroom.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Rotaryroom/z_bg_ikana_rotaryroom.c @@ -34,7 +34,7 @@ void func_80B81BA0(Actor* thisx, PlayState* play); void func_80B81DAC(BgIkanaRotaryroom* this); void func_80B81DC8(Actor* thisx, PlayState* play); -ActorInit Bg_Ikana_Rotaryroom_InitVars = { +ActorProfile Bg_Ikana_Rotaryroom_Profile = { /**/ ACTOR_BG_IKANA_ROTARYROOM, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikana_Shutter/z_bg_ikana_shutter.c b/src/overlays/actors/ovl_Bg_Ikana_Shutter/z_bg_ikana_shutter.c index ec1a9d9fb5..28f2864731 100644 --- a/src/overlays/actors/ovl_Bg_Ikana_Shutter/z_bg_ikana_shutter.c +++ b/src/overlays/actors/ovl_Bg_Ikana_Shutter/z_bg_ikana_shutter.c @@ -36,7 +36,7 @@ void func_80BD5BD8(BgIkanaShutter* this, PlayState* play); void BgIkanaShutter_SetupDoNothing(BgIkanaShutter* this); void BgIkanaShutter_DoNothing(BgIkanaShutter* this, PlayState* play); -ActorInit Bg_Ikana_Shutter_InitVars = { +ActorProfile Bg_Ikana_Shutter_Profile = { /**/ ACTOR_BG_IKANA_SHUTTER, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Iknin_Susceil/z_bg_iknin_susceil.c b/src/overlays/actors/ovl_Bg_Iknin_Susceil/z_bg_iknin_susceil.c index 0222694f05..a183cc5feb 100644 --- a/src/overlays/actors/ovl_Bg_Iknin_Susceil/z_bg_iknin_susceil.c +++ b/src/overlays/actors/ovl_Bg_Iknin_Susceil/z_bg_iknin_susceil.c @@ -29,7 +29,7 @@ void func_80C0AD44(BgIkninSusceil* this); void func_80C0AD64(BgIkninSusceil* this, PlayState* play); void func_80C0AE5C(BgIkninSusceil* this, PlayState* play); -ActorInit Bg_Iknin_Susceil_InitVars = { +ActorProfile Bg_Iknin_Susceil_Profile = { /**/ ACTOR_BG_IKNIN_SUSCEIL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ikninside/z_bg_ikninside.c b/src/overlays/actors/ovl_Bg_Ikninside/z_bg_ikninside.c index 2fe68f5d8a..6c7c04e78a 100644 --- a/src/overlays/actors/ovl_Bg_Ikninside/z_bg_ikninside.c +++ b/src/overlays/actors/ovl_Bg_Ikninside/z_bg_ikninside.c @@ -18,7 +18,7 @@ void BgIkninside_Draw(Actor* thisx, PlayState* play); void func_80C072D0(BgIkninside* this, PlayState* play); -ActorInit Bg_Ikninside_InitVars = { +ActorProfile Bg_Ikninside_Profile = { /**/ ACTOR_BG_IKNINSIDE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Iknv_Doukutu/z_bg_iknv_doukutu.c b/src/overlays/actors/ovl_Bg_Iknv_Doukutu/z_bg_iknv_doukutu.c index e17d640a42..e59949452d 100644 --- a/src/overlays/actors/ovl_Bg_Iknv_Doukutu/z_bg_iknv_doukutu.c +++ b/src/overlays/actors/ovl_Bg_Iknv_Doukutu/z_bg_iknv_doukutu.c @@ -27,7 +27,7 @@ void func_80BD7820(Actor* thisx, PlayState* play); void func_80BD78C4(Actor* thisx, PlayState* play); void func_80BD7538(Actor* thisx, PlayState* play); -ActorInit Bg_Iknv_Doukutu_InitVars = { +ActorProfile Bg_Iknv_Doukutu_Profile = { /**/ ACTOR_BG_IKNV_DOUKUTU, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Iknv_Obj/z_bg_iknv_obj.c b/src/overlays/actors/ovl_Bg_Iknv_Obj/z_bg_iknv_obj.c index 61c9c07ee9..6f04cb58f9 100644 --- a/src/overlays/actors/ovl_Bg_Iknv_Obj/z_bg_iknv_obj.c +++ b/src/overlays/actors/ovl_Bg_Iknv_Obj/z_bg_iknv_obj.c @@ -21,7 +21,7 @@ void BgIknvObj_UpdateWaterwheel(BgIknvObj* this, PlayState* play); void BgIknvObj_UpdateRaisedDoor(BgIknvObj* this, PlayState* play); void BgIknvObj_UpdateSakonDoor(BgIknvObj* this, PlayState* play); -ActorInit Bg_Iknv_Obj_InitVars = { +ActorProfile Bg_Iknv_Obj_Profile = { /**/ ACTOR_BG_IKNV_OBJ, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ingate/z_bg_ingate.c b/src/overlays/actors/ovl_Bg_Ingate/z_bg_ingate.c index 8831a4e705..32380a8091 100644 --- a/src/overlays/actors/ovl_Bg_Ingate/z_bg_ingate.c +++ b/src/overlays/actors/ovl_Bg_Ingate/z_bg_ingate.c @@ -26,7 +26,7 @@ void func_809542A0(BgIngate* this, PlayState* play); void func_80954340(BgIngate* this, PlayState* play); void func_809543D4(BgIngate* this, PlayState* play); -ActorInit Bg_Ingate_InitVars = { +ActorProfile Bg_Ingate_Profile = { /**/ ACTOR_BG_INGATE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Inibs_Movebg/z_bg_inibs_movebg.c b/src/overlays/actors/ovl_Bg_Inibs_Movebg/z_bg_inibs_movebg.c index 8108358051..c4c897bdb9 100644 --- a/src/overlays/actors/ovl_Bg_Inibs_Movebg/z_bg_inibs_movebg.c +++ b/src/overlays/actors/ovl_Bg_Inibs_Movebg/z_bg_inibs_movebg.c @@ -15,7 +15,7 @@ void BgInibsMovebg_Init(Actor* thisx, PlayState* play); void BgInibsMovebg_Destroy(Actor* thisx, PlayState* play); void BgInibsMovebg_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Inibs_Movebg_InitVars = { +ActorProfile Bg_Inibs_Movebg_Profile = { /**/ ACTOR_BG_INIBS_MOVEBG, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Keikoku_Saku/z_bg_keikoku_saku.c b/src/overlays/actors/ovl_Bg_Keikoku_Saku/z_bg_keikoku_saku.c index 424c1ff36b..273f759fb2 100644 --- a/src/overlays/actors/ovl_Bg_Keikoku_Saku/z_bg_keikoku_saku.c +++ b/src/overlays/actors/ovl_Bg_Keikoku_Saku/z_bg_keikoku_saku.c @@ -20,7 +20,7 @@ void func_80A5389C(BgKeikokuSaku* this, PlayState* play); void func_80A538E0(BgKeikokuSaku* this, PlayState* play); void func_80A53994(BgKeikokuSaku* this, PlayState* play); -ActorInit Bg_Keikoku_Saku_InitVars = { +ActorProfile Bg_Keikoku_Saku_Profile = { /**/ ACTOR_BG_KEIKOKU_SAKU, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Keikoku_Spr/z_bg_keikoku_spr.c b/src/overlays/actors/ovl_Bg_Keikoku_Spr/z_bg_keikoku_spr.c index 4eefa9110a..c6f8c4f48d 100644 --- a/src/overlays/actors/ovl_Bg_Keikoku_Spr/z_bg_keikoku_spr.c +++ b/src/overlays/actors/ovl_Bg_Keikoku_Spr/z_bg_keikoku_spr.c @@ -16,7 +16,7 @@ void BgKeikokuSpr_Destroy(Actor* thisx, PlayState* play); void BgKeikokuSpr_Update(Actor* thisx, PlayState* play); void BgKeikokuSpr_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Keikoku_Spr_InitVars = { +ActorProfile Bg_Keikoku_Spr_Profile = { /**/ ACTOR_BG_KEIKOKU_SPR, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Kin2_Bombwall/z_bg_kin2_bombwall.c b/src/overlays/actors/ovl_Bg_Kin2_Bombwall/z_bg_kin2_bombwall.c index 430ff4a61a..876b599f03 100644 --- a/src/overlays/actors/ovl_Bg_Kin2_Bombwall/z_bg_kin2_bombwall.c +++ b/src/overlays/actors/ovl_Bg_Kin2_Bombwall/z_bg_kin2_bombwall.c @@ -22,7 +22,7 @@ void BgKin2Bombwall_PlayCutscene(BgKin2Bombwall* this, PlayState* play); void BgKin2Bombwall_SetupEndCutscene(BgKin2Bombwall* this); void BgKin2Bombwall_EndCutscene(BgKin2Bombwall* this, PlayState* play); -ActorInit Bg_Kin2_Bombwall_InitVars = { +ActorProfile Bg_Kin2_Bombwall_Profile = { /**/ ACTOR_BG_KIN2_BOMBWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Kin2_Fence/z_bg_kin2_fence.c b/src/overlays/actors/ovl_Bg_Kin2_Fence/z_bg_kin2_fence.c index d51752cd0b..da6a3ff23c 100644 --- a/src/overlays/actors/ovl_Bg_Kin2_Fence/z_bg_kin2_fence.c +++ b/src/overlays/actors/ovl_Bg_Kin2_Fence/z_bg_kin2_fence.c @@ -27,7 +27,7 @@ void BgKin2Fence_RaiseFence(BgKin2Fence* this, PlayState* play); void BgKin2Fence_SetupDoNothing(BgKin2Fence* this); void BgKin2Fence_DoNothing(BgKin2Fence* this, PlayState* play); -ActorInit Bg_Kin2_Fence_InitVars = { +ActorProfile Bg_Kin2_Fence_Profile = { /**/ ACTOR_BG_KIN2_FENCE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Kin2_Picture/z_bg_kin2_picture.c b/src/overlays/actors/ovl_Bg_Kin2_Picture/z_bg_kin2_picture.c index 3d7a8bd7ca..b652749bbc 100644 --- a/src/overlays/actors/ovl_Bg_Kin2_Picture/z_bg_kin2_picture.c +++ b/src/overlays/actors/ovl_Bg_Kin2_Picture/z_bg_kin2_picture.c @@ -27,7 +27,7 @@ void BgKin2Picture_Fall(BgKin2Picture* this, PlayState* play); void BgKin2Picture_SetupDoNothing(BgKin2Picture* this); void BgKin2Picture_DoNothing(BgKin2Picture* this, PlayState* play); -ActorInit Bg_Kin2_Picture_InitVars = { +ActorProfile Bg_Kin2_Picture_Profile = { /**/ ACTOR_BG_KIN2_PICTURE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Kin2_Shelf/z_bg_kin2_shelf.c b/src/overlays/actors/ovl_Bg_Kin2_Shelf/z_bg_kin2_shelf.c index 52982797ae..2765781dfd 100644 --- a/src/overlays/actors/ovl_Bg_Kin2_Shelf/z_bg_kin2_shelf.c +++ b/src/overlays/actors/ovl_Bg_Kin2_Shelf/z_bg_kin2_shelf.c @@ -23,7 +23,7 @@ void func_80B70230(BgKin2Shelf* this, PlayState* play); void func_80B70498(BgKin2Shelf* this); void func_80B704B4(BgKin2Shelf* this, PlayState* play); -ActorInit Bg_Kin2_Shelf_InitVars = { +ActorProfile Bg_Kin2_Shelf_Profile = { /**/ ACTOR_BG_KIN2_SHELF, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Ladder/z_bg_ladder.c b/src/overlays/actors/ovl_Bg_Ladder/z_bg_ladder.c index c4c6aaa664..0483c00216 100644 --- a/src/overlays/actors/ovl_Bg_Ladder/z_bg_ladder.c +++ b/src/overlays/actors/ovl_Bg_Ladder/z_bg_ladder.c @@ -20,7 +20,7 @@ void BgLadder_StartCutscene(BgLadder* this, PlayState* play); void BgLadder_FadeIn(BgLadder* this, PlayState* play); void BgLadder_DoNothing(BgLadder* this, PlayState* play); -ActorInit Bg_Ladder_InitVars = { +ActorProfile Bg_Ladder_Profile = { /**/ ACTOR_BG_LADDER, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Last_Bwall/z_bg_last_bwall.c b/src/overlays/actors/ovl_Bg_Last_Bwall/z_bg_last_bwall.c index 8e5d4bdbf7..f7fcccef4b 100644 --- a/src/overlays/actors/ovl_Bg_Last_Bwall/z_bg_last_bwall.c +++ b/src/overlays/actors/ovl_Bg_Last_Bwall/z_bg_last_bwall.c @@ -37,7 +37,7 @@ void func_80C18884(BgLastBwall* this, PlayState* play); void func_80C188C4(BgLastBwall* this, PlayState* play); void BgLastBwall_DoNothing(BgLastBwall* this, PlayState* play); -ActorInit Bg_Last_Bwall_InitVars = { +ActorProfile Bg_Last_Bwall_Profile = { /**/ ACTOR_BG_LAST_BWALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Lbfshot/z_bg_lbfshot.c b/src/overlays/actors/ovl_Bg_Lbfshot/z_bg_lbfshot.c index df944f7d11..fb43f4db75 100644 --- a/src/overlays/actors/ovl_Bg_Lbfshot/z_bg_lbfshot.c +++ b/src/overlays/actors/ovl_Bg_Lbfshot/z_bg_lbfshot.c @@ -15,7 +15,7 @@ void BgLbfshot_Init(Actor* thisx, PlayState* play); void BgLbfshot_Destroy(Actor* thisx, PlayState* play); void BgLbfshot_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Lbfshot_InitVars = { +ActorProfile Bg_Lbfshot_Profile = { /**/ ACTOR_BG_LBFSHOT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Lotus/z_bg_lotus.c b/src/overlays/actors/ovl_Bg_Lotus/z_bg_lotus.c index d806753645..1d4fbdc4c8 100644 --- a/src/overlays/actors/ovl_Bg_Lotus/z_bg_lotus.c +++ b/src/overlays/actors/ovl_Bg_Lotus/z_bg_lotus.c @@ -14,7 +14,7 @@ void func_80AD68DC(BgLotus* this, PlayState* play); void func_80AD6A88(BgLotus* this, PlayState* play); void func_80AD6B68(BgLotus* this, PlayState* play); -ActorInit Bg_Lotus_InitVars = { +ActorProfile Bg_Lotus_Profile = { /**/ ACTOR_BG_LOTUS, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Market_Step/z_bg_market_step.c b/src/overlays/actors/ovl_Bg_Market_Step/z_bg_market_step.c index de965b1204..28f879c29f 100644 --- a/src/overlays/actors/ovl_Bg_Market_Step/z_bg_market_step.c +++ b/src/overlays/actors/ovl_Bg_Market_Step/z_bg_market_step.c @@ -14,7 +14,7 @@ void BgMarketStep_Init(Actor* thisx, PlayState* play); void BgMarketStep_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Market_Step_InitVars = { +ActorProfile Bg_Market_Step_Profile = { /**/ ACTOR_BG_MARKET_STEP, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Mbar_Chair/z_bg_mbar_chair.c b/src/overlays/actors/ovl_Bg_Mbar_Chair/z_bg_mbar_chair.c index 094490d4fa..b92a2703ca 100644 --- a/src/overlays/actors/ovl_Bg_Mbar_Chair/z_bg_mbar_chair.c +++ b/src/overlays/actors/ovl_Bg_Mbar_Chair/z_bg_mbar_chair.c @@ -16,7 +16,7 @@ void BgMbarChair_Destroy(Actor* thisx, PlayState* play); void BgMbarChair_Update(Actor* thisx, PlayState* play); void BgMbarChair_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Mbar_Chair_InitVars = { +ActorProfile Bg_Mbar_Chair_Profile = { /**/ ACTOR_BG_MBAR_CHAIR, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Numa_Hana/z_bg_numa_hana.c b/src/overlays/actors/ovl_Bg_Numa_Hana/z_bg_numa_hana.c index fbb9efdfe4..28831db003 100644 --- a/src/overlays/actors/ovl_Bg_Numa_Hana/z_bg_numa_hana.c +++ b/src/overlays/actors/ovl_Bg_Numa_Hana/z_bg_numa_hana.c @@ -30,7 +30,7 @@ void BgNumaHana_RaiseFlower(BgNumaHana* this, PlayState* play); void BgNumaHana_SetupOpenedIdle(BgNumaHana* this); void BgNumaHana_OpenedIdle(BgNumaHana* this, PlayState* play); -ActorInit Bg_Numa_Hana_InitVars = { +ActorProfile Bg_Numa_Hana_Profile = { /**/ ACTOR_BG_NUMA_HANA, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Open_Shutter/z_bg_open_shutter.c b/src/overlays/actors/ovl_Bg_Open_Shutter/z_bg_open_shutter.c index 086562e633..63edc4c6f3 100644 --- a/src/overlays/actors/ovl_Bg_Open_Shutter/z_bg_open_shutter.c +++ b/src/overlays/actors/ovl_Bg_Open_Shutter/z_bg_open_shutter.c @@ -27,7 +27,7 @@ typedef enum { /* 2 */ BGOPENSHUTTER_DOOR_CLOSED } BGOpenShutterDoorState; -ActorInit Bg_Open_Shutter_InitVars = { +ActorProfile Bg_Open_Shutter_Profile = { /**/ ACTOR_BG_OPEN_SHUTTER, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Open_Spot/z_bg_open_spot.c b/src/overlays/actors/ovl_Bg_Open_Spot/z_bg_open_spot.c index 6c55a115c5..466ebd15ba 100644 --- a/src/overlays/actors/ovl_Bg_Open_Spot/z_bg_open_spot.c +++ b/src/overlays/actors/ovl_Bg_Open_Spot/z_bg_open_spot.c @@ -16,7 +16,7 @@ void BgOpenSpot_Destroy(Actor* thisx, PlayState* play); void BgOpenSpot_Update(Actor* thisx, PlayState* play); void BgOpenSpot_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Open_Spot_InitVars = { +ActorProfile Bg_Open_Spot_Profile = { /**/ ACTOR_BG_OPEN_SPOT, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Sinkai_Kabe/z_bg_sinkai_kabe.c b/src/overlays/actors/ovl_Bg_Sinkai_Kabe/z_bg_sinkai_kabe.c index 9972446f2d..6c57ead363 100644 --- a/src/overlays/actors/ovl_Bg_Sinkai_Kabe/z_bg_sinkai_kabe.c +++ b/src/overlays/actors/ovl_Bg_Sinkai_Kabe/z_bg_sinkai_kabe.c @@ -25,7 +25,7 @@ void BgSinkaiKabe_Update(Actor* thisx, PlayState* play); void BgSinkaiKabe_WaitForPlayer(BgSinkaiKabe* this, PlayState* play); -ActorInit Bg_Sinkai_Kabe_InitVars = { +ActorProfile Bg_Sinkai_Kabe_Profile = { /**/ ACTOR_BG_SINKAI_KABE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Spdweb/z_bg_spdweb.c b/src/overlays/actors/ovl_Bg_Spdweb/z_bg_spdweb.c index 1616bb5aca..6a2c596f4a 100644 --- a/src/overlays/actors/ovl_Bg_Spdweb/z_bg_spdweb.c +++ b/src/overlays/actors/ovl_Bg_Spdweb/z_bg_spdweb.c @@ -24,7 +24,7 @@ void func_809CEBC0(BgSpdweb* this, PlayState* play); void func_809CEE74(BgSpdweb* this); void func_809CEEAC(BgSpdweb* this, PlayState* play); -ActorInit Bg_Spdweb_InitVars = { +ActorProfile Bg_Spdweb_Profile = { /**/ ACTOR_BG_SPDWEB, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Spout_Fire/z_bg_spout_fire.c b/src/overlays/actors/ovl_Bg_Spout_Fire/z_bg_spout_fire.c index ab13e740ce..2aff0161ce 100644 --- a/src/overlays/actors/ovl_Bg_Spout_Fire/z_bg_spout_fire.c +++ b/src/overlays/actors/ovl_Bg_Spout_Fire/z_bg_spout_fire.c @@ -22,7 +22,7 @@ void func_80A60CDC(BgSpoutFire* this, PlayState* play); void func_80A60D10(BgSpoutFire* this, PlayState* play); void func_80A60E08(BgSpoutFire* this, PlayState* play); -ActorInit Bg_Spout_Fire_InitVars = { +ActorProfile Bg_Spout_Fire_Profile = { /**/ ACTOR_BG_SPOUT_FIRE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Tobira01/z_bg_tobira01.c b/src/overlays/actors/ovl_Bg_Tobira01/z_bg_tobira01.c index 534c4c1274..3d13b7a32a 100644 --- a/src/overlays/actors/ovl_Bg_Tobira01/z_bg_tobira01.c +++ b/src/overlays/actors/ovl_Bg_Tobira01/z_bg_tobira01.c @@ -16,7 +16,7 @@ void BgTobira01_Destroy(Actor* thisx, PlayState* play); void BgTobira01_Update(Actor* thisx, PlayState* play); void BgTobira01_Draw(Actor* thisx, PlayState* play); -ActorInit Bg_Tobira01_InitVars = { +ActorProfile Bg_Tobira01_Profile = { /**/ ACTOR_BG_TOBIRA01, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Bg_Umajump/z_bg_umajump.c b/src/overlays/actors/ovl_Bg_Umajump/z_bg_umajump.c index 6c2fd73a53..9f53e650eb 100644 --- a/src/overlays/actors/ovl_Bg_Umajump/z_bg_umajump.c +++ b/src/overlays/actors/ovl_Bg_Umajump/z_bg_umajump.c @@ -18,7 +18,7 @@ void BgUmajump_Draw(Actor* thisx, PlayState* play); void func_8091A5A0(Actor* thisx, PlayState* play); -ActorInit Bg_Umajump_InitVars = { +ActorProfile Bg_Umajump_Profile = { /**/ ACTOR_BG_UMAJUMP, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_01/z_boss_01.c b/src/overlays/actors/ovl_Boss_01/z_boss_01.c index 623f7d066f..3c8e19b292 100644 --- a/src/overlays/actors/ovl_Boss_01/z_boss_01.c +++ b/src/overlays/actors/ovl_Boss_01/z_boss_01.c @@ -636,7 +636,7 @@ static ColliderCylinderInit sBugATColliderCylinderInit = { { 8, 15, 10, { 0, 0, 0 } }, }; -ActorInit Boss_01_InitVars = { +ActorProfile Boss_01_Profile = { /**/ ACTOR_BOSS_01, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_02/z_boss_02.c b/src/overlays/actors/ovl_Boss_02/z_boss_02.c index 6a003d6f8a..919c3ed7ae 100644 --- a/src/overlays/actors/ovl_Boss_02/z_boss_02.c +++ b/src/overlays/actors/ovl_Boss_02/z_boss_02.c @@ -143,7 +143,7 @@ static DamageTable sRedTwinmoldDamageTable = { /* Powder Keg */ DMG_ENTRY(1, 0xF), }; -ActorInit Boss_02_InitVars = { +ActorProfile Boss_02_Profile = { /**/ ACTOR_BOSS_02, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_03/z_boss_03.c b/src/overlays/actors/ovl_Boss_03/z_boss_03.c index e953105218..a159531610 100644 --- a/src/overlays/actors/ovl_Boss_03/z_boss_03.c +++ b/src/overlays/actors/ovl_Boss_03/z_boss_03.c @@ -276,7 +276,7 @@ Actor* Boss03_FindActorDblueMovebg(PlayState* play) { /* Start of Gyorg's Init and actionFuncs section */ -ActorInit Boss_03_InitVars = { +ActorProfile Boss_03_Profile = { /**/ ACTOR_BOSS_03, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_04/z_boss_04.c b/src/overlays/actors/ovl_Boss_04/z_boss_04.c index 3c2e437709..96390c0ce3 100644 --- a/src/overlays/actors/ovl_Boss_04/z_boss_04.c +++ b/src/overlays/actors/ovl_Boss_04/z_boss_04.c @@ -63,7 +63,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, 0xF), }; -ActorInit Boss_04_InitVars = { +ActorProfile Boss_04_Profile = { /**/ ACTOR_BOSS_04, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_05/z_boss_05.c b/src/overlays/actors/ovl_Boss_05/z_boss_05.c index 6fed5a1659..d0832160b1 100644 --- a/src/overlays/actors/ovl_Boss_05/z_boss_05.c +++ b/src/overlays/actors/ovl_Boss_05/z_boss_05.c @@ -329,7 +329,7 @@ static DamageTable sWalkingHeadDamageTable = { /* Powder Keg */ DMG_ENTRY(1, BIO_BABA_DMGEFF_DAMAGE), }; -ActorInit Boss_05_InitVars = { +ActorProfile Boss_05_Profile = { /**/ ACTOR_BOSS_05, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_06/z_boss_06.c b/src/overlays/actors/ovl_Boss_06/z_boss_06.c index 654162653d..fc44390121 100644 --- a/src/overlays/actors/ovl_Boss_06/z_boss_06.c +++ b/src/overlays/actors/ovl_Boss_06/z_boss_06.c @@ -78,7 +78,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(0, BOSS06_DMGEFF_F), }; -ActorInit Boss_06_InitVars = { +ActorProfile Boss_06_Profile = { /**/ ACTOR_BOSS_06, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_07/z_boss_07.c b/src/overlays/actors/ovl_Boss_07/z_boss_07.c index e2ca1d51ce..5a1fdda328 100644 --- a/src/overlays/actors/ovl_Boss_07/z_boss_07.c +++ b/src/overlays/actors/ovl_Boss_07/z_boss_07.c @@ -234,7 +234,7 @@ static DamageTable D_80A07A00 = { /* Powder Keg */ DMG_ENTRY(2, 0xB), }; -ActorInit Boss_07_InitVars = { +ActorProfile Boss_07_Profile = { /**/ ACTOR_BOSS_07, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Boss_Hakugin/z_boss_hakugin.c b/src/overlays/actors/ovl_Boss_Hakugin/z_boss_hakugin.c index 221876f118..8906591250 100644 --- a/src/overlays/actors/ovl_Boss_Hakugin/z_boss_hakugin.c +++ b/src/overlays/actors/ovl_Boss_Hakugin/z_boss_hakugin.c @@ -101,7 +101,7 @@ typedef enum GohtShadowSize { /* 3 */ GOHT_SHADOW_SIZE_SMALL } GohtShadowSize; -ActorInit Boss_Hakugin_InitVars = { +ActorProfile Boss_Hakugin_Profile = { /**/ ACTOR_BOSS_HAKUGIN, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Effect/z_demo_effect.c b/src/overlays/actors/ovl_Demo_Effect/z_demo_effect.c index f06703df73..963c237e9d 100644 --- a/src/overlays/actors/ovl_Demo_Effect/z_demo_effect.c +++ b/src/overlays/actors/ovl_Demo_Effect/z_demo_effect.c @@ -24,7 +24,7 @@ void DemoEffect_ExpandLight(DemoEffect* this, PlayState* play); void DemoEffect_DrawTimewarp(Actor* thisx, PlayState* play); void DemoEffect_DrawLight(Actor* thisx, PlayState* play2); -ActorInit Demo_Effect_InitVars = { +ActorProfile Demo_Effect_Profile = { /**/ ACTOR_DEMO_EFFECT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Getitem/z_demo_getitem.c b/src/overlays/actors/ovl_Demo_Getitem/z_demo_getitem.c index 8a24f423ce..24c6fadf87 100644 --- a/src/overlays/actors/ovl_Demo_Getitem/z_demo_getitem.c +++ b/src/overlays/actors/ovl_Demo_Getitem/z_demo_getitem.c @@ -18,7 +18,7 @@ void DemoGetitem_Wait(DemoGetitem* this, PlayState* play); void DemoGetitem_PerformCutsceneActions(DemoGetitem* this, PlayState* play); void DemoGetitem_Draw(Actor* thisx, PlayState* play); -ActorInit Demo_Getitem_InitVars = { +ActorProfile Demo_Getitem_Profile = { /**/ ACTOR_DEMO_GETITEM, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Kankyo/z_demo_kankyo.c b/src/overlays/actors/ovl_Demo_Kankyo/z_demo_kankyo.c index 7654718f83..1f5e64ec23 100644 --- a/src/overlays/actors/ovl_Demo_Kankyo/z_demo_kankyo.c +++ b/src/overlays/actors/ovl_Demo_Kankyo/z_demo_kankyo.c @@ -22,7 +22,7 @@ void DemoKakyo_MoonSparklesActionFunc(DemoKankyo* this, PlayState* play); static u8 sLostWoodsSparklesMutex = false; // make sure only one can exist at once static s16 sLostWoodsSkyFishParticleNum = 0; -ActorInit Demo_Kankyo_InitVars = { +ActorProfile Demo_Kankyo_Profile = { /**/ ACTOR_DEMO_KANKYO, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c b/src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c index 798de67563..9329ed8616 100644 --- a/src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c +++ b/src/overlays/actors/ovl_Demo_Moonend/z_demo_moonend.c @@ -20,7 +20,7 @@ void func_80C17B60(DemoMoonend* this, PlayState* play); void func_80C17C48(DemoMoonend* this, PlayState* play); void func_80C17FCC(Actor* thisx, PlayState* play); -ActorInit Demo_Moonend_InitVars = { +ActorProfile Demo_Moonend_Profile = { /**/ ACTOR_DEMO_MOONEND, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Shd/z_demo_shd.c b/src/overlays/actors/ovl_Demo_Shd/z_demo_shd.c index 4f26c9132c..8476f02fd6 100644 --- a/src/overlays/actors/ovl_Demo_Shd/z_demo_shd.c +++ b/src/overlays/actors/ovl_Demo_Shd/z_demo_shd.c @@ -15,7 +15,7 @@ void DemoShd_Destroy(Actor* thisx, PlayState* play); void DemoShd_Update(Actor* thisx, PlayState* play); void DemoShd_Draw(Actor* thisx, PlayState* play); -ActorInit Demo_Shd_InitVars = { +ActorProfile Demo_Shd_Profile = { /**/ ACTOR_DEMO_SHD, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c b/src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c index 4a856333d2..d487425709 100644 --- a/src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c +++ b/src/overlays/actors/ovl_Demo_Syoten/z_demo_syoten.c @@ -25,7 +25,7 @@ void func_80C17008(DemoSyoten* this, PlayState* play); void func_80C173B4(Actor* thisx, PlayState* play); void func_80C17690(Actor* thisx, PlayState* play); -ActorInit Demo_Syoten_InitVars = { +ActorProfile Demo_Syoten_Profile = { /**/ ACTOR_DEMO_SYOTEN, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Demo_Tre_Lgt/z_demo_tre_lgt.c b/src/overlays/actors/ovl_Demo_Tre_Lgt/z_demo_tre_lgt.c index 192318d229..43fb561013 100644 --- a/src/overlays/actors/ovl_Demo_Tre_Lgt/z_demo_tre_lgt.c +++ b/src/overlays/actors/ovl_Demo_Tre_Lgt/z_demo_tre_lgt.c @@ -35,7 +35,7 @@ static DemoTreLgtInfo D_808E1490[2] = { { 1.0f, 136.0f, 220.0f, 50.0f }, }; -ActorInit Demo_Tre_Lgt_InitVars = { +ActorProfile Demo_Tre_Lgt_Profile = { /**/ ACTOR_DEMO_TRE_LGT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Ah/z_dm_ah.c b/src/overlays/actors/ovl_Dm_Ah/z_dm_ah.c index 434b969c35..dc0683dbed 100644 --- a/src/overlays/actors/ovl_Dm_Ah/z_dm_ah.c +++ b/src/overlays/actors/ovl_Dm_Ah/z_dm_ah.c @@ -15,7 +15,7 @@ void DmAh_Destroy(Actor* thisx, PlayState* play); void DmAh_Update(Actor* thisx, PlayState* play); void DmAh_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Ah_InitVars = { +ActorProfile Dm_Ah_Profile = { /**/ ACTOR_DM_AH, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Al/z_dm_al.c b/src/overlays/actors/ovl_Dm_Al/z_dm_al.c index b8fdf7e882..e0b5c421f6 100644 --- a/src/overlays/actors/ovl_Dm_Al/z_dm_al.c +++ b/src/overlays/actors/ovl_Dm_Al/z_dm_al.c @@ -15,7 +15,7 @@ void DmAl_Destroy(Actor* thisx, PlayState* play); void DmAl_Update(Actor* thisx, PlayState* play); void DmAl_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Al_InitVars = { +ActorProfile Dm_Al_Profile = { /**/ ACTOR_EN_AL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_An/z_dm_an.c b/src/overlays/actors/ovl_Dm_An/z_dm_an.c index 954b520255..a381138a18 100644 --- a/src/overlays/actors/ovl_Dm_An/z_dm_an.c +++ b/src/overlays/actors/ovl_Dm_An/z_dm_an.c @@ -21,7 +21,7 @@ void DmAn_HandleCouplesMaskCs(DmAn* this, PlayState* play); void DmAn_DoNothing(DmAn* this, PlayState* play); void DmAn_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_An_InitVars = { +ActorProfile Dm_An_Profile = { /**/ ACTOR_DM_AN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Bal/z_dm_bal.c b/src/overlays/actors/ovl_Dm_Bal/z_dm_bal.c index 43bd0f5894..b6af613d02 100644 --- a/src/overlays/actors/ovl_Dm_Bal/z_dm_bal.c +++ b/src/overlays/actors/ovl_Dm_Bal/z_dm_bal.c @@ -18,7 +18,7 @@ void DmBal_Draw(Actor* thisx, PlayState* play); void DmBal_SetupDoNothing(DmBal* this); void DmBal_DoNothing(DmBal* this, PlayState* play); -ActorInit Dm_Bal_InitVars = { +ActorProfile Dm_Bal_Profile = { /**/ ACTOR_DM_BAL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char00/z_dm_char00.c b/src/overlays/actors/ovl_Dm_Char00/z_dm_char00.c index a9ed5434bc..008bfd8a11 100644 --- a/src/overlays/actors/ovl_Dm_Char00/z_dm_char00.c +++ b/src/overlays/actors/ovl_Dm_Char00/z_dm_char00.c @@ -20,7 +20,7 @@ void DmChar00_Draw(Actor* thisx, PlayState* play2); void func_80AA67F8(DmChar00* this, PlayState* play); void func_80AA695C(DmChar00* this, PlayState* play); -ActorInit Dm_Char00_InitVars = { +ActorProfile Dm_Char00_Profile = { /**/ ACTOR_DM_CHAR00, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char01/z_dm_char01.c b/src/overlays/actors/ovl_Dm_Char01/z_dm_char01.c index 8c382212a7..36d7906004 100644 --- a/src/overlays/actors/ovl_Dm_Char01/z_dm_char01.c +++ b/src/overlays/actors/ovl_Dm_Char01/z_dm_char01.c @@ -35,7 +35,7 @@ s16 D_80AAAE26; #include "assets/overlays/ovl_Dm_Char01/ovl_Dm_Char01.c" -ActorInit Dm_Char01_InitVars = { +ActorProfile Dm_Char01_Profile = { /**/ ACTOR_DM_CHAR01, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char02/z_dm_char02.c b/src/overlays/actors/ovl_Dm_Char02/z_dm_char02.c index 34130a23cf..de54b6ce12 100644 --- a/src/overlays/actors/ovl_Dm_Char02/z_dm_char02.c +++ b/src/overlays/actors/ovl_Dm_Char02/z_dm_char02.c @@ -18,7 +18,7 @@ void DmChar02_Draw(Actor* thisx, PlayState* play); void DmChar02_HandleCutscene(DmChar02* this, PlayState* play); -ActorInit Dm_Char02_InitVars = { +ActorProfile Dm_Char02_Profile = { /**/ ACTOR_DM_CHAR02, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char03/z_dm_char03.c b/src/overlays/actors/ovl_Dm_Char03/z_dm_char03.c index 408218cdd0..4b881e12f9 100644 --- a/src/overlays/actors/ovl_Dm_Char03/z_dm_char03.c +++ b/src/overlays/actors/ovl_Dm_Char03/z_dm_char03.c @@ -20,7 +20,7 @@ void func_80AAB644(DmChar03* this, PlayState* play); void DmChar03_DoNothing(DmChar03* this, PlayState* play); void func_80AABA84(PlayState* play, DmChar03* this); -ActorInit Dm_Char03_InitVars = { +ActorProfile Dm_Char03_Profile = { /**/ ACTOR_DM_CHAR03, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char04/z_dm_char04.c b/src/overlays/actors/ovl_Dm_Char04/z_dm_char04.c index c7cf571cdd..a957b86069 100644 --- a/src/overlays/actors/ovl_Dm_Char04/z_dm_char04.c +++ b/src/overlays/actors/ovl_Dm_Char04/z_dm_char04.c @@ -18,7 +18,7 @@ void DmChar04_Draw(Actor* thisx, PlayState* play); void DmChar04_HandleCutscene(DmChar04* this, PlayState* play); -ActorInit Dm_Char04_InitVars = { +ActorProfile Dm_Char04_Profile = { /**/ ACTOR_DM_CHAR04, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char05/z_dm_char05.c b/src/overlays/actors/ovl_Dm_Char05/z_dm_char05.c index 8c36d980fb..ac12b6676c 100644 --- a/src/overlays/actors/ovl_Dm_Char05/z_dm_char05.c +++ b/src/overlays/actors/ovl_Dm_Char05/z_dm_char05.c @@ -35,7 +35,7 @@ void func_80AADF54(PlayState* play, DmChar05* this); void func_80AAE030(PlayState* play, DmChar05* this); void func_80AAE114(PlayState* play, DmChar05* this); -ActorInit Dm_Char05_InitVars = { +ActorProfile Dm_Char05_Profile = { /**/ ACTOR_DM_CHAR05, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char06/z_dm_char06.c b/src/overlays/actors/ovl_Dm_Char06/z_dm_char06.c index 1fec6458fe..76f63f4db7 100644 --- a/src/overlays/actors/ovl_Dm_Char06/z_dm_char06.c +++ b/src/overlays/actors/ovl_Dm_Char06/z_dm_char06.c @@ -18,7 +18,7 @@ void DmChar06_Draw(Actor* thisx, PlayState* play); void DmChar06_SetupAction(DmChar06* this, DmChar06ActionFunc actionFunc); void DmChar06_HandleCutscene(DmChar06* this, PlayState* play); -ActorInit Dm_Char06_InitVars = { +ActorProfile Dm_Char06_Profile = { /**/ ACTOR_DM_CHAR06, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char07/z_dm_char07.c b/src/overlays/actors/ovl_Dm_Char07/z_dm_char07.c index 82bc8a213a..4a535156ba 100644 --- a/src/overlays/actors/ovl_Dm_Char07/z_dm_char07.c +++ b/src/overlays/actors/ovl_Dm_Char07/z_dm_char07.c @@ -18,7 +18,7 @@ void DmChar07_Draw(Actor* thisx, PlayState* play); void DmChar07_DoNothing(DmChar07* this, PlayState* play); -ActorInit Dm_Char07_InitVars = { +ActorProfile Dm_Char07_Profile = { /**/ ACTOR_DM_CHAR07, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char08/z_dm_char08.c b/src/overlays/actors/ovl_Dm_Char08/z_dm_char08.c index 84e7a45a9b..d5e1dbec29 100644 --- a/src/overlays/actors/ovl_Dm_Char08/z_dm_char08.c +++ b/src/overlays/actors/ovl_Dm_Char08/z_dm_char08.c @@ -36,7 +36,7 @@ typedef enum { /* 5 */ TURTLE_EYEMODE_LOOK_RIGHT } TurtleEyeMode; -ActorInit Dm_Char08_InitVars = { +ActorProfile Dm_Char08_Profile = { /**/ ACTOR_DM_CHAR08, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Char09/z_dm_char09.c b/src/overlays/actors/ovl_Dm_Char09/z_dm_char09.c index 430f047947..35d186a2a6 100644 --- a/src/overlays/actors/ovl_Dm_Char09/z_dm_char09.c +++ b/src/overlays/actors/ovl_Dm_Char09/z_dm_char09.c @@ -18,7 +18,7 @@ void DmChar09_Draw(Actor* thisx, PlayState* play); void DmChar09_DoNothing(DmChar09* this, PlayState* play); void DmChar09_HandleCutscene(DmChar09* this, PlayState* play); -ActorInit Dm_Char09_InitVars = { +ActorProfile Dm_Char09_Profile = { /**/ ACTOR_DM_CHAR09, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Gm/z_dm_gm.c b/src/overlays/actors/ovl_Dm_Gm/z_dm_gm.c index d2bb209867..b3cb96edcb 100644 --- a/src/overlays/actors/ovl_Dm_Gm/z_dm_gm.c +++ b/src/overlays/actors/ovl_Dm_Gm/z_dm_gm.c @@ -21,7 +21,7 @@ void DmGm_HandleCouplesMaskCs(DmGm* this, PlayState* play); void DmGm_DoNothing(DmGm* this, PlayState* play); void DmGm_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Gm_InitVars = { +ActorProfile Dm_Gm_Profile = { /**/ ACTOR_DM_GM, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Hina/z_dm_hina.c b/src/overlays/actors/ovl_Dm_Hina/z_dm_hina.c index ba3e529aff..12aa75666f 100644 --- a/src/overlays/actors/ovl_Dm_Hina/z_dm_hina.c +++ b/src/overlays/actors/ovl_Dm_Hina/z_dm_hina.c @@ -21,7 +21,7 @@ void func_80A1F56C(DmHina* this, PlayState* play); void func_80A1F5AC(DmHina* this, PlayState* play); void func_80A1F63C(DmHina* this, PlayState* play); -ActorInit Dm_Hina_InitVars = { +ActorProfile Dm_Hina_Profile = { /**/ ACTOR_DM_HINA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Nb/z_dm_nb.c b/src/overlays/actors/ovl_Dm_Nb/z_dm_nb.c index 9a3d331b07..f306225b04 100644 --- a/src/overlays/actors/ovl_Dm_Nb/z_dm_nb.c +++ b/src/overlays/actors/ovl_Dm_Nb/z_dm_nb.c @@ -15,7 +15,7 @@ void DmNb_Destroy(Actor* thisx, PlayState* play); void DmNb_Update(Actor* thisx, PlayState* play); void DmNb_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Nb_InitVars = { +ActorProfile Dm_Nb_Profile = { /**/ ACTOR_DM_NB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Opstage/z_dm_opstage.c b/src/overlays/actors/ovl_Dm_Opstage/z_dm_opstage.c index c7f28f991f..2155f5d00f 100644 --- a/src/overlays/actors/ovl_Dm_Opstage/z_dm_opstage.c +++ b/src/overlays/actors/ovl_Dm_Opstage/z_dm_opstage.c @@ -18,7 +18,7 @@ void DmOpstage_Draw(Actor* thisx, PlayState* play); void DmOpstage_HandleCutscene(DmOpstage* this, PlayState* play); -ActorInit Dm_Opstage_InitVars = { +ActorProfile Dm_Opstage_Profile = { /**/ ACTOR_DM_OPSTAGE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Ravine/z_dm_ravine.c b/src/overlays/actors/ovl_Dm_Ravine/z_dm_ravine.c index f76fc0caab..6219eaf431 100644 --- a/src/overlays/actors/ovl_Dm_Ravine/z_dm_ravine.c +++ b/src/overlays/actors/ovl_Dm_Ravine/z_dm_ravine.c @@ -16,7 +16,7 @@ void DmRavine_DoNothing(DmRavine* this, PlayState* play); void DmRavine_Update(Actor* thisx, PlayState* play); void DmRavine_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Ravine_InitVars = { +ActorProfile Dm_Ravine_Profile = { /**/ ACTOR_DM_RAVINE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Sa/z_dm_sa.c b/src/overlays/actors/ovl_Dm_Sa/z_dm_sa.c index 3ffa7d9fdb..256ffbd1d3 100644 --- a/src/overlays/actors/ovl_Dm_Sa/z_dm_sa.c +++ b/src/overlays/actors/ovl_Dm_Sa/z_dm_sa.c @@ -18,7 +18,7 @@ void DmSa_Draw(Actor* thisx, PlayState* play); void DmSa_DoNothing(DmSa* this, PlayState* play); -ActorInit Dm_Sa_InitVars = { +ActorProfile Dm_Sa_Profile = { /**/ ACTOR_DM_SA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Statue/z_dm_statue.c b/src/overlays/actors/ovl_Dm_Statue/z_dm_statue.c index feedab4bf1..3e7cc896c1 100644 --- a/src/overlays/actors/ovl_Dm_Statue/z_dm_statue.c +++ b/src/overlays/actors/ovl_Dm_Statue/z_dm_statue.c @@ -16,7 +16,7 @@ void DmStatue_Destroy(Actor* thisx, PlayState* play); void DmStatue_Update(Actor* thisx, PlayState* play); void DmStatue_Draw(Actor* thisx, PlayState* play); -ActorInit Dm_Statue_InitVars = { +ActorProfile Dm_Statue_Profile = { /**/ ACTOR_DM_STATUE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Stk/z_dm_stk.c b/src/overlays/actors/ovl_Dm_Stk/z_dm_stk.c index ff89937be8..1c7eb0d8d8 100644 --- a/src/overlays/actors/ovl_Dm_Stk/z_dm_stk.c +++ b/src/overlays/actors/ovl_Dm_Stk/z_dm_stk.c @@ -151,7 +151,7 @@ typedef enum { /* 4 */ SK_DEKU_PIPES_CS_STATE_END } SkullKidDekuPipesCutsceneState; -ActorInit Dm_Stk_InitVars = { +ActorProfile Dm_Stk_Profile = { /**/ ACTOR_DM_STK, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Tag/z_dm_tag.c b/src/overlays/actors/ovl_Dm_Tag/z_dm_tag.c index 6b07d8856a..7e79c9d100 100644 --- a/src/overlays/actors/ovl_Dm_Tag/z_dm_tag.c +++ b/src/overlays/actors/ovl_Dm_Tag/z_dm_tag.c @@ -18,7 +18,7 @@ void func_80C229AC(DmTag* this, PlayState* play); void DmTag_DoNothing(DmTag* this, PlayState* play); void func_80C229FC(DmTag* this, PlayState* play); -ActorInit Dm_Tag_InitVars = { +ActorProfile Dm_Tag_Profile = { /**/ ACTOR_DM_TAG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Tsg/z_dm_tsg.c b/src/overlays/actors/ovl_Dm_Tsg/z_dm_tsg.c index 97a2df7549..5b7f2fae74 100644 --- a/src/overlays/actors/ovl_Dm_Tsg/z_dm_tsg.c +++ b/src/overlays/actors/ovl_Dm_Tsg/z_dm_tsg.c @@ -16,7 +16,7 @@ void DmTsg_Destroy(Actor* thisx, PlayState* play); void DmTsg_Update(Actor* thisx, PlayState* play); void DmTsg_Draw(Actor* thisx, PlayState* play2); -ActorInit Dm_Tsg_InitVars = { +ActorProfile Dm_Tsg_Profile = { /**/ ACTOR_DM_TSG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Dm_Zl/z_dm_zl.c b/src/overlays/actors/ovl_Dm_Zl/z_dm_zl.c index 9fd2b9741d..8388b862d1 100644 --- a/src/overlays/actors/ovl_Dm_Zl/z_dm_zl.c +++ b/src/overlays/actors/ovl_Dm_Zl/z_dm_zl.c @@ -17,7 +17,7 @@ void DmZl_Draw(Actor* thisx, PlayState* play); void DmZl_DoNothing(DmZl* this, PlayState* play); -ActorInit Dm_Zl_InitVars = { +ActorProfile Dm_Zl_Profile = { /**/ ACTOR_DM_ZL, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Door_Ana/z_door_ana.c b/src/overlays/actors/ovl_Door_Ana/z_door_ana.c index 6f73c4f973..474ecdb13d 100644 --- a/src/overlays/actors/ovl_Door_Ana/z_door_ana.c +++ b/src/overlays/actors/ovl_Door_Ana/z_door_ana.c @@ -20,7 +20,7 @@ void DoorAna_WaitClosed(DoorAna* this, PlayState* play); void DoorAna_WaitOpen(DoorAna* this, PlayState* play); void DoorAna_GrabLink(DoorAna* this, PlayState* play); -ActorInit Door_Ana_InitVars = { +ActorProfile Door_Ana_Profile = { /**/ ACTOR_DOOR_ANA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Door_Shutter/z_door_shutter.c b/src/overlays/actors/ovl_Door_Shutter/z_door_shutter.c index 57d2d7dc0d..ec2c104c90 100644 --- a/src/overlays/actors/ovl_Door_Shutter/z_door_shutter.c +++ b/src/overlays/actors/ovl_Door_Shutter/z_door_shutter.c @@ -40,7 +40,7 @@ void func_808A1B48(DoorShutter* this, PlayState* play); void func_808A1C50(DoorShutter* this, PlayState* play); void DoorShutter_Draw(Actor* thisx, PlayState* play); -ActorInit Door_Shutter_InitVars = { +ActorProfile Door_Shutter_Profile = { /**/ ACTOR_DOOR_SHUTTER, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Door_Spiral/z_door_spiral.c b/src/overlays/actors/ovl_Door_Spiral/z_door_spiral.c index 0cb63d662c..ddccaac698 100644 --- a/src/overlays/actors/ovl_Door_Spiral/z_door_spiral.c +++ b/src/overlays/actors/ovl_Door_Spiral/z_door_spiral.c @@ -31,7 +31,7 @@ void func_809A2DB0(DoorSpiral* this, PlayState* play); void func_809A3098(DoorSpiral* this, PlayState* play); s32 func_809A2EA0(DoorSpiral* this, PlayState* play); -ActorInit Door_Spiral_InitVars = { +ActorProfile Door_Spiral_Profile = { /**/ ACTOR_DOOR_SPIRAL, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Door_Warp1/z_door_warp1.c b/src/overlays/actors/ovl_Door_Warp1/z_door_warp1.c index 67558c26e5..b02473ba8a 100644 --- a/src/overlays/actors/ovl_Door_Warp1/z_door_warp1.c +++ b/src/overlays/actors/ovl_Door_Warp1/z_door_warp1.c @@ -49,7 +49,7 @@ void func_808BB8D4(DoorWarp1* this, PlayState* play, s32 arg2); s16 D_808BC000; f32 D_808BC004; -ActorInit Door_Warp1_InitVars = { +ActorProfile Door_Warp1_Profile = { /**/ ACTOR_DOOR_WARP1, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Change/z_eff_change.c b/src/overlays/actors/ovl_Eff_Change/z_eff_change.c index 0a1b46e84b..30750f65c3 100644 --- a/src/overlays/actors/ovl_Eff_Change/z_eff_change.c +++ b/src/overlays/actors/ovl_Eff_Change/z_eff_change.c @@ -18,7 +18,7 @@ void EffChange_Draw(Actor* thisx, PlayState* play); void EffChange_SetColors(EffChange* this, s32 arg1); void func_80A4C5CC(EffChange* this, PlayState* play); -ActorInit Eff_Change_InitVars = { +ActorProfile Eff_Change_Profile = { /**/ ACTOR_EFF_CHANGE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Dust/z_eff_dust.c b/src/overlays/actors/ovl_Eff_Dust/z_eff_dust.c index d8baf09386..bf3b3e3293 100644 --- a/src/overlays/actors/ovl_Eff_Dust/z_eff_dust.c +++ b/src/overlays/actors/ovl_Eff_Dust/z_eff_dust.c @@ -24,7 +24,7 @@ void func_80919230(EffDust* this, PlayState* play); void func_80919768(Actor* thisx, PlayState* play2); void func_809199FC(Actor* thisx, PlayState* play2); -ActorInit Eff_Dust_InitVars = { +ActorProfile Eff_Dust_Profile = { /**/ ACTOR_EFF_DUST, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Kamejima_Wave/z_eff_kamejima_wave.c b/src/overlays/actors/ovl_Eff_Kamejima_Wave/z_eff_kamejima_wave.c index 4cc9c90a8d..d2b6953491 100644 --- a/src/overlays/actors/ovl_Eff_Kamejima_Wave/z_eff_kamejima_wave.c +++ b/src/overlays/actors/ovl_Eff_Kamejima_Wave/z_eff_kamejima_wave.c @@ -22,7 +22,7 @@ void func_80BCEBC0(EffKamejimaWave* this, PlayState* play); void func_80BCED34(EffKamejimaWave* this, PlayState* play); void EffKamejimaWave_SetVtxAlpha(u8 alpha); -ActorInit Eff_Kamejima_Wave_InitVars = { +ActorProfile Eff_Kamejima_Wave_Profile = { /**/ ACTOR_EFF_KAMEJIMA_WAVE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Lastday/z_eff_lastday.c b/src/overlays/actors/ovl_Eff_Lastday/z_eff_lastday.c index 343b7dcb9c..b00cb612c7 100644 --- a/src/overlays/actors/ovl_Eff_Lastday/z_eff_lastday.c +++ b/src/overlays/actors/ovl_Eff_Lastday/z_eff_lastday.c @@ -28,7 +28,7 @@ typedef enum EffLastDayAction { /* 3 */ EFFLASTDAY_ACTION_3 } EffLastDayAction; -ActorInit Eff_Lastday_InitVars = { +ActorProfile Eff_Lastday_Profile = { /**/ ACTOR_EFF_LASTDAY, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Stk/z_eff_stk.c b/src/overlays/actors/ovl_Eff_Stk/z_eff_stk.c index 9123f21ee6..3b61901694 100644 --- a/src/overlays/actors/ovl_Eff_Stk/z_eff_stk.c +++ b/src/overlays/actors/ovl_Eff_Stk/z_eff_stk.c @@ -18,7 +18,7 @@ void EffStk_Draw(Actor* thisx, PlayState* play); void func_80BF0DE0(EffStk* this, PlayState* play); -ActorInit Eff_Stk_InitVars = { +ActorProfile Eff_Stk_Profile = { /**/ ACTOR_EFF_STK, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Eff_Zoraband/z_eff_zoraband.c b/src/overlays/actors/ovl_Eff_Zoraband/z_eff_zoraband.c index 6ecb50affd..5f0bfc44ec 100644 --- a/src/overlays/actors/ovl_Eff_Zoraband/z_eff_zoraband.c +++ b/src/overlays/actors/ovl_Eff_Zoraband/z_eff_zoraband.c @@ -18,7 +18,7 @@ void EffZoraband_Draw(Actor* thisx, PlayState* play2); void EffZoraband_MikauFadeOut(EffZoraband* this, PlayState* play); -ActorInit Eff_Zoraband_InitVars = { +ActorProfile Eff_Zoraband_Profile = { /**/ ACTOR_EFF_ZORABAND, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg/z_elf_msg.c b/src/overlays/actors/ovl_Elf_Msg/z_elf_msg.c index 9d44cdb598..102c0287ec 100644 --- a/src/overlays/actors/ovl_Elf_Msg/z_elf_msg.c +++ b/src/overlays/actors/ovl_Elf_Msg/z_elf_msg.c @@ -18,7 +18,7 @@ void ElfMsg_Update(Actor* thisx, PlayState* play); void ElfMsg_SetupAction(ElfMsg* this, ElfMsgActionFunc actionFunc); void func_8092E284(ElfMsg* this, PlayState* play); -ActorInit Elf_Msg_InitVars = { +ActorProfile Elf_Msg_Profile = { /**/ ACTOR_ELF_MSG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg2/z_elf_msg2.c b/src/overlays/actors/ovl_Elf_Msg2/z_elf_msg2.c index 4d35e9112d..a79ee95013 100644 --- a/src/overlays/actors/ovl_Elf_Msg2/z_elf_msg2.c +++ b/src/overlays/actors/ovl_Elf_Msg2/z_elf_msg2.c @@ -18,7 +18,7 @@ s32 func_8096EE50(ElfMsg2* this); void func_8096EF98(ElfMsg2* this, PlayState* play); void func_8096EFD0(ElfMsg2* this, PlayState* play); -ActorInit Elf_Msg2_InitVars = { +ActorProfile Elf_Msg2_Profile = { /**/ ACTOR_ELF_MSG2, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg3/z_elf_msg3.c b/src/overlays/actors/ovl_Elf_Msg3/z_elf_msg3.c index 9f039b7db8..61975a1a9b 100644 --- a/src/overlays/actors/ovl_Elf_Msg3/z_elf_msg3.c +++ b/src/overlays/actors/ovl_Elf_Msg3/z_elf_msg3.c @@ -17,7 +17,7 @@ void ElfMsg3_Update(Actor* thisx, PlayState* play); void func_80A2CF7C(ElfMsg3* this, PlayState* play); -ActorInit Elf_Msg3_InitVars = { +ActorProfile Elf_Msg3_Profile = { /**/ ACTOR_ELF_MSG3, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg4/z_elf_msg4.c b/src/overlays/actors/ovl_Elf_Msg4/z_elf_msg4.c index 3ea4d606da..8701d2403d 100644 --- a/src/overlays/actors/ovl_Elf_Msg4/z_elf_msg4.c +++ b/src/overlays/actors/ovl_Elf_Msg4/z_elf_msg4.c @@ -21,7 +21,7 @@ void func_80AFD770(ElfMsg4* this, PlayState* play); s32 func_80AFD380(ElfMsg4* this, PlayState* play); s32 ElfMsg4_GetTextId(ElfMsg4* this); -ActorInit Elf_Msg4_InitVars = { +ActorProfile Elf_Msg4_Profile = { /**/ ACTOR_ELF_MSG4, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg5/z_elf_msg5.c b/src/overlays/actors/ovl_Elf_Msg5/z_elf_msg5.c index af48b53f31..88a1b8bcf1 100644 --- a/src/overlays/actors/ovl_Elf_Msg5/z_elf_msg5.c +++ b/src/overlays/actors/ovl_Elf_Msg5/z_elf_msg5.c @@ -17,7 +17,7 @@ void ElfMsg5_Update(Actor* thisx, PlayState* play); void func_80AFDB38(ElfMsg5* this, PlayState* play); s32 func_80AFD990(ElfMsg5* this, PlayState* play); -ActorInit Elf_Msg5_InitVars = { +ActorProfile Elf_Msg5_Profile = { /**/ ACTOR_ELF_MSG5, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Elf_Msg6/z_elf_msg6.c b/src/overlays/actors/ovl_Elf_Msg6/z_elf_msg6.c index e331010b04..47e7ab4985 100644 --- a/src/overlays/actors/ovl_Elf_Msg6/z_elf_msg6.c +++ b/src/overlays/actors/ovl_Elf_Msg6/z_elf_msg6.c @@ -23,7 +23,7 @@ void func_80BA2048(ElfMsg6* this, PlayState* play); void func_80BA215C(ElfMsg6* this, PlayState* play); void func_80BA21C4(ElfMsg6* this, PlayState* play); -ActorInit Elf_Msg6_InitVars = { +ActorProfile Elf_Msg6_Profile = { /**/ ACTOR_ELF_MSG6, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ah/z_en_ah.c b/src/overlays/actors/ovl_En_Ah/z_en_ah.c index c9ccb1dffa..c3396ce94b 100644 --- a/src/overlays/actors/ovl_En_Ah/z_en_ah.c +++ b/src/overlays/actors/ovl_En_Ah/z_en_ah.c @@ -51,7 +51,7 @@ MsgScript D_80BD3E08[] = { /* 0x0008 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Ah_InitVars = { +ActorProfile En_Ah_Profile = { /**/ ACTOR_EN_AH, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Akindonuts/z_en_akindonuts.c b/src/overlays/actors/ovl_En_Akindonuts/z_en_akindonuts.c index 64b1d39c26..7e2db28fcb 100644 --- a/src/overlays/actors/ovl_En_Akindonuts/z_en_akindonuts.c +++ b/src/overlays/actors/ovl_En_Akindonuts/z_en_akindonuts.c @@ -31,7 +31,7 @@ void func_80BEF9F0(EnAkindonuts* this, PlayState* play); void func_80BEFAF0(EnAkindonuts* this, PlayState* play); void func_80BEFD74(EnAkindonuts* this, PlayState* play); -ActorInit En_Akindonuts_InitVars = { +ActorProfile En_Akindonuts_Profile = { /**/ ACTOR_EN_AKINDONUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Al/z_en_al.c b/src/overlays/actors/ovl_En_Al/z_en_al.c index cbe735e513..d0a1978bd3 100644 --- a/src/overlays/actors/ovl_En_Al/z_en_al.c +++ b/src/overlays/actors/ovl_En_Al/z_en_al.c @@ -375,7 +375,7 @@ MsgScript D_80BDFF24[] = { /* 0x0070 0x03 */ MSCRIPT_CMD_JUMP(0x001A - 0x0073), }; -ActorInit En_Al_InitVars = { +ActorProfile En_Al_Profile = { /**/ ACTOR_EN_AL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Am/z_en_am.c b/src/overlays/actors/ovl_En_Am/z_en_am.c index a2cd191a96..63e250aaff 100644 --- a/src/overlays/actors/ovl_En_Am/z_en_am.c +++ b/src/overlays/actors/ovl_En_Am/z_en_am.c @@ -36,7 +36,7 @@ void func_808B0820(EnAm* this); void func_808B0894(EnAm* this, PlayState* play); void func_808B0B4C(EnAm* this, PlayState* play); -ActorInit En_Am_InitVars = { +ActorProfile En_Am_Profile = { /**/ ACTOR_EN_AM, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_An/z_en_an.c b/src/overlays/actors/ovl_En_An/z_en_an.c index 5bab2d9a87..d17d6151d7 100644 --- a/src/overlays/actors/ovl_En_An/z_en_an.c +++ b/src/overlays/actors/ovl_En_An/z_en_an.c @@ -836,7 +836,7 @@ MsgScript sAnjuMsgScript_SchWithKafei[] = { /* 0x0008 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_An_InitVars = { +ActorProfile En_An_Profile = { /**/ ACTOR_EN_AN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_And/z_en_and.c b/src/overlays/actors/ovl_En_And/z_en_and.c index 768f56d6fd..f84ce636a4 100644 --- a/src/overlays/actors/ovl_En_And/z_en_and.c +++ b/src/overlays/actors/ovl_En_And/z_en_and.c @@ -17,7 +17,7 @@ void EnAnd_Destroy(Actor* thisx, PlayState* play); void EnAnd_Update(Actor* thisx, PlayState* play); void EnAnd_Draw(Actor* thisx, PlayState* play); -ActorInit En_And_InitVars = { +ActorProfile En_And_Profile = { /**/ ACTOR_EN_AND, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ani/z_en_ani.c b/src/overlays/actors/ovl_En_Ani/z_en_ani.c index fb5cbf6885..f471b3dc63 100644 --- a/src/overlays/actors/ovl_En_Ani/z_en_ani.c +++ b/src/overlays/actors/ovl_En_Ani/z_en_ani.c @@ -40,7 +40,7 @@ void EnAni_IdleInPain(EnAni* this, PlayState* play); void EnAni_Talk(EnAni* this, PlayState* play); void EnAni_IdleStanding(EnAni* this, PlayState* play); -ActorInit En_Ani_InitVars = { +ActorProfile En_Ani_Profile = { /**/ ACTOR_EN_ANI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Aob_01/z_en_aob_01.c b/src/overlays/actors/ovl_En_Aob_01/z_en_aob_01.c index 30fa882a26..cf88d57fef 100644 --- a/src/overlays/actors/ovl_En_Aob_01/z_en_aob_01.c +++ b/src/overlays/actors/ovl_En_Aob_01/z_en_aob_01.c @@ -32,7 +32,7 @@ void EnAob01_AfterRace_AskToPlayAgain(EnAob01* this, PlayState* play); void EnAob01_AfterRace_Talk(EnAob01* this, PlayState* play); s32 EnAob01_PlayerIsHoldingDog(EnAob01* this, PlayState* play); -ActorInit En_Aob_01_InitVars = { +ActorProfile En_Aob_01_Profile = { /**/ ACTOR_EN_AOB_01, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Arrow/z_en_arrow.c b/src/overlays/actors/ovl_En_Arrow/z_en_arrow.c index 73e0cc6003..c55cd6d34b 100644 --- a/src/overlays/actors/ovl_En_Arrow/z_en_arrow.c +++ b/src/overlays/actors/ovl_En_Arrow/z_en_arrow.c @@ -23,7 +23,7 @@ void func_8088ACE0(EnArrow* this, PlayState* play); void func_8088B630(EnArrow* this, PlayState* play); void func_8088B6B0(EnArrow* this, PlayState* play); -ActorInit En_Arrow_InitVars = { +ActorProfile En_Arrow_Profile = { /**/ ACTOR_EN_ARROW, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Attack_Niw/z_en_attack_niw.c b/src/overlays/actors/ovl_En_Attack_Niw/z_en_attack_niw.c index 558d0a3b4e..756be2421f 100644 --- a/src/overlays/actors/ovl_En_Attack_Niw/z_en_attack_niw.c +++ b/src/overlays/actors/ovl_En_Attack_Niw/z_en_attack_niw.c @@ -20,7 +20,7 @@ void EnAttackNiw_EnterViewFromOffscreen(EnAttackNiw* this, PlayState* play); void EnAttackNiw_AimAtPlayer(EnAttackNiw* this, PlayState* play); void EnAttackNiw_FlyAway(EnAttackNiw* this, PlayState* play); -ActorInit En_Attack_Niw_InitVars = { +ActorProfile En_Attack_Niw_Profile = { /**/ ACTOR_EN_ATTACK_NIW, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Az/z_en_az.c b/src/overlays/actors/ovl_En_Az/z_en_az.c index 7c906e2bc1..a932a4474e 100644 --- a/src/overlays/actors/ovl_En_Az/z_en_az.c +++ b/src/overlays/actors/ovl_En_Az/z_en_az.c @@ -94,7 +94,7 @@ static AnimationSpeedInfo sAnimationSpeedInfo[BEAVER_ANIM_IDLE_FACE_MAX] = { { &gBeaverIdleFaceRightAnim, 1.0f, ANIMMODE_LOOP, -5.0f }, // BEAVER_ANIM_IDLE_FACE_RIGHT }; -ActorInit En_Az_InitVars = { +ActorProfile En_Az_Profile = { /**/ ACTOR_EN_AZ, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Baba/z_en_baba.c b/src/overlays/actors/ovl_En_Baba/z_en_baba.c index f1eebeaa56..3e9642383f 100644 --- a/src/overlays/actors/ovl_En_Baba/z_en_baba.c +++ b/src/overlays/actors/ovl_En_Baba/z_en_baba.c @@ -41,7 +41,7 @@ typedef enum { /* 2 */ BOMB_SHOP_LADY_SCH_FOLLOW_TIME_PATH } BombShopLadyScheduleResult; -ActorInit En_Baba_InitVars = { +ActorProfile En_Baba_Profile = { /**/ ACTOR_EN_BABA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Baguo/z_en_baguo.c b/src/overlays/actors/ovl_En_Baguo/z_en_baguo.c index 108b388f24..e77a949fef 100644 --- a/src/overlays/actors/ovl_En_Baguo/z_en_baguo.c +++ b/src/overlays/actors/ovl_En_Baguo/z_en_baguo.c @@ -42,7 +42,7 @@ typedef enum { /* 1 */ NEJIRON_DIRECTION_LEFT } NejironRollDirection; -ActorInit En_Baguo_InitVars = { +ActorProfile En_Baguo_Profile = { /**/ ACTOR_EN_BAGUO, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Baisen/z_en_baisen.c b/src/overlays/actors/ovl_En_Baisen/z_en_baisen.c index f963a19595..b262e6ebdb 100644 --- a/src/overlays/actors/ovl_En_Baisen/z_en_baisen.c +++ b/src/overlays/actors/ovl_En_Baisen/z_en_baisen.c @@ -23,7 +23,7 @@ void func_80BE895C(EnBaisen* this, PlayState* play); void func_80BE8AAC(EnBaisen* this, PlayState* play); void func_80BE89D8(EnBaisen* this, PlayState* play); -ActorInit En_Baisen_InitVars = { +ActorProfile En_Baisen_Profile = { /**/ ACTOR_EN_BAISEN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bal/z_en_bal.c b/src/overlays/actors/ovl_En_Bal/z_en_bal.c index a28a580e64..d05a618c76 100644 --- a/src/overlays/actors/ovl_En_Bal/z_en_bal.c +++ b/src/overlays/actors/ovl_En_Bal/z_en_bal.c @@ -90,7 +90,7 @@ void EnBal_OfferGetItem(EnBal* this, PlayState* play); void EnBal_SetupThankYou(EnBal* this); void EnBal_ThankYou(EnBal* this, PlayState* play); -ActorInit En_Bal_InitVars = { +ActorProfile En_Bal_Profile = { /**/ ACTOR_EN_BAL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bat/z_en_bat.c b/src/overlays/actors/ovl_En_Bat/z_en_bat.c index 47cf4f4f28..608cbf6bbe 100644 --- a/src/overlays/actors/ovl_En_Bat/z_en_bat.c +++ b/src/overlays/actors/ovl_En_Bat/z_en_bat.c @@ -29,7 +29,7 @@ void EnBat_DiveAttack(EnBat* this, PlayState* play); void EnBat_Die(EnBat* this, PlayState* play); void EnBat_Stunned(EnBat* this, PlayState* play); -ActorInit En_Bat_InitVars = { +ActorProfile En_Bat_Profile = { /**/ ACTOR_EN_BAT, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bb/z_en_bb.c b/src/overlays/actors/ovl_En_Bb/z_en_bb.c index 52761f9247..e9f2479da7 100644 --- a/src/overlays/actors/ovl_En_Bb/z_en_bb.c +++ b/src/overlays/actors/ovl_En_Bb/z_en_bb.c @@ -36,7 +36,7 @@ typedef enum { /* 1 */ BB_BODY_PART_DRAW_STATUS_DEAD } EnBbBodyPartDrawStatus; -ActorInit En_Bb_InitVars = { +ActorProfile En_Bb_Profile = { /**/ ACTOR_EN_BB, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bba_01/z_en_bba_01.c b/src/overlays/actors/ovl_En_Bba_01/z_en_bba_01.c index 35cbac26d4..dad46c6927 100644 --- a/src/overlays/actors/ovl_En_Bba_01/z_en_bba_01.c +++ b/src/overlays/actors/ovl_En_Bba_01/z_en_bba_01.c @@ -28,7 +28,7 @@ void EnBba01_Walk(EnHy* this, PlayState* play); void EnBba01_FaceFoward(EnHy* this, PlayState* play); void EnBba01_Talk(EnHy* this, PlayState* play); -ActorInit En_Bba_01_InitVars = { +ActorProfile En_Bba_01_Profile = { /**/ ACTOR_EN_BBA_01, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bbfall/z_en_bbfall.c b/src/overlays/actors/ovl_En_Bbfall/z_en_bbfall.c index 4365d00e92..9c2f933aee 100644 --- a/src/overlays/actors/ovl_En_Bbfall/z_en_bbfall.c +++ b/src/overlays/actors/ovl_En_Bbfall/z_en_bbfall.c @@ -36,7 +36,7 @@ typedef enum { /* 1 */ BBFALL_BODY_PART_DRAW_STATUS_DEAD } EnBbfallBodyPartDrawStatus; -ActorInit En_Bbfall_InitVars = { +ActorProfile En_Bbfall_Profile = { /**/ ACTOR_EN_BBFALL, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bee/z_en_bee.c b/src/overlays/actors/ovl_En_Bee/z_en_bee.c index 2034dccbae..d7fed0ad80 100644 --- a/src/overlays/actors/ovl_En_Bee/z_en_bee.c +++ b/src/overlays/actors/ovl_En_Bee/z_en_bee.c @@ -22,7 +22,7 @@ void EnBee_Attack(EnBee* this, PlayState* play); s32 sNumLoadedBees = 0; -ActorInit En_Bee_InitVars = { +ActorProfile En_Bee_Profile = { /**/ ACTOR_EN_BEE, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bh/z_en_bh.c b/src/overlays/actors/ovl_En_Bh/z_en_bh.c index c29527ea5f..c9511bc8d3 100644 --- a/src/overlays/actors/ovl_En_Bh/z_en_bh.c +++ b/src/overlays/actors/ovl_En_Bh/z_en_bh.c @@ -17,7 +17,7 @@ void EnBh_Draw(Actor* thisx, PlayState* play); void func_80C22DEC(EnBh* this, PlayState* play); -ActorInit En_Bh_InitVars = { +ActorProfile En_Bh_Profile = { /**/ ACTOR_EN_BH, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bigokuta/z_en_bigokuta.c b/src/overlays/actors/ovl_En_Bigokuta/z_en_bigokuta.c index f821f6a94c..27424b978f 100644 --- a/src/overlays/actors/ovl_En_Bigokuta/z_en_bigokuta.c +++ b/src/overlays/actors/ovl_En_Bigokuta/z_en_bigokuta.c @@ -31,7 +31,7 @@ void EnBigokuta_PlayDeathCutscene(EnBigokuta* this, PlayState* play); void EnBigokuta_SetupDeathEffects(EnBigokuta* this); void EnBigokuta_PlayDeathEffects(EnBigokuta* this, PlayState* play); -ActorInit En_Bigokuta_InitVars = { +ActorProfile En_Bigokuta_Profile = { /**/ ACTOR_EN_BIGOKUTA, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bigpamet/z_en_bigpamet.c b/src/overlays/actors/ovl_En_Bigpamet/z_en_bigpamet.c index 45ad9bbf1f..b00672cda4 100644 --- a/src/overlays/actors/ovl_En_Bigpamet/z_en_bigpamet.c +++ b/src/overlays/actors/ovl_En_Bigpamet/z_en_bigpamet.c @@ -46,7 +46,7 @@ void func_80A28A28(EnBigpamet* this); void func_80A28D80(EnBigpamet* this); void func_80A28ED4(EnBigpamet* this); -ActorInit En_Bigpamet_InitVars = { +ActorProfile En_Bigpamet_Profile = { /**/ ACTOR_EN_BIGPAMET, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bigpo/z_en_bigpo.c b/src/overlays/actors/ovl_En_Bigpo/z_en_bigpo.c index 4aceec00ef..ed18bf6552 100644 --- a/src/overlays/actors/ovl_En_Bigpo/z_en_bigpo.c +++ b/src/overlays/actors/ovl_En_Bigpo/z_en_bigpo.c @@ -83,7 +83,7 @@ void EnBigpo_DrawLantern(Actor* thisx, PlayState* play); void EnBigpo_DrawCircleFlames(Actor* thisx, PlayState* play); void EnBigpo_RevealedFire(Actor* thisx, PlayState* play); -ActorInit En_Bigpo_InitVars = { +ActorProfile En_Bigpo_Profile = { /**/ ACTOR_EN_BIGPO, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bigslime/z_en_bigslime.c b/src/overlays/actors/ovl_En_Bigslime/z_en_bigslime.c index fca093d4ab..beb12cfecf 100644 --- a/src/overlays/actors/ovl_En_Bigslime/z_en_bigslime.c +++ b/src/overlays/actors/ovl_En_Bigslime/z_en_bigslime.c @@ -212,7 +212,7 @@ static EnBigslimeTri sBigslimeTri[BIGSLIME_NUM_FACES] = { { 142, 126, 127 }, { 130, 111, 145 }, }; -ActorInit En_Bigslime_InitVars = { +ActorProfile En_Bigslime_Profile = { /**/ ACTOR_EN_BIGSLIME, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bji_01/z_en_bji_01.c b/src/overlays/actors/ovl_En_Bji_01/z_en_bji_01.c index 031f3bbcb4..37a3fc5a3e 100644 --- a/src/overlays/actors/ovl_En_Bji_01/z_en_bji_01.c +++ b/src/overlays/actors/ovl_En_Bji_01/z_en_bji_01.c @@ -24,7 +24,7 @@ void func_809CD6C0(EnBji01* this, PlayState* play); void func_809CD70C(EnBji01* this, PlayState* play); void func_809CD77C(EnBji01* this, PlayState* play); -ActorInit En_Bji_01_InitVars = { +ActorProfile En_Bji_01_Profile = { /**/ ACTOR_EN_BJI_01, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bjt/z_en_bjt.c b/src/overlays/actors/ovl_En_Bjt/z_en_bjt.c index e7cd7e70dd..b8d398b292 100644 --- a/src/overlays/actors/ovl_En_Bjt/z_en_bjt.c +++ b/src/overlays/actors/ovl_En_Bjt/z_en_bjt.c @@ -85,7 +85,7 @@ static MsgScript sMsgScript[] = { /* 0x0071 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Bjt_InitVars = { +ActorProfile En_Bjt_Profile = { /**/ ACTOR_EN_BJT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boj_01/z_en_boj_01.c b/src/overlays/actors/ovl_En_Boj_01/z_en_boj_01.c index 43084b301e..90bc9e74f4 100644 --- a/src/overlays/actors/ovl_En_Boj_01/z_en_boj_01.c +++ b/src/overlays/actors/ovl_En_Boj_01/z_en_boj_01.c @@ -15,7 +15,7 @@ void EnBoj01_Destroy(Actor* thisx, PlayState* play); void EnBoj01_Update(Actor* thisx, PlayState* play); void EnBoj01_Draw(Actor* thisx, PlayState* play); -ActorInit En_Boj_01_InitVars = { +ActorProfile En_Boj_01_Profile = { /**/ ACTOR_EN_BOJ_01, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boj_02/z_en_boj_02.c b/src/overlays/actors/ovl_En_Boj_02/z_en_boj_02.c index 8ed9bc3273..ae337e6bef 100644 --- a/src/overlays/actors/ovl_En_Boj_02/z_en_boj_02.c +++ b/src/overlays/actors/ovl_En_Boj_02/z_en_boj_02.c @@ -15,7 +15,7 @@ void EnBoj02_Destroy(Actor* thisx, PlayState* play); void EnBoj02_Update(Actor* thisx, PlayState* play); void EnBoj02_Draw(Actor* thisx, PlayState* play); -ActorInit En_Boj_02_InitVars = { +ActorProfile En_Boj_02_Profile = { /**/ ACTOR_EN_BOJ_02, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boj_03/z_en_boj_03.c b/src/overlays/actors/ovl_En_Boj_03/z_en_boj_03.c index 3ecb8dc38d..9971323b2e 100644 --- a/src/overlays/actors/ovl_En_Boj_03/z_en_boj_03.c +++ b/src/overlays/actors/ovl_En_Boj_03/z_en_boj_03.c @@ -15,7 +15,7 @@ void EnBoj03_Destroy(Actor* thisx, PlayState* play); void EnBoj03_Update(Actor* thisx, PlayState* play); void EnBoj03_Draw(Actor* thisx, PlayState* play); -ActorInit En_Boj_03_InitVars = { +ActorProfile En_Boj_03_Profile = { /**/ ACTOR_EN_BOJ_03, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boj_04/z_en_boj_04.c b/src/overlays/actors/ovl_En_Boj_04/z_en_boj_04.c index 98d7c3da01..d0b55a2459 100644 --- a/src/overlays/actors/ovl_En_Boj_04/z_en_boj_04.c +++ b/src/overlays/actors/ovl_En_Boj_04/z_en_boj_04.c @@ -15,7 +15,7 @@ void EnBoj04_Destroy(Actor* thisx, PlayState* play); void EnBoj04_Update(Actor* thisx, PlayState* play); void EnBoj04_Draw(Actor* thisx, PlayState* play); -ActorInit En_Boj_04_InitVars = { +ActorProfile En_Boj_04_Profile = { /**/ ACTOR_EN_BOJ_04, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boj_05/z_en_boj_05.c b/src/overlays/actors/ovl_En_Boj_05/z_en_boj_05.c index b3f892c9d1..549bd2554f 100644 --- a/src/overlays/actors/ovl_En_Boj_05/z_en_boj_05.c +++ b/src/overlays/actors/ovl_En_Boj_05/z_en_boj_05.c @@ -15,7 +15,7 @@ void EnBoj05_Destroy(Actor* thisx, PlayState* play); void EnBoj05_Update(Actor* thisx, PlayState* play); void EnBoj05_Draw(Actor* thisx, PlayState* play); -ActorInit En_Boj_05_InitVars = { +ActorProfile En_Boj_05_Profile = { /**/ ACTOR_EN_BOJ_05, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bom/z_en_bom.c b/src/overlays/actors/ovl_En_Bom/z_en_bom.c index 10beea1eb6..79188022ce 100644 --- a/src/overlays/actors/ovl_En_Bom/z_en_bom.c +++ b/src/overlays/actors/ovl_En_Bom/z_en_bom.c @@ -34,7 +34,7 @@ typedef struct { PowderKegFuseSegment sPowderKegFuseSegments[16]; -ActorInit En_Bom_InitVars = { +ActorProfile En_Bom_Profile = { /**/ ACTOR_EN_BOM, /**/ ACTORCAT_EXPLOSIVES, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bom_Bowl_Man/z_en_bom_bowl_man.c b/src/overlays/actors/ovl_En_Bom_Bowl_Man/z_en_bom_bowl_man.c index 332b592656..d979eba058 100644 --- a/src/overlays/actors/ovl_En_Bom_Bowl_Man/z_en_bom_bowl_man.c +++ b/src/overlays/actors/ovl_En_Bom_Bowl_Man/z_en_bom_bowl_man.c @@ -37,7 +37,7 @@ s32 D_809C6100 = 0; s32 D_809C6104 = 0; -ActorInit En_Bom_Bowl_Man_InitVars = { +ActorProfile En_Bom_Bowl_Man_Profile = { /**/ ACTOR_EN_BOM_BOWL_MAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bom_Chu/z_en_bom_chu.c b/src/overlays/actors/ovl_En_Bom_Chu/z_en_bom_chu.c index 53e6e5b68f..26c3478755 100644 --- a/src/overlays/actors/ovl_En_Bom_Chu/z_en_bom_chu.c +++ b/src/overlays/actors/ovl_En_Bom_Chu/z_en_bom_chu.c @@ -25,7 +25,7 @@ void EnBomChu_Move(EnBomChu* this, PlayState* play); void EnBomChu_Explode(EnBomChu* this, PlayState* play); void EnBomChu_WaitForDeath(EnBomChu* this, PlayState* play); -ActorInit En_Bom_Chu_InitVars = { +ActorProfile En_Bom_Chu_Profile = { /**/ ACTOR_EN_BOM_CHU, /**/ ACTORCAT_EXPLOSIVES, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bombal/z_en_bombal.c b/src/overlays/actors/ovl_En_Bombal/z_en_bombal.c index 3cab1ac5e5..59773d8e4c 100644 --- a/src/overlays/actors/ovl_En_Bombal/z_en_bombal.c +++ b/src/overlays/actors/ovl_En_Bombal/z_en_bombal.c @@ -26,7 +26,7 @@ void EnBombal_InitEffects(EnBombal* this, Vec3f* pos, s16 fadeDelay); void EnBombal_UpdateEffects(EnBombal* this, PlayState* play); void EnBombal_DrawEffects(EnBombal* this, PlayState* play); -ActorInit En_Bombal_InitVars = { +ActorProfile En_Bombal_Profile = { /**/ ACTOR_EN_BOMBAL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bombers/z_en_bombers.c b/src/overlays/actors/ovl_En_Bombers/z_en_bombers.c index 73da972dc4..b9fb21b551 100644 --- a/src/overlays/actors/ovl_En_Bombers/z_en_bombers.c +++ b/src/overlays/actors/ovl_En_Bombers/z_en_bombers.c @@ -24,7 +24,7 @@ void func_80C042F8(EnBombers* this); void func_80C04354(EnBombers* this, PlayState* play); void func_80C043C8(EnBombers* this, PlayState* play); -ActorInit En_Bombers_InitVars = { +ActorProfile En_Bombers_Profile = { /**/ ACTOR_EN_BOMBERS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bombers2/z_en_bombers2.c b/src/overlays/actors/ovl_En_Bombers2/z_en_bombers2.c index 548847f322..4614c34387 100644 --- a/src/overlays/actors/ovl_En_Bombers2/z_en_bombers2.c +++ b/src/overlays/actors/ovl_En_Bombers2/z_en_bombers2.c @@ -22,7 +22,7 @@ void func_80C04B40(EnBombers2* this); void func_80C04D00(EnBombers2* this); void func_80C050B8(EnBombers2* this, PlayState* play); -ActorInit En_Bombers2_InitVars = { +ActorProfile En_Bombers2_Profile = { /**/ ACTOR_EN_BOMBERS2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bombf/z_en_bombf.c b/src/overlays/actors/ovl_En_Bombf/z_en_bombf.c index 5b6e0b5d53..1d8d486d97 100644 --- a/src/overlays/actors/ovl_En_Bombf/z_en_bombf.c +++ b/src/overlays/actors/ovl_En_Bombf/z_en_bombf.c @@ -25,7 +25,7 @@ void func_808AEE3C(EnBombf* this, PlayState* play); void func_808AEF68(EnBombf* this, PlayState* play); void func_808AEFD4(EnBombf* this, PlayState* play); -ActorInit En_Bombf_InitVars = { +ActorProfile En_Bombf_Profile = { /**/ ACTOR_EN_BOMBF, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bomjima/z_en_bomjima.c b/src/overlays/actors/ovl_En_Bomjima/z_en_bomjima.c index 5677a911b2..6aa4884901 100644 --- a/src/overlays/actors/ovl_En_Bomjima/z_en_bomjima.c +++ b/src/overlays/actors/ovl_En_Bomjima/z_en_bomjima.c @@ -53,7 +53,7 @@ typedef enum EnBomjimaAction { static s32 D_80C009F0 = 0; static s32 D_80C009F4 = 0; -ActorInit En_Bomjima_InitVars = { +ActorProfile En_Bomjima_Profile = { /**/ ACTOR_EN_BOMJIMA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bomjimb/z_en_bomjimb.c b/src/overlays/actors/ovl_En_Bomjimb/z_en_bomjimb.c index bc85f4ebc9..c298fe36c5 100644 --- a/src/overlays/actors/ovl_En_Bomjimb/z_en_bomjimb.c +++ b/src/overlays/actors/ovl_En_Bomjimb/z_en_bomjimb.c @@ -39,7 +39,7 @@ void func_80C02DAC(EnBomjimb* this, PlayState* play); static Actor* D_80C03170 = NULL; -ActorInit En_Bomjimb_InitVars = { +ActorProfile En_Bomjimb_Profile = { /**/ ACTOR_EN_BOMJIMB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Boom/z_en_boom.c b/src/overlays/actors/ovl_En_Boom/z_en_boom.c index 784cdb48b0..4cd89732fc 100644 --- a/src/overlays/actors/ovl_En_Boom/z_en_boom.c +++ b/src/overlays/actors/ovl_En_Boom/z_en_boom.c @@ -19,7 +19,7 @@ void EnBoom_Draw(Actor* thisx, PlayState* play); void EnBoom_SetupAction(EnBoom* this, EnBoomActionFunc actionFunc); void func_808A2918(EnBoom* this, PlayState* play); -ActorInit En_Boom_InitVars = { +ActorProfile En_Boom_Profile = { /**/ ACTOR_EN_BOOM, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Box/z_en_box.c b/src/overlays/actors/ovl_En_Box/z_en_box.c index cb3f68ed8a..32ce480c0c 100644 --- a/src/overlays/actors/ovl_En_Box/z_en_box.c +++ b/src/overlays/actors/ovl_En_Box/z_en_box.c @@ -56,7 +56,7 @@ void EnBox_Open(EnBox* this, PlayState* play); void func_80867FBC(struct_80867BDC_a0* arg0, PlayState* play, s32 arg2); void func_80867FE4(struct_80867BDC_a0* arg0, PlayState* play); -ActorInit En_Box_InitVars = { +ActorProfile En_Box_Profile = { /**/ ACTOR_EN_BOX, /**/ ACTORCAT_CHEST, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bsb/z_en_bsb.c b/src/overlays/actors/ovl_En_Bsb/z_en_bsb.c index 65371a04f2..61bbaaac25 100644 --- a/src/overlays/actors/ovl_En_Bsb/z_en_bsb.c +++ b/src/overlays/actors/ovl_En_Bsb/z_en_bsb.c @@ -192,7 +192,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, 0xD), }; -ActorInit En_Bsb_InitVars = { +ActorProfile En_Bsb_Profile = { /**/ ACTOR_EN_BSB, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bu/z_en_bu.c b/src/overlays/actors/ovl_En_Bu/z_en_bu.c index 56e28b5ba6..b521648d83 100644 --- a/src/overlays/actors/ovl_En_Bu/z_en_bu.c +++ b/src/overlays/actors/ovl_En_Bu/z_en_bu.c @@ -17,7 +17,7 @@ void EnBu_Draw(Actor* thisx, PlayState* play); void EnBu_DoNothing(EnBu* this, PlayState* play); -ActorInit En_Bu_InitVars = { +ActorProfile En_Bu_Profile = { /**/ ACTOR_EN_BU, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Bubble/z_en_bubble.c b/src/overlays/actors/ovl_En_Bubble/z_en_bubble.c index 6bfcbccdcd..b10bb99136 100644 --- a/src/overlays/actors/ovl_En_Bubble/z_en_bubble.c +++ b/src/overlays/actors/ovl_En_Bubble/z_en_bubble.c @@ -19,7 +19,7 @@ void EnBubble_Wait(EnBubble* this, PlayState* play); void EnBubble_Pop(EnBubble* this, PlayState* play); void EnBubble_Regrow(EnBubble* this, PlayState* play); -ActorInit En_Bubble_InitVars = { +ActorProfile En_Bubble_Profile = { /**/ ACTOR_EN_BUBBLE, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Butte/z_en_butte.c b/src/overlays/actors/ovl_En_Butte/z_en_butte.c index 4e9041b1b4..afa8524234 100644 --- a/src/overlays/actors/ovl_En_Butte/z_en_butte.c +++ b/src/overlays/actors/ovl_En_Butte/z_en_butte.c @@ -54,7 +54,7 @@ static ColliderJntSphInit sJntSphInit = { sJntSphElementsInit, }; -ActorInit En_Butte_InitVars = { +ActorProfile En_Butte_Profile = { /**/ ACTOR_EN_BUTTE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Cha/z_en_cha.c b/src/overlays/actors/ovl_En_Cha/z_en_cha.c index 95cb0f668a..f01103efc6 100644 --- a/src/overlays/actors/ovl_En_Cha/z_en_cha.c +++ b/src/overlays/actors/ovl_En_Cha/z_en_cha.c @@ -18,7 +18,7 @@ void EnCha_Draw(Actor* thisx, PlayState* play); void EnCha_Idle(EnCha* this, PlayState* play); -ActorInit En_Cha_InitVars = { +ActorProfile En_Cha_Profile = { /**/ ACTOR_EN_CHA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Clear_Tag/z_en_clear_tag.c b/src/overlays/actors/ovl_En_Clear_Tag/z_en_clear_tag.c index 625f8df0be..cf31f17214 100644 --- a/src/overlays/actors/ovl_En_Clear_Tag/z_en_clear_tag.c +++ b/src/overlays/actors/ovl_En_Clear_Tag/z_en_clear_tag.c @@ -31,7 +31,7 @@ void EnClearTag_Draw(Actor* thisx, PlayState* play); void EnClearTag_UpdateEffects(EnClearTag* this, PlayState* play); void EnClearTag_DrawEffects(Actor* thisx, PlayState* play); -ActorInit En_Clear_Tag_InitVars = { +ActorProfile En_Clear_Tag_Profile = { /**/ ACTOR_EN_CLEAR_TAG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Cne_01/z_en_cne_01.c b/src/overlays/actors/ovl_En_Cne_01/z_en_cne_01.c index 4d7a164fce..5cc132308b 100644 --- a/src/overlays/actors/ovl_En_Cne_01/z_en_cne_01.c +++ b/src/overlays/actors/ovl_En_Cne_01/z_en_cne_01.c @@ -20,7 +20,7 @@ void EnCne01_Walk(EnHy* this, PlayState* play); void EnCne01_FaceForward(EnHy* this, PlayState* play); void EnCne01_Talk(EnHy* this, PlayState* play); -ActorInit En_Cne_01_InitVars = { +ActorProfile En_Cne_01_Profile = { /**/ ACTOR_EN_CNE_01, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Col_Man/z_en_col_man.c b/src/overlays/actors/ovl_En_Col_Man/z_en_col_man.c index 948ad9d41c..1650acc657 100644 --- a/src/overlays/actors/ovl_En_Col_Man/z_en_col_man.c +++ b/src/overlays/actors/ovl_En_Col_Man/z_en_col_man.c @@ -48,7 +48,7 @@ static ColliderCylinderInit sCylinderInit = { { 10, 11, 1, { 0, 0, 0 } }, }; -ActorInit En_Col_Man_InitVars = { +ActorProfile En_Col_Man_Profile = { /**/ ACTOR_EN_COL_MAN, /**/ ACTORCAT_MISC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Cow/z_en_cow.c b/src/overlays/actors/ovl_En_Cow/z_en_cow.c index 50eecf309a..cefb3d7139 100644 --- a/src/overlays/actors/ovl_En_Cow/z_en_cow.c +++ b/src/overlays/actors/ovl_En_Cow/z_en_cow.c @@ -29,7 +29,7 @@ void EnCow_DoTail(EnCow* this, PlayState* play); void EnCow_UpdateTail(Actor* thisx, PlayState* play); void EnCow_DrawTail(Actor* thisx, PlayState* play); -ActorInit En_Cow_InitVars = { +ActorProfile En_Cow_Profile = { /**/ ACTOR_EN_COW, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Crow/z_en_crow.c b/src/overlays/actors/ovl_En_Crow/z_en_crow.c index 17cc554b02..824792e832 100644 --- a/src/overlays/actors/ovl_En_Crow/z_en_crow.c +++ b/src/overlays/actors/ovl_En_Crow/z_en_crow.c @@ -28,7 +28,7 @@ void EnCrow_SetupRespawn(EnCrow* this); void EnCrow_TurnAway(EnCrow* this, PlayState* play); void EnCrow_Respawn(EnCrow* this, PlayState* play); -ActorInit En_Crow_InitVars = { +ActorProfile En_Crow_Profile = { /**/ ACTOR_EN_CROW, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dai/z_en_dai.c b/src/overlays/actors/ovl_En_Dai/z_en_dai.c index 46e806a6d2..5f8cd5e018 100644 --- a/src/overlays/actors/ovl_En_Dai/z_en_dai.c +++ b/src/overlays/actors/ovl_En_Dai/z_en_dai.c @@ -18,7 +18,7 @@ void EnDai_Draw(Actor* thisx, PlayState* play); void func_80B3F00C(EnDai* this, PlayState* play); void func_80B3EF90(EnDai* this, PlayState* play); -ActorInit En_Dai_InitVars = { +ActorProfile En_Dai_Profile = { /**/ ACTOR_EN_DAI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Daiku/z_en_daiku.c b/src/overlays/actors/ovl_En_Daiku/z_en_daiku.c index c7000ecb87..ce43fb7911 100644 --- a/src/overlays/actors/ovl_En_Daiku/z_en_daiku.c +++ b/src/overlays/actors/ovl_En_Daiku/z_en_daiku.c @@ -20,7 +20,7 @@ void func_80943BC0(EnDaiku* this); void func_80943BDC(EnDaiku* this, PlayState* play); void func_809438F8(EnDaiku* this, PlayState* play); -ActorInit En_Daiku_InitVars = { +ActorProfile En_Daiku_Profile = { /**/ ACTOR_EN_DAIKU, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Daiku2/z_en_daiku2.c b/src/overlays/actors/ovl_En_Daiku2/z_en_daiku2.c index f76afbfadc..a8c863d92f 100644 --- a/src/overlays/actors/ovl_En_Daiku2/z_en_daiku2.c +++ b/src/overlays/actors/ovl_En_Daiku2/z_en_daiku2.c @@ -32,7 +32,7 @@ void func_80BE71D8(EnDaiku2* this, PlayState* play); void func_80BE7504(EnDaiku2* this, Vec3f* arg1, Vec3f* arg2, Vec3f* arg3, f32 arg4, s16 arg5); void func_80BE7718(EnDaiku2* this, PlayState* play); -ActorInit En_Daiku2_InitVars = { +ActorProfile En_Daiku2_Profile = { /**/ ACTOR_EN_DAIKU2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Death/z_en_death.c b/src/overlays/actors/ovl_En_Death/z_en_death.c index 98741f4c2a..f47d7fa061 100644 --- a/src/overlays/actors/ovl_En_Death/z_en_death.c +++ b/src/overlays/actors/ovl_En_Death/z_en_death.c @@ -57,7 +57,7 @@ void EnDeath_SetupPlayCutscene(EnDeath* this); void EnDeath_SetupBeginWithoutCutscene(EnDeath* this); void EnDeath_SetupDeathCutscenePart4(EnDeath* this); -ActorInit En_Death_InitVars = { +ActorProfile En_Death_Profile = { /**/ ACTOR_EN_DEATH, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dekubaba/z_en_dekubaba.c b/src/overlays/actors/ovl_En_Dekubaba/z_en_dekubaba.c index 2d1d1f1046..c2549eb39c 100644 --- a/src/overlays/actors/ovl_En_Dekubaba/z_en_dekubaba.c +++ b/src/overlays/actors/ovl_En_Dekubaba/z_en_dekubaba.c @@ -43,7 +43,7 @@ void EnDekubaba_Frozen(EnDekubaba* this, PlayState* play); void EnDekubaba_SetupDeadStickDrop(EnDekubaba* this, PlayState* play); void EnDekubaba_DeadStickDrop(EnDekubaba* this, PlayState* play); -ActorInit En_Dekubaba_InitVars = { +ActorProfile En_Dekubaba_Profile = { /**/ ACTOR_EN_DEKUBABA, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dekunuts/z_en_dekunuts.c b/src/overlays/actors/ovl_En_Dekunuts/z_en_dekunuts.c index 157f12a27f..8519b2aafe 100644 --- a/src/overlays/actors/ovl_En_Dekunuts/z_en_dekunuts.c +++ b/src/overlays/actors/ovl_En_Dekunuts/z_en_dekunuts.c @@ -40,7 +40,7 @@ void func_808BE4D4(EnDekunuts* this, PlayState* play); void func_808BE680(EnDekunuts* this); void func_808BE6C4(EnDekunuts* this, PlayState* play); -ActorInit En_Dekunuts_InitVars = { +ActorProfile En_Dekunuts_Profile = { /**/ ACTOR_EN_DEKUNUTS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Demo_heishi/z_en_demo_heishi.c b/src/overlays/actors/ovl_En_Demo_heishi/z_en_demo_heishi.c index 7c845b8b17..076faee2fd 100644 --- a/src/overlays/actors/ovl_En_Demo_heishi/z_en_demo_heishi.c +++ b/src/overlays/actors/ovl_En_Demo_heishi/z_en_demo_heishi.c @@ -20,7 +20,7 @@ void EnDemoheishi_Idle(EnDemoheishi* this, PlayState* play); void EnDemoheishi_SetupTalk(EnDemoheishi* this); void EnDemoheishi_Talk(EnDemoheishi* this, PlayState* play); -ActorInit En_Demo_heishi_InitVars = { +ActorProfile En_Demo_heishi_Profile = { /**/ ACTOR_EN_DEMO_HEISHI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dg/z_en_dg.c b/src/overlays/actors/ovl_En_Dg/z_en_dg.c index 14b1a217db..c93728bd1d 100644 --- a/src/overlays/actors/ovl_En_Dg/z_en_dg.c +++ b/src/overlays/actors/ovl_En_Dg/z_en_dg.c @@ -37,7 +37,7 @@ void EnDg_Thrown(EnDg* this, PlayState* play); void EnDg_SetupTalk(EnDg* this, PlayState* play); void EnDg_Talk(EnDg* this, PlayState* play); -ActorInit En_Dg_InitVars = { +ActorProfile En_Dg_Profile = { /**/ ACTOR_EN_DG, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dinofos/z_en_dinofos.c b/src/overlays/actors/ovl_En_Dinofos/z_en_dinofos.c index f174b3b31c..7ab4b91420 100644 --- a/src/overlays/actors/ovl_En_Dinofos/z_en_dinofos.c +++ b/src/overlays/actors/ovl_En_Dinofos/z_en_dinofos.c @@ -57,7 +57,7 @@ void EnDinofos_SetupLand(EnDinofos* this); void EnDinofos_SetupJump(EnDinofos* this); void EnDinofos_SetupJumpSlash(EnDinofos* this); -ActorInit En_Dinofos_InitVars = { +ActorProfile En_Dinofos_Profile = { /**/ ACTOR_EN_DINOFOS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dnb/z_en_dnb.c b/src/overlays/actors/ovl_En_Dnb/z_en_dnb.c index b779f960af..23da8c6b7a 100644 --- a/src/overlays/actors/ovl_En_Dnb/z_en_dnb.c +++ b/src/overlays/actors/ovl_En_Dnb/z_en_dnb.c @@ -21,7 +21,7 @@ s32 func_80A507C0(EnDnbUnkStruct* arg0, Vec3f arg1, Vec3f arg2, u8 arg3, f32 arg s32 func_80A5086C(EnDnbUnkStruct* arg0); s32 func_80A50950(EnDnbUnkStruct* arg0, PlayState* play2); -ActorInit En_Dnb_InitVars = { +ActorProfile En_Dnb_Profile = { /**/ ACTOR_EN_DNB, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dnh/z_en_dnh.c b/src/overlays/actors/ovl_En_Dnh/z_en_dnh.c index 8db44c6efc..05cfe69186 100644 --- a/src/overlays/actors/ovl_En_Dnh/z_en_dnh.c +++ b/src/overlays/actors/ovl_En_Dnh/z_en_dnh.c @@ -217,7 +217,7 @@ MsgScript D_80A5138C[] = { /* 0x007D 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Dnh_InitVars = { +ActorProfile En_Dnh_Profile = { /**/ ACTOR_EN_DNH, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dnk/z_en_dnk.c b/src/overlays/actors/ovl_En_Dnk/z_en_dnk.c index bdffc71815..5952324ade 100644 --- a/src/overlays/actors/ovl_En_Dnk/z_en_dnk.c +++ b/src/overlays/actors/ovl_En_Dnk/z_en_dnk.c @@ -21,7 +21,7 @@ void func_80A52134(EnDnk* this, PlayState* play); static s16 D_80A521A0 = 0; -ActorInit En_Dnk_InitVars = { +ActorProfile En_Dnk_Profile = { /**/ ACTOR_EN_DNK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dno/z_en_dno.c b/src/overlays/actors/ovl_En_Dno/z_en_dno.c index 32d9ecef94..d025986957 100644 --- a/src/overlays/actors/ovl_En_Dno/z_en_dno.c +++ b/src/overlays/actors/ovl_En_Dno/z_en_dno.c @@ -91,7 +91,7 @@ static AnimationSpeedInfo sAnimationSpeedInfo[EN_DNO_ANIM_MAX] = { { &gDekuButlerGrieveAnim, 1.0f, ANIMMODE_LOOP, 0.0f }, // EN_DNO_ANIM_GRIEVE }; -ActorInit En_Dno_InitVars = { +ActorProfile En_Dno_Profile = { /**/ ACTOR_EN_DNO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dnp/z_en_dnp.c b/src/overlays/actors/ovl_En_Dnp/z_en_dnp.c index fddb24063e..1f2814c893 100644 --- a/src/overlays/actors/ovl_En_Dnp/z_en_dnp.c +++ b/src/overlays/actors/ovl_En_Dnp/z_en_dnp.c @@ -32,7 +32,7 @@ typedef enum { /* 4 */ DEKU_PRINCESS_EYE_MAX } EnDnpEyeIndex; -ActorInit En_Dnp_InitVars = { +ActorProfile En_Dnp_Profile = { /**/ ACTOR_EN_DNP, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dnq/z_en_dnq.c b/src/overlays/actors/ovl_En_Dnq/z_en_dnq.c index 762f8de74e..63ed2123a2 100644 --- a/src/overlays/actors/ovl_En_Dnq/z_en_dnq.c +++ b/src/overlays/actors/ovl_En_Dnq/z_en_dnq.c @@ -61,7 +61,7 @@ static MsgScript D_80A53438[] = { /* 0x0008 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Dnq_InitVars = { +ActorProfile En_Dnq_Profile = { /**/ ACTOR_EN_DNQ, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dns/z_en_dns.c b/src/overlays/actors/ovl_En_Dns/z_en_dns.c index 2c41acb897..81cf64b101 100644 --- a/src/overlays/actors/ovl_En_Dns/z_en_dns.c +++ b/src/overlays/actors/ovl_En_Dns/z_en_dns.c @@ -79,7 +79,7 @@ static MsgScript D_8092DD00[] = { /* 0x0004 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Dns_InitVars = { +ActorProfile En_Dns_Profile = { /**/ ACTOR_EN_DNS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dodongo/z_en_dodongo.c b/src/overlays/actors/ovl_En_Dodongo/z_en_dodongo.c index b392c85351..5359b13cd9 100644 --- a/src/overlays/actors/ovl_En_Dodongo/z_en_dodongo.c +++ b/src/overlays/actors/ovl_En_Dodongo/z_en_dodongo.c @@ -36,7 +36,7 @@ void func_808786C8(EnDodongo* this, PlayState* play); void func_80878724(EnDodongo* this); void func_808787B0(EnDodongo* this, PlayState* play); -ActorInit En_Dodongo_InitVars = { +ActorProfile En_Dodongo_Profile = { /**/ ACTOR_EN_DODONGO, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Door/z_en_door.c b/src/overlays/actors/ovl_En_Door/z_en_door.c index 5e2025722e..2ae28235e3 100644 --- a/src/overlays/actors/ovl_En_Door/z_en_door.c +++ b/src/overlays/actors/ovl_En_Door/z_en_door.c @@ -85,7 +85,7 @@ ScheduleScript* sDoorSchedules[] = { static_assert(ARRAY_COUNT(sDoorSchedules) == ENDOOR_SCH_TYPE_MAX, "The entry count of `sDoorSchedules` should match the `EnDoorScheduleType` enum"); -ActorInit En_Door_InitVars = { +ActorProfile En_Door_Profile = { /**/ ACTOR_EN_DOOR, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Door_Etc/z_en_door_etc.c b/src/overlays/actors/ovl_En_Door_Etc/z_en_door_etc.c index 0fea781560..bff8cc30c6 100644 --- a/src/overlays/actors/ovl_En_Door_Etc/z_en_door_etc.c +++ b/src/overlays/actors/ovl_En_Door_Etc/z_en_door_etc.c @@ -20,7 +20,7 @@ void func_80AC21A0(EnDoorEtc* this, PlayState* play); void func_80AC2354(EnDoorEtc* this, PlayState* play); void EnDoorEtc_Draw(Actor* thisx, PlayState* play); -ActorInit En_Door_Etc_InitVars = { +ActorProfile En_Door_Etc_Profile = { /**/ ACTOR_EN_DOOR_ETC, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dragon/z_en_dragon.c b/src/overlays/actors/ovl_En_Dragon/z_en_dragon.c index f495b5e034..3dadc45681 100644 --- a/src/overlays/actors/ovl_En_Dragon/z_en_dragon.c +++ b/src/overlays/actors/ovl_En_Dragon/z_en_dragon.c @@ -44,7 +44,7 @@ typedef enum { static s32 sNumPythonsDead = 0; -ActorInit En_Dragon_InitVars = { +ActorProfile En_Dragon_Profile = { /**/ ACTOR_EN_DRAGON, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Drs/z_en_drs.c b/src/overlays/actors/ovl_En_Drs/z_en_drs.c index 8de21d00e6..8513535ce6 100644 --- a/src/overlays/actors/ovl_En_Drs/z_en_drs.c +++ b/src/overlays/actors/ovl_En_Drs/z_en_drs.c @@ -17,7 +17,7 @@ void EnDrs_Draw(Actor* thisx, PlayState* play); void EnDrs_Idle(EnDrs* this, PlayState* play); -ActorInit En_Drs_InitVars = { +ActorProfile En_Drs_Profile = { /**/ ACTOR_EN_DRS, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ds2n/z_en_ds2n.c b/src/overlays/actors/ovl_En_Ds2n/z_en_ds2n.c index f2dcace685..1b2d8dac07 100644 --- a/src/overlays/actors/ovl_En_Ds2n/z_en_ds2n.c +++ b/src/overlays/actors/ovl_En_Ds2n/z_en_ds2n.c @@ -20,7 +20,7 @@ void EnDs2n_Draw(Actor* thisx, PlayState* play); void EnDs2n_Idle(EnDs2n* this, PlayState* play); -ActorInit En_Ds2n_InitVars = { +ActorProfile En_Ds2n_Profile = { /**/ ACTOR_EN_DS2N, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dt/z_en_dt.c b/src/overlays/actors/ovl_En_Dt/z_en_dt.c index 3f6e21266f..18257c1be4 100644 --- a/src/overlays/actors/ovl_En_Dt/z_en_dt.c +++ b/src/overlays/actors/ovl_En_Dt/z_en_dt.c @@ -96,7 +96,7 @@ typedef enum { /* 3 */ EN_DT_BROW_TEXTURE_MAX } EnDtBrowTextures; -ActorInit En_Dt_InitVars = { +ActorProfile En_Dt_Profile = { /**/ ACTOR_EN_DT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Dy_Extra/z_en_dy_extra.c b/src/overlays/actors/ovl_En_Dy_Extra/z_en_dy_extra.c index d350ab6858..3f419f9864 100644 --- a/src/overlays/actors/ovl_En_Dy_Extra/z_en_dy_extra.c +++ b/src/overlays/actors/ovl_En_Dy_Extra/z_en_dy_extra.c @@ -19,7 +19,7 @@ void EnDyExtra_Draw(Actor* thisx, PlayState* play); void EnDyExtra_WaitForTrigger(EnDyExtra* this, PlayState* play); void EnDyExtra_Fall(EnDyExtra* this, PlayState* play); -ActorInit En_Dy_Extra_InitVars = { +ActorProfile En_Dy_Extra_Profile = { /**/ ACTOR_EN_DY_EXTRA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Egblock/z_en_egblock.c b/src/overlays/actors/ovl_En_Egblock/z_en_egblock.c index f57687c008..4d4648fbe7 100644 --- a/src/overlays/actors/ovl_En_Egblock/z_en_egblock.c +++ b/src/overlays/actors/ovl_En_Egblock/z_en_egblock.c @@ -29,7 +29,7 @@ void EnEgblock_SpawnEffect(EnEgblock* this, Vec3f* pos, s16 lifetime, s16 arg3); void EnEgblock_UpdateEffects(EnEgblock* this, PlayState* play); void EnEgblock_DrawEffects(EnEgblock* this, PlayState* play); -ActorInit En_Egblock_InitVars = { +ActorProfile En_Egblock_Profile = { /**/ ACTOR_EN_EGBLOCK, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Egol/z_en_egol.c b/src/overlays/actors/ovl_En_Egol/z_en_egol.c index fd86ca869e..559096f656 100644 --- a/src/overlays/actors/ovl_En_Egol/z_en_egol.c +++ b/src/overlays/actors/ovl_En_Egol/z_en_egol.c @@ -278,7 +278,7 @@ static Color_RGB8 sLightOrbColors[] = { { 255, 255, 255 }, // white }; -ActorInit En_Egol_InitVars = { +ActorProfile En_Egol_Profile = { /**/ ACTOR_EN_EGOL, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Elf/z_en_elf.c b/src/overlays/actors/ovl_En_Elf/z_en_elf.c index fd09d65fc2..00fd4264ec 100644 --- a/src/overlays/actors/ovl_En_Elf/z_en_elf.c +++ b/src/overlays/actors/ovl_En_Elf/z_en_elf.c @@ -34,7 +34,7 @@ void func_8088F5F4(EnElf* this, PlayState* play, s32 sparkleLife); void func_8089010C(Actor* thisx, PlayState* play); void func_808908D0(Vec3f* vec, PlayState* play, u32 action); -ActorInit En_Elf_InitVars = { +ActorProfile En_Elf_Profile = { /**/ ACTOR_EN_ELF, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Elfbub/z_en_elfbub.c b/src/overlays/actors/ovl_En_Elfbub/z_en_elfbub.c index bca65089d3..07ac03895c 100644 --- a/src/overlays/actors/ovl_En_Elfbub/z_en_elfbub.c +++ b/src/overlays/actors/ovl_En_Elfbub/z_en_elfbub.c @@ -20,7 +20,7 @@ void EnElfbub_Draw(Actor* thisx, PlayState* play2); void EnElfbub_Pop(EnElfbub* this, PlayState* play); void EnElfbub_Idle(EnElfbub* this, PlayState* play); -ActorInit En_Elfbub_InitVars = { +ActorProfile En_Elfbub_Profile = { /**/ ACTOR_EN_ELFBUB, /**/ ACTORCAT_MISC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Elfgrp/z_en_elfgrp.c b/src/overlays/actors/ovl_En_Elfgrp/z_en_elfgrp.c index c3d6bf69d1..8ee49726f2 100644 --- a/src/overlays/actors/ovl_En_Elfgrp/z_en_elfgrp.c +++ b/src/overlays/actors/ovl_En_Elfgrp/z_en_elfgrp.c @@ -66,7 +66,7 @@ typedef enum ElfgrpSpawnedFairyTypes { /* 1 */ SPAWNED_STRAY_FAIRY_TYPE_RETURNING // STRAY_FAIRY_TYPE_RETURNING_TO_FOUNTAIN } ElfgrpSpawnedFairyTypes; -ActorInit En_Elfgrp_InitVars = { +ActorProfile En_Elfgrp_Profile = { /**/ ACTOR_EN_ELFGRP, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Elforg/z_en_elforg.c b/src/overlays/actors/ovl_En_Elforg/z_en_elforg.c index 5af1a43e54..7d073b3237 100644 --- a/src/overlays/actors/ovl_En_Elforg/z_en_elforg.c +++ b/src/overlays/actors/ovl_En_Elforg/z_en_elforg.c @@ -22,7 +22,7 @@ void EnElforg_FreeFloating(EnElforg* this, PlayState* play); void EnElforg_SetupTrappedByEnemy(EnElforg* this, PlayState* play); void EnElforg_HiddenByCollider(EnElforg* this, PlayState* play); -ActorInit En_Elforg_InitVars = { +ActorProfile En_Elforg_Profile = { /**/ ACTOR_EN_ELFORG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Encount1/z_en_encount1.c b/src/overlays/actors/ovl_En_Encount1/z_en_encount1.c index 19d149861d..bccb1a6a7a 100644 --- a/src/overlays/actors/ovl_En_Encount1/z_en_encount1.c +++ b/src/overlays/actors/ovl_En_Encount1/z_en_encount1.c @@ -18,7 +18,7 @@ void EnEncount1_Update(Actor* thisx, PlayState* play); void EnEncount1_SpawnActor(EnEncount1* this, PlayState* play); -ActorInit En_Encount1_InitVars = { +ActorProfile En_Encount1_Profile = { /**/ ACTOR_EN_ENCOUNT1, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Encount2/z_en_encount2.c b/src/overlays/actors/ovl_En_Encount2/z_en_encount2.c index b8a42e85ac..8b49b44e17 100644 --- a/src/overlays/actors/ovl_En_Encount2/z_en_encount2.c +++ b/src/overlays/actors/ovl_En_Encount2/z_en_encount2.c @@ -26,7 +26,7 @@ void EnEncount2_InitEffects(EnEncount2* this, Vec3f* pos, s16 fadeDelay); void EnEncount2_UpdateEffects(EnEncount2* this, PlayState* play); void EnEncount2_DrawEffects(EnEncount2* this, PlayState* play); -ActorInit En_Encount2_InitVars = { +ActorProfile En_Encount2_Profile = { /**/ ACTOR_EN_ENCOUNT2, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Encount3/z_en_encount3.c b/src/overlays/actors/ovl_En_Encount3/z_en_encount3.c index 5950ae6b95..414b74d08c 100644 --- a/src/overlays/actors/ovl_En_Encount3/z_en_encount3.c +++ b/src/overlays/actors/ovl_En_Encount3/z_en_encount3.c @@ -22,7 +22,7 @@ void func_809AD084(EnEncount3* this, PlayState* play); void func_809AD194(EnEncount3* this, PlayState* play); void func_809AD1EC(EnEncount3* this, PlayState* play); -ActorInit En_Encount3_InitVars = { +ActorProfile En_Encount3_Profile = { /**/ ACTOR_EN_ENCOUNT3, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Encount4/z_en_encount4.c b/src/overlays/actors/ovl_En_Encount4/z_en_encount4.c index 03b301977f..06bf30cad1 100644 --- a/src/overlays/actors/ovl_En_Encount4/z_en_encount4.c +++ b/src/overlays/actors/ovl_En_Encount4/z_en_encount4.c @@ -20,7 +20,7 @@ void func_809C42A8(EnEncount4* this, PlayState* play); void func_809C4598(EnEncount4* this, PlayState* play); void func_809C464C(EnEncount4* this, PlayState* play); -ActorInit En_Encount4_InitVars = { +ActorProfile En_Encount4_Profile = { /**/ ACTOR_EN_ENCOUNT4, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero/z_en_ending_hero.c b/src/overlays/actors/ovl_En_Ending_Hero/z_en_ending_hero.c index b8f61cf22f..f7d0130a1f 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero/z_en_ending_hero.c +++ b/src/overlays/actors/ovl_En_Ending_Hero/z_en_ending_hero.c @@ -18,7 +18,7 @@ void EnEndingHero_Draw(Actor* thisx, PlayState* play); void EnEndingHero1_SetupIdle(EnEndingHero* this); void EnEndingHero1_Idle(EnEndingHero* this, PlayState* play); -ActorInit En_Ending_Hero_InitVars = { +ActorProfile En_Ending_Hero_Profile = { /**/ ACTOR_EN_ENDING_HERO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero2/z_en_ending_hero2.c b/src/overlays/actors/ovl_En_Ending_Hero2/z_en_ending_hero2.c index eeb02f6699..0a55347e61 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero2/z_en_ending_hero2.c +++ b/src/overlays/actors/ovl_En_Ending_Hero2/z_en_ending_hero2.c @@ -18,7 +18,7 @@ void EnEndingHero2_Draw(Actor* thisx, PlayState* play); void EnEndingHero2_SetupIdle(EnEndingHero2* this); void EnEndingHero2_Idle(EnEndingHero2* this, PlayState* play); -ActorInit En_Ending_Hero2_InitVars = { +ActorProfile En_Ending_Hero2_Profile = { /**/ ACTOR_EN_ENDING_HERO2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero3/z_en_ending_hero3.c b/src/overlays/actors/ovl_En_Ending_Hero3/z_en_ending_hero3.c index 3fe768c81b..e709cbb3b5 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero3/z_en_ending_hero3.c +++ b/src/overlays/actors/ovl_En_Ending_Hero3/z_en_ending_hero3.c @@ -18,7 +18,7 @@ void EnEndingHero3_Draw(Actor* thisx, PlayState* play); void EnEndingHero3_SetupIdle(EnEndingHero3* this); void EnEndingHero3_Idle(EnEndingHero3* this, PlayState* play); -ActorInit En_Ending_Hero3_InitVars = { +ActorProfile En_Ending_Hero3_Profile = { /**/ ACTOR_EN_ENDING_HERO3, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero4/z_en_ending_hero4.c b/src/overlays/actors/ovl_En_Ending_Hero4/z_en_ending_hero4.c index 6f4d42b030..2bd7e20a62 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero4/z_en_ending_hero4.c +++ b/src/overlays/actors/ovl_En_Ending_Hero4/z_en_ending_hero4.c @@ -18,7 +18,7 @@ void EnEndingHero4_Draw(Actor* thisx, PlayState* play); void EnEndingHero4_SetupIdle(EnEndingHero4* this); void EnEndingHero4_Idle(EnEndingHero4* this, PlayState* play); -ActorInit En_Ending_Hero4_InitVars = { +ActorProfile En_Ending_Hero4_Profile = { /**/ ACTOR_EN_ENDING_HERO4, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero5/z_en_ending_hero5.c b/src/overlays/actors/ovl_En_Ending_Hero5/z_en_ending_hero5.c index e470dae2fc..46723648b2 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero5/z_en_ending_hero5.c +++ b/src/overlays/actors/ovl_En_Ending_Hero5/z_en_ending_hero5.c @@ -18,7 +18,7 @@ void EnEndingHero5_Draw(Actor* thisx, PlayState* play); void EnEndingHero5_SetupIdle(EnEndingHero5* this); void EnEndingHero5_Idle(EnEndingHero5* this, PlayState* play); -ActorInit En_Ending_Hero5_InitVars = { +ActorProfile En_Ending_Hero5_Profile = { /**/ ACTOR_EN_ENDING_HERO5, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ending_Hero6/z_en_ending_hero6.c b/src/overlays/actors/ovl_En_Ending_Hero6/z_en_ending_hero6.c index e2b8e8d4ec..1061ad4915 100644 --- a/src/overlays/actors/ovl_En_Ending_Hero6/z_en_ending_hero6.c +++ b/src/overlays/actors/ovl_En_Ending_Hero6/z_en_ending_hero6.c @@ -18,7 +18,7 @@ void EnEndingHero6_Draw(Actor* thisx, PlayState* play); void EnEndingHero6_SetupIdle(EnEndingHero6* this); void EnEndingHero6_Idle(EnEndingHero6* this, PlayState* play); -ActorInit En_Ending_Hero6_InitVars = { +ActorProfile En_Ending_Hero6_Profile = { /**/ ACTOR_EN_ENDING_HERO6, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Estone/z_en_estone.c b/src/overlays/actors/ovl_En_Estone/z_en_estone.c index a313eb2e09..7ab15084aa 100644 --- a/src/overlays/actors/ovl_En_Estone/z_en_estone.c +++ b/src/overlays/actors/ovl_En_Estone/z_en_estone.c @@ -23,7 +23,7 @@ void EnEstone_SpawnEffect(EnEstone* this, Vec3f* pos, Vec3f* velocity, Vec3f* ac void EnEstone_UpdateEffects(EnEstone* this, PlayState* play); void EnEstone_DrawEffects(EnEstone* this, PlayState* play); -ActorInit En_Estone_InitVars = { +ActorProfile En_Estone_Profile = { /**/ ACTOR_EN_ESTONE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fall/z_en_fall.c b/src/overlays/actors/ovl_En_Fall/z_en_fall.c index 16327d78df..8ecd49bdf8 100644 --- a/src/overlays/actors/ovl_En_Fall/z_en_fall.c +++ b/src/overlays/actors/ovl_En_Fall/z_en_fall.c @@ -63,7 +63,7 @@ typedef struct { EnFallDebrisEffect debrisEffects[EN_FALL_DEBRIS_EFFECT_COUNT]; -ActorInit En_Fall_InitVars = { +ActorProfile En_Fall_Profile = { /**/ ACTOR_EN_FALL, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fall2/z_en_fall2.c b/src/overlays/actors/ovl_En_Fall2/z_en_fall2.c index 6d282e2d12..2f72079014 100644 --- a/src/overlays/actors/ovl_En_Fall2/z_en_fall2.c +++ b/src/overlays/actors/ovl_En_Fall2/z_en_fall2.c @@ -18,7 +18,7 @@ void EnFall2_Draw(Actor* thisx, PlayState* play); void EnFall2_DoNothing(EnFall2* this, PlayState* play); void EnFall2_HandleCutscene(EnFall2* this, PlayState* play); -ActorInit En_Fall2_InitVars = { +ActorProfile En_Fall2_Profile = { /**/ ACTOR_EN_FALL2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Famos/z_en_famos.c b/src/overlays/actors/ovl_En_Famos/z_en_famos.c index da38f6e2bd..c52a769773 100644 --- a/src/overlays/actors/ovl_En_Famos/z_en_famos.c +++ b/src/overlays/actors/ovl_En_Famos/z_en_famos.c @@ -47,7 +47,7 @@ void EnFamos_DeathExplosion(EnFamos* this, PlayState* play); void EnFamos_SetupDeathFade(EnFamos* this); void EnFamos_DeathFade(EnFamos* this, PlayState* play); -ActorInit En_Famos_InitVars = { +ActorProfile En_Famos_Profile = { /**/ ACTOR_EN_FAMOS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fg/z_en_fg.c b/src/overlays/actors/ovl_En_Fg/z_en_fg.c index 575ac9a4ad..5fc5a85f9a 100644 --- a/src/overlays/actors/ovl_En_Fg/z_en_fg.c +++ b/src/overlays/actors/ovl_En_Fg/z_en_fg.c @@ -32,7 +32,7 @@ typedef enum { /* 5 */ BETAFROG_DMGEFFECT_ICEARROW } BetaFrogDamageEffect; -ActorInit En_Fg_InitVars = { +ActorProfile En_Fg_Profile = { /**/ ACTOR_EN_FG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fire_Rock/z_en_fire_rock.c b/src/overlays/actors/ovl_En_Fire_Rock/z_en_fire_rock.c index 31ab42ff18..c363a11a3c 100644 --- a/src/overlays/actors/ovl_En_Fire_Rock/z_en_fire_rock.c +++ b/src/overlays/actors/ovl_En_Fire_Rock/z_en_fire_rock.c @@ -15,7 +15,7 @@ void EnFireRock_Destroy(Actor* thisx, PlayState* play); void EnFireRock_Update(Actor* thisx, PlayState* play); void EnFireRock_Draw(Actor* thisx, PlayState* play); -ActorInit En_Fire_Rock_InitVars = { +ActorProfile En_Fire_Rock_Profile = { /**/ ACTOR_EN_FIRE_ROCK, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Firefly/z_en_firefly.c b/src/overlays/actors/ovl_En_Firefly/z_en_firefly.c index c3d77576cd..e3f198ce36 100644 --- a/src/overlays/actors/ovl_En_Firefly/z_en_firefly.c +++ b/src/overlays/actors/ovl_En_Firefly/z_en_firefly.c @@ -44,7 +44,7 @@ typedef enum { /* 2 */ KEESE_AURA_ICE } KeeseAuraType; -ActorInit En_Firefly_InitVars = { +ActorProfile En_Firefly_Profile = { /**/ ACTOR_EN_FIREFLY, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Firefly2/z_en_firefly2.c b/src/overlays/actors/ovl_En_Firefly2/z_en_firefly2.c index 8621e10c8d..4383f8dcf4 100644 --- a/src/overlays/actors/ovl_En_Firefly2/z_en_firefly2.c +++ b/src/overlays/actors/ovl_En_Firefly2/z_en_firefly2.c @@ -16,7 +16,7 @@ void EnFirefly2_Destroy(Actor* thisx, PlayState* play); void EnFirefly2_Update(Actor* thisx, PlayState* play); void EnFirefly2_Draw(Actor* thisx, PlayState* play); -ActorInit En_Firefly2_InitVars = { +ActorProfile En_Firefly2_Profile = { /**/ ACTOR_EN_FIREFLY2, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fish/z_en_fish.c b/src/overlays/actors/ovl_En_Fish/z_en_fish.c index 644a7c8236..1f35f401f1 100644 --- a/src/overlays/actors/ovl_En_Fish/z_en_fish.c +++ b/src/overlays/actors/ovl_En_Fish/z_en_fish.c @@ -67,7 +67,7 @@ static Color_RGB8 D_8091FA94[] = { { 215, 97, 7 }, }; -ActorInit En_Fish_InitVars = { +ActorProfile En_Fish_Profile = { /**/ ACTOR_EN_FISH, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fish2/z_en_fish2.c b/src/overlays/actors/ovl_En_Fish2/z_en_fish2.c index c5d8d33362..7e520819f4 100644 --- a/src/overlays/actors/ovl_En_Fish2/z_en_fish2.c +++ b/src/overlays/actors/ovl_En_Fish2/z_en_fish2.c @@ -48,7 +48,7 @@ static s32 D_80B2B2EC = 0; static s32 D_80B2B2F0 = 0; static Actor* D_80B2B2F4 = NULL; -ActorInit En_Fish2_InitVars = { +ActorProfile En_Fish2_Profile = { /**/ ACTOR_EN_FISH2, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fishing/z_en_fishing.c b/src/overlays/actors/ovl_En_Fishing/z_en_fishing.c index 633f907828..b4a047d643 100644 --- a/src/overlays/actors/ovl_En_Fishing/z_en_fishing.c +++ b/src/overlays/actors/ovl_En_Fishing/z_en_fishing.c @@ -201,7 +201,7 @@ s16 D_80917272; u8 D_80917274; Vec3f D_80917278; -ActorInit En_Fishing_InitVars = { +ActorProfile En_Fishing_Profile = { /**/ ACTOR_EN_FISHING, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Floormas/z_en_floormas.c b/src/overlays/actors/ovl_En_Floormas/z_en_floormas.c index 28e1ce80eb..6d38a583d8 100644 --- a/src/overlays/actors/ovl_En_Floormas/z_en_floormas.c +++ b/src/overlays/actors/ovl_En_Floormas/z_en_floormas.c @@ -60,7 +60,7 @@ void func_808D2D30(EnFloormas* this, PlayState* play); void func_808D2DC0(EnFloormas* this, PlayState* play); void func_808D3754(Actor* thisx, PlayState* play); -ActorInit En_Floormas_InitVars = { +ActorProfile En_Floormas_Profile = { /**/ ACTOR_EN_FLOORMAS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fr/z_en_fr.c b/src/overlays/actors/ovl_En_Fr/z_en_fr.c index b2d1497955..2b6c046ce3 100644 --- a/src/overlays/actors/ovl_En_Fr/z_en_fr.c +++ b/src/overlays/actors/ovl_En_Fr/z_en_fr.c @@ -14,7 +14,7 @@ void EnFr_Init(Actor* thisx, PlayState* play); void EnFr_Destroy(Actor* thisx, PlayState* play); void EnFr_Update(Actor* thisx, PlayState* play); -ActorInit En_Fr_InitVars = { +ActorProfile En_Fr_Profile = { /**/ ACTOR_EN_FR, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fsn/z_en_fsn.c b/src/overlays/actors/ovl_En_Fsn/z_en_fsn.c index ff10043f00..1ed9e1badc 100644 --- a/src/overlays/actors/ovl_En_Fsn/z_en_fsn.c +++ b/src/overlays/actors/ovl_En_Fsn/z_en_fsn.c @@ -52,7 +52,7 @@ typedef enum { /* 2 */ ENFSN_CUTSCENESTATE_PLAYING } EnFsnCutsceneState; -ActorInit En_Fsn_InitVars = { +ActorProfile En_Fsn_Profile = { /**/ ACTOR_EN_FSN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fu/z_en_fu.c b/src/overlays/actors/ovl_En_Fu/z_en_fu.c index 4b85aa1041..e63bb5ec86 100644 --- a/src/overlays/actors/ovl_En_Fu/z_en_fu.c +++ b/src/overlays/actors/ovl_En_Fu/z_en_fu.c @@ -55,7 +55,7 @@ void func_80964694(EnFu* this, EnFuUnkStruct* ptr, Vec3f* arg2, s32 len); void func_809647EC(PlayState* play, EnFuUnkStruct* ptr, s32 len); void func_80964950(PlayState* play, EnFuUnkStruct* ptr, s32 len); -ActorInit En_Fu_InitVars = { +ActorProfile En_Fu_Profile = { /**/ ACTOR_EN_FU, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fu_Kago/z_en_fu_kago.c b/src/overlays/actors/ovl_En_Fu_Kago/z_en_fu_kago.c index 402b350af7..d84cef4bd2 100644 --- a/src/overlays/actors/ovl_En_Fu_Kago/z_en_fu_kago.c +++ b/src/overlays/actors/ovl_En_Fu_Kago/z_en_fu_kago.c @@ -28,7 +28,7 @@ void func_80AD0028(EnFuKago* this, PlayState* play); void func_80AD0274(EnFuKago* this); void func_80AD0288(EnFuKago* this, PlayState* play); -ActorInit En_Fu_Kago_InitVars = { +ActorProfile En_Fu_Kago_Profile = { /**/ ACTOR_EN_FU_KAGO, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fu_Mato/z_en_fu_mato.c b/src/overlays/actors/ovl_En_Fu_Mato/z_en_fu_mato.c index e92a45f346..58663cc6e2 100644 --- a/src/overlays/actors/ovl_En_Fu_Mato/z_en_fu_mato.c +++ b/src/overlays/actors/ovl_En_Fu_Mato/z_en_fu_mato.c @@ -27,7 +27,7 @@ void func_80ACECFC(EnFuMato* this, PlayState* play); void func_80ACEFC4(EnFuMato* this); void func_80ACEFD8(EnFuMato* this, PlayState* play); -ActorInit En_Fu_Mato_InitVars = { +ActorProfile En_Fu_Mato_Profile = { /**/ ACTOR_EN_FU_MATO, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Fz/z_en_fz.c b/src/overlays/actors/ovl_En_Fz/z_en_fz.c index 72c45c2789..7d333a1431 100644 --- a/src/overlays/actors/ovl_En_Fz/z_en_fz.c +++ b/src/overlays/actors/ovl_En_Fz/z_en_fz.c @@ -49,7 +49,7 @@ void func_809340BC(EnFz* this, Vec3f* a, Vec3f* b, Vec3f* c, f32 arg4, f32 arg5, void func_80934178(EnFz* this, PlayState* play); void func_80934464(EnFz* this, PlayState* play); -ActorInit En_Fz_InitVars = { +ActorProfile En_Fz_Profile = { /**/ ACTOR_EN_FZ, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gakufu/z_en_gakufu.c b/src/overlays/actors/ovl_En_Gakufu/z_en_gakufu.c index 9303e683ee..208d521496 100644 --- a/src/overlays/actors/ovl_En_Gakufu/z_en_gakufu.c +++ b/src/overlays/actors/ovl_En_Gakufu/z_en_gakufu.c @@ -25,7 +25,7 @@ void EnGakufu_GiveReward(EnGakufu* this, PlayState* play); void EnGakufu_PlayRewardCutscene(EnGakufu* this, PlayState* play); void EnGakufu_WaitForSong(EnGakufu* this, PlayState* play); -ActorInit En_Gakufu_InitVars = { +ActorProfile En_Gakufu_Profile = { /**/ ACTOR_EN_GAKUFU, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gamelupy/z_en_gamelupy.c b/src/overlays/actors/ovl_En_Gamelupy/z_en_gamelupy.c index c46c429876..dce6504748 100644 --- a/src/overlays/actors/ovl_En_Gamelupy/z_en_gamelupy.c +++ b/src/overlays/actors/ovl_En_Gamelupy/z_en_gamelupy.c @@ -23,7 +23,7 @@ void EnGamelupy_SetupFindSharedMemory(EnGamelupy* this); void EnGamelupy_SetupIdle(EnGamelupy* this); void EnGamelupy_SetupCollected(EnGamelupy* this); -ActorInit En_Gamelupy_InitVars = { +ActorProfile En_Gamelupy_Profile = { /**/ ACTOR_EN_GAMELUPY, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gb2/z_en_gb2.c b/src/overlays/actors/ovl_En_Gb2/z_en_gb2.c index dbb9a21130..0ea7786140 100644 --- a/src/overlays/actors/ovl_En_Gb2/z_en_gb2.c +++ b/src/overlays/actors/ovl_En_Gb2/z_en_gb2.c @@ -35,7 +35,7 @@ void func_80B111AC(EnGb2* this, PlayState* play); void func_80B11268(EnGb2* this, PlayState* play); void func_80B11344(EnGb2* this, PlayState* play); -ActorInit En_Gb2_InitVars = { +ActorProfile En_Gb2_Profile = { /**/ ACTOR_EN_GB2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ge1/z_en_ge1.c b/src/overlays/actors/ovl_En_Ge1/z_en_ge1.c index 50282c0664..206aec95ff 100644 --- a/src/overlays/actors/ovl_En_Ge1/z_en_ge1.c +++ b/src/overlays/actors/ovl_En_Ge1/z_en_ge1.c @@ -15,7 +15,7 @@ void EnGe1_Destroy(Actor* thisx, PlayState* play); void EnGe1_Update(Actor* thisx, PlayState* play); void EnGe1_Draw(Actor* thisx, PlayState* play); -ActorInit En_Ge1_InitVars = { +ActorProfile En_Ge1_Profile = { /**/ ACTOR_EN_GE1, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ge2/z_en_ge2.c b/src/overlays/actors/ovl_En_Ge2/z_en_ge2.c index 357e80a16d..f5b89b7b53 100644 --- a/src/overlays/actors/ovl_En_Ge2/z_en_ge2.c +++ b/src/overlays/actors/ovl_En_Ge2/z_en_ge2.c @@ -23,7 +23,7 @@ void EnGe2_GuardStationary(EnGe2* this, PlayState* play); s32 EnGe2_ValidatePictograph(PlayState* play, Actor* thisx); -ActorInit En_Ge2_InitVars = { +ActorProfile En_Ge2_Profile = { /**/ ACTOR_EN_GE2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ge3/z_en_ge3.c b/src/overlays/actors/ovl_En_Ge3/z_en_ge3.c index 3115453f5c..5e735bca12 100644 --- a/src/overlays/actors/ovl_En_Ge3/z_en_ge3.c +++ b/src/overlays/actors/ovl_En_Ge3/z_en_ge3.c @@ -35,7 +35,7 @@ typedef enum GerudoAveilAnimation { /* 9 */ GERUDO_AVEIL_ANIM_MAX } GerudoAveilAnimation; -ActorInit En_Ge3_InitVars = { +ActorProfile En_Ge3_Profile = { /**/ ACTOR_EN_GE3, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Geg/z_en_geg.c b/src/overlays/actors/ovl_En_Geg/z_en_geg.c index 87fbd5a6d2..70286bf838 100644 --- a/src/overlays/actors/ovl_En_Geg/z_en_geg.c +++ b/src/overlays/actors/ovl_En_Geg/z_en_geg.c @@ -36,7 +36,7 @@ void func_80BB32AC(EnGeg* this, PlayState* play); void func_80BB3318(EnGeg* this, PlayState* play); void func_80BB347C(EnGeg* this, PlayState* play); -ActorInit En_Geg_InitVars = { +ActorProfile En_Geg_Profile = { /**/ ACTOR_EN_GEG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gg/z_en_gg.c b/src/overlays/actors/ovl_En_Gg/z_en_gg.c index 3064ee265a..2cd5b24236 100644 --- a/src/overlays/actors/ovl_En_Gg/z_en_gg.c +++ b/src/overlays/actors/ovl_En_Gg/z_en_gg.c @@ -25,7 +25,7 @@ void func_80B359DC(EnGg* this, PlayState* play); void func_80B363E8(EnGgStruct* ptr, PlayState* play, Vec3f* arg1, Vec3f* arg2, Vec3f* arg3); void func_80B364D4(EnGgStruct* ptr, PlayState* play); -ActorInit En_Gg_InitVars = { +ActorProfile En_Gg_Profile = { /**/ ACTOR_EN_GG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gg2/z_en_gg2.c b/src/overlays/actors/ovl_En_Gg2/z_en_gg2.c index 6cf6ffb44d..23987016ce 100644 --- a/src/overlays/actors/ovl_En_Gg2/z_en_gg2.c +++ b/src/overlays/actors/ovl_En_Gg2/z_en_gg2.c @@ -26,7 +26,7 @@ void func_80B3B5D4(EnGg2* this, PlayState* play); s32 EnGg2_HasReachedPoint(EnGg2* this, Path* path, s32 pointIndex); f32 func_80B3B7E4(Path* path, s32 arg1, Vec3f* arg2, Vec3s* arg3); -ActorInit En_Gg2_InitVars = { +ActorProfile En_Gg2_Profile = { /**/ ACTOR_EN_GG2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Giant/z_en_giant.c b/src/overlays/actors/ovl_En_Giant/z_en_giant.c index 2d7c0d89cf..f601039dc9 100644 --- a/src/overlays/actors/ovl_En_Giant/z_en_giant.c +++ b/src/overlays/actors/ovl_En_Giant/z_en_giant.c @@ -50,7 +50,7 @@ typedef enum { /* 15 */ GIANT_CUEID_HOLDING_UP_MOON_IN_CLOCK_TOWER } GiantCueId; -ActorInit En_Giant_InitVars = { +ActorProfile En_Giant_Profile = { /**/ ACTOR_EN_GIANT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ginko_Man/z_en_ginko_man.c b/src/overlays/actors/ovl_En_Ginko_Man/z_en_ginko_man.c index 789fb19891..076a2d3337 100644 --- a/src/overlays/actors/ovl_En_Ginko_Man/z_en_ginko_man.c +++ b/src/overlays/actors/ovl_En_Ginko_Man/z_en_ginko_man.c @@ -29,7 +29,7 @@ void EnGinkoMan_Stamp(EnGinkoMan* this, PlayState* play); void EnGinkoMan_Dialogue(EnGinkoMan* this, PlayState* play); void EnGinkoMan_SwitchAnimation(EnGinkoMan* this, PlayState* play); -ActorInit En_Ginko_Man_InitVars = { +ActorProfile En_Ginko_Man_Profile = { /**/ ACTOR_EN_GINKO_MAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_GirlA/z_en_girla.c b/src/overlays/actors/ovl_En_GirlA/z_en_girla.c index 89537787fc..5ee4c0a6bb 100644 --- a/src/overlays/actors/ovl_En_GirlA/z_en_girla.c +++ b/src/overlays/actors/ovl_En_GirlA/z_en_girla.c @@ -51,7 +51,7 @@ void EnGirlA_BuyShieldMirror(PlayState* play, EnGirlA* this); void EnGirlA_BuyFanfare(PlayState* play, EnGirlA* this); -ActorInit En_GirlA_InitVars = { +ActorProfile En_GirlA_Profile = { /**/ ACTOR_EN_GIRLA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gk/z_en_gk.c b/src/overlays/actors/ovl_En_Gk/z_en_gk.c index 0368b03e88..1251f5e8db 100644 --- a/src/overlays/actors/ovl_En_Gk/z_en_gk.c +++ b/src/overlays/actors/ovl_En_Gk/z_en_gk.c @@ -32,7 +32,7 @@ void func_80B5253C(EnGk* this, PlayState* play); void func_80B525E0(EnGk* this, PlayState* play); void func_80B52654(EnGk* this, PlayState* play); -ActorInit En_Gk_InitVars = { +ActorProfile En_Gk_Profile = { /**/ ACTOR_EN_GK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gm/z_en_gm.c b/src/overlays/actors/ovl_En_Gm/z_en_gm.c index fb8125ed57..08f4b430c3 100644 --- a/src/overlays/actors/ovl_En_Gm/z_en_gm.c +++ b/src/overlays/actors/ovl_En_Gm/z_en_gm.c @@ -254,7 +254,7 @@ static MsgScript D_80951C34[] = { /* 0x0007 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Gm_InitVars = { +ActorProfile En_Gm_Profile = { /**/ ACTOR_EN_GM, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Go/z_en_go.c b/src/overlays/actors/ovl_En_Go/z_en_go.c index e2b60c6cab..d105b55068 100644 --- a/src/overlays/actors/ovl_En_Go/z_en_go.c +++ b/src/overlays/actors/ovl_En_Go/z_en_go.c @@ -574,7 +574,7 @@ static MsgScript sMsgScriptGoronSleeping[] = { /* 0x0005 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Go_InitVars = { +ActorProfile En_Go_Profile = { /**/ ACTOR_EN_GO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Goroiwa/z_en_goroiwa.c b/src/overlays/actors/ovl_En_Goroiwa/z_en_goroiwa.c index 928bff6f3f..a50058b2cc 100644 --- a/src/overlays/actors/ovl_En_Goroiwa/z_en_goroiwa.c +++ b/src/overlays/actors/ovl_En_Goroiwa/z_en_goroiwa.c @@ -33,7 +33,7 @@ void func_80941FA4(EnGoroiwa* this, PlayState* play); void func_80942084(EnGoroiwa* this); void func_809420F0(EnGoroiwa* this, PlayState* play); -ActorInit En_Goroiwa_InitVars = { +ActorProfile En_Goroiwa_Profile = { /**/ ACTOR_EN_GOROIWA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Grasshopper/z_en_grasshopper.c b/src/overlays/actors/ovl_En_Grasshopper/z_en_grasshopper.c index 4ce8983ceb..9fed0d0d48 100644 --- a/src/overlays/actors/ovl_En_Grasshopper/z_en_grasshopper.c +++ b/src/overlays/actors/ovl_En_Grasshopper/z_en_grasshopper.c @@ -210,7 +210,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, DRAGONFLY_DMGEFF_HOOK), }; -ActorInit En_Grasshopper_InitVars = { +ActorProfile En_Grasshopper_Profile = { /**/ ACTOR_EN_GRASSHOPPER, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Gs/z_en_gs.c b/src/overlays/actors/ovl_En_Gs/z_en_gs.c index 5543894fd6..c0e56b9b3e 100644 --- a/src/overlays/actors/ovl_En_Gs/z_en_gs.c +++ b/src/overlays/actors/ovl_En_Gs/z_en_gs.c @@ -40,7 +40,7 @@ s32 func_809995A4(EnGs* this, PlayState* play); void func_80999A8C(EnGs* this, PlayState* play); void func_80999AC0(EnGs* this); -ActorInit En_Gs_InitVars = { +ActorProfile En_Gs_Profile = { /**/ ACTOR_EN_GS, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Guard_Nuts/z_en_guard_nuts.c b/src/overlays/actors/ovl_En_Guard_Nuts/z_en_guard_nuts.c index dcb61c9d4a..2dfcad7880 100644 --- a/src/overlays/actors/ovl_En_Guard_Nuts/z_en_guard_nuts.c +++ b/src/overlays/actors/ovl_En_Guard_Nuts/z_en_guard_nuts.c @@ -25,7 +25,7 @@ void EnGuardNuts_Burrow(EnGuardNuts* this, PlayState* play); void EnGuardNuts_SetupUnburrow(EnGuardNuts* this, PlayState* play); void EnGuardNuts_Unburrow(EnGuardNuts* this, PlayState* play); -ActorInit En_Guard_Nuts_InitVars = { +ActorProfile En_Guard_Nuts_Profile = { /**/ ACTOR_EN_GUARD_NUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Guruguru/z_en_guruguru.c b/src/overlays/actors/ovl_En_Guruguru/z_en_guruguru.c index e64c7abea0..c060c93c5e 100644 --- a/src/overlays/actors/ovl_En_Guruguru/z_en_guruguru.c +++ b/src/overlays/actors/ovl_En_Guruguru/z_en_guruguru.c @@ -26,7 +26,7 @@ void func_80BC7520(EnGuruguru* this, PlayState* play); extern ColliderCylinderInit D_80BC79A0; -ActorInit En_Guruguru_InitVars = { +ActorProfile En_Guruguru_Profile = { /**/ ACTOR_EN_GURUGURU, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hakurock/z_en_hakurock.c b/src/overlays/actors/ovl_En_Hakurock/z_en_hakurock.c index 9b1dff3f22..8e0d38127f 100644 --- a/src/overlays/actors/ovl_En_Hakurock/z_en_hakurock.c +++ b/src/overlays/actors/ovl_En_Hakurock/z_en_hakurock.c @@ -58,7 +58,7 @@ typedef enum EnHakurockEffectType { /* 3 */ EN_HAKUROCK_EFFECT_TYPE_STALACTITE_DESTROYED } EnHakurockEffectType; -ActorInit En_Hakurock_InitVars = { +ActorProfile En_Hakurock_Profile = { /**/ ACTOR_EN_HAKUROCK, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hanabi/z_en_hanabi.c b/src/overlays/actors/ovl_En_Hanabi/z_en_hanabi.c index b8514e4dc2..f59cecb6dd 100644 --- a/src/overlays/actors/ovl_En_Hanabi/z_en_hanabi.c +++ b/src/overlays/actors/ovl_En_Hanabi/z_en_hanabi.c @@ -21,7 +21,7 @@ void func_80B23910(EnHanabi* this, PlayState* play); void func_80B23934(EnHanabi* this, PlayState* play); void EnHanabi_Draw(Actor* thisx, PlayState* play); -ActorInit En_Hanabi_InitVars = { +ActorProfile En_Hanabi_Profile = { /**/ ACTOR_EN_HANABI, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hata/z_en_hata.c b/src/overlays/actors/ovl_En_Hata/z_en_hata.c index fdec846e93..5a60589130 100644 --- a/src/overlays/actors/ovl_En_Hata/z_en_hata.c +++ b/src/overlays/actors/ovl_En_Hata/z_en_hata.c @@ -16,7 +16,7 @@ void EnHata_Destroy(Actor* thisx, PlayState* play); void EnHata_Update(Actor* thisx, PlayState* play2); void EnHata_Draw(Actor* thisx, PlayState* play); -ActorInit En_Hata_InitVars = { +ActorProfile En_Hata_Profile = { /**/ ACTOR_EN_HATA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Heishi/z_en_heishi.c b/src/overlays/actors/ovl_En_Heishi/z_en_heishi.c index 5e904225f7..d4b79533e5 100644 --- a/src/overlays/actors/ovl_En_Heishi/z_en_heishi.c +++ b/src/overlays/actors/ovl_En_Heishi/z_en_heishi.c @@ -20,7 +20,7 @@ void EnHeishi_SetHeadRotation(EnHeishi* this); void EnHeishi_SetupIdle(EnHeishi* this); void EnHeishi_Idle(EnHeishi* this, PlayState* play); -ActorInit En_Heishi_InitVars = { +ActorProfile En_Heishi_Profile = { /**/ ACTOR_EN_HEISHI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hg/z_en_hg.c b/src/overlays/actors/ovl_En_Hg/z_en_hg.c index 64308a6d1e..729e4b3ccc 100644 --- a/src/overlays/actors/ovl_En_Hg/z_en_hg.c +++ b/src/overlays/actors/ovl_En_Hg/z_en_hg.c @@ -34,7 +34,7 @@ typedef enum { /* 3 */ HG_CS_SONG_OF_HEALING } HgCsIndex; -ActorInit En_Hg_InitVars = { +ActorProfile En_Hg_Profile = { /**/ ACTOR_EN_HG, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hgo/z_en_hgo.c b/src/overlays/actors/ovl_En_Hgo/z_en_hgo.c index ba2091b8a4..c1cc7b0b67 100644 --- a/src/overlays/actors/ovl_En_Hgo/z_en_hgo.c +++ b/src/overlays/actors/ovl_En_Hgo/z_en_hgo.c @@ -35,7 +35,7 @@ typedef enum { /* 2 */ HGO_EYE_CLOSED } EyeState; -ActorInit En_Hgo_InitVars = { +ActorProfile En_Hgo_Profile = { /**/ ACTOR_EN_HGO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hidden_Nuts/z_en_hidden_nuts.c b/src/overlays/actors/ovl_En_Hidden_Nuts/z_en_hidden_nuts.c index f35a94acb3..947f21c11b 100644 --- a/src/overlays/actors/ovl_En_Hidden_Nuts/z_en_hidden_nuts.c +++ b/src/overlays/actors/ovl_En_Hidden_Nuts/z_en_hidden_nuts.c @@ -31,7 +31,7 @@ void func_80BDBB48(EnHiddenNuts* this, PlayState* play); void func_80BDBE70(EnHiddenNuts* this, PlayState* play); void func_80BDBED4(EnHiddenNuts* this, PlayState* play); -ActorInit En_Hidden_Nuts_InitVars = { +ActorProfile En_Hidden_Nuts_Profile = { /**/ ACTOR_EN_HIDDEN_NUTS, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hint_Skb/z_en_hint_skb.c b/src/overlays/actors/ovl_En_Hint_Skb/z_en_hint_skb.c index af8b6350d5..213ca3179c 100644 --- a/src/overlays/actors/ovl_En_Hint_Skb/z_en_hint_skb.c +++ b/src/overlays/actors/ovl_En_Hint_Skb/z_en_hint_skb.c @@ -39,7 +39,7 @@ s32 func_80C21414(EnHintSkb* this); void func_80C21468(EnHintSkb* this, PlayState* play); void func_80C215E4(PlayState* play, EnHintSkb* this, Vec3f* arg2); -ActorInit En_Hint_Skb_InitVars = { +ActorProfile En_Hint_Skb_Profile = { /**/ ACTOR_EN_HINT_SKB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hit_Tag/z_en_hit_tag.c b/src/overlays/actors/ovl_En_Hit_Tag/z_en_hit_tag.c index 5109ad9ed6..d981392399 100644 --- a/src/overlays/actors/ovl_En_Hit_Tag/z_en_hit_tag.c +++ b/src/overlays/actors/ovl_En_Hit_Tag/z_en_hit_tag.c @@ -16,7 +16,7 @@ void EnHitTag_Update(Actor* thisx, PlayState* play); void EnHitTag_WaitForHit(EnHitTag* this, PlayState* play); -ActorInit En_Hit_Tag_InitVars = { +ActorProfile En_Hit_Tag_Profile = { /**/ ACTOR_EN_HIT_TAG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Holl/z_en_holl.c b/src/overlays/actors/ovl_En_Holl/z_en_holl.c index ca3b99bc75..1fa6bf1dde 100644 --- a/src/overlays/actors/ovl_En_Holl/z_en_holl.c +++ b/src/overlays/actors/ovl_En_Holl/z_en_holl.c @@ -57,7 +57,7 @@ void EnHoll_TransparentIdle(EnHoll* this, PlayState* play); void EnHoll_VerticalBgCoverIdle(EnHoll* this, PlayState* play); void EnHoll_RoomTransitionIdle(EnHoll* this, PlayState* play); -ActorInit En_Holl_InitVars = { +ActorProfile En_Holl_Profile = { /**/ ACTOR_EN_HOLL, /**/ ACTORCAT_DOOR, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Honotrap/z_en_honotrap.c b/src/overlays/actors/ovl_En_Honotrap/z_en_honotrap.c index a2c341c8d2..718b5e3e78 100644 --- a/src/overlays/actors/ovl_En_Honotrap/z_en_honotrap.c +++ b/src/overlays/actors/ovl_En_Honotrap/z_en_honotrap.c @@ -73,7 +73,7 @@ static TexturePtr sSilverEyeTextures[HONOTRAP_EYE_MAX] = { static s32 sTexturesNotDesegmented = true; -ActorInit En_Honotrap_InitVars = { +ActorProfile En_Honotrap_Profile = { /**/ ACTOR_EN_HONOTRAP, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Horse/z_en_horse.c b/src/overlays/actors/ovl_En_Horse/z_en_horse.c index 1c43117e65..fb285a9dd0 100644 --- a/src/overlays/actors/ovl_En_Horse/z_en_horse.c +++ b/src/overlays/actors/ovl_En_Horse/z_en_horse.c @@ -162,7 +162,7 @@ static SkeletonHeader* sSkeletonHeaders[HORSE_TYPE_MAX] = { NULL, // HORSE_TYPE_DONKEY }; -ActorInit En_Horse_InitVars = { +ActorProfile En_Horse_Profile = { /**/ ACTOR_EN_HORSE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Horse_Game_Check/z_en_horse_game_check.c b/src/overlays/actors/ovl_En_Horse_Game_Check/z_en_horse_game_check.c index 24bd1a94a6..6f308f32e5 100644 --- a/src/overlays/actors/ovl_En_Horse_Game_Check/z_en_horse_game_check.c +++ b/src/overlays/actors/ovl_En_Horse_Game_Check/z_en_horse_game_check.c @@ -37,7 +37,7 @@ s32 func_808F99B0(EnHorseGameCheck* this, PlayState* play); s32 func_808F99C4(EnHorseGameCheck* this, PlayState* play); s32 func_808F99D8(EnHorseGameCheck* this, PlayState* play); -ActorInit En_Horse_Game_Check_InitVars = { +ActorProfile En_Horse_Game_Check_Profile = { /**/ ACTOR_EN_HORSE_GAME_CHECK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Horse_Link_Child/z_en_horse_link_child.c b/src/overlays/actors/ovl_En_Horse_Link_Child/z_en_horse_link_child.c index 20e0d9385d..92d59fe889 100644 --- a/src/overlays/actors/ovl_En_Horse_Link_Child/z_en_horse_link_child.c +++ b/src/overlays/actors/ovl_En_Horse_Link_Child/z_en_horse_link_child.c @@ -30,7 +30,7 @@ void EnHorseLinkChild_ActionFunc5(EnHorseLinkChild* this, PlayState* play); void EnHorseLinkChild_SetupActionFunc4(EnHorseLinkChild* this); void EnHorseLinkChild_ActionFunc4(EnHorseLinkChild* this, PlayState* play); -ActorInit En_Horse_Link_Child_InitVars = { +ActorProfile En_Horse_Link_Child_Profile = { /**/ ACTOR_EN_HORSE_LINK_CHILD, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hs/z_en_hs.c b/src/overlays/actors/ovl_En_Hs/z_en_hs.c index 96b4c8219d..26ddded8df 100644 --- a/src/overlays/actors/ovl_En_Hs/z_en_hs.c +++ b/src/overlays/actors/ovl_En_Hs/z_en_hs.c @@ -23,7 +23,7 @@ void EnHs_SceneTransitToBunnyHoodDialogue(EnHs* this, PlayState* play); void func_80953354(EnHs* this, PlayState* play); void func_8095345C(EnHs* this, PlayState* play); -ActorInit En_Hs_InitVars = { +ActorProfile En_Hs_Profile = { /**/ ACTOR_EN_HS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Hs2/z_en_hs2.c b/src/overlays/actors/ovl_En_Hs2/z_en_hs2.c index ecf2923583..63c80495d9 100644 --- a/src/overlays/actors/ovl_En_Hs2/z_en_hs2.c +++ b/src/overlays/actors/ovl_En_Hs2/z_en_hs2.c @@ -17,7 +17,7 @@ void EnHs2_Draw(Actor* thisx, PlayState* play); void EnHs2_DoNothing(EnHs2* this, PlayState* play); -ActorInit En_Hs2_InitVars = { +ActorProfile En_Hs2_Profile = { /**/ ACTOR_EN_HS2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ig/z_en_ig.c b/src/overlays/actors/ovl_En_Ig/z_en_ig.c index 5448d8bf76..e97cfcc2ba 100644 --- a/src/overlays/actors/ovl_En_Ig/z_en_ig.c +++ b/src/overlays/actors/ovl_En_Ig/z_en_ig.c @@ -113,7 +113,7 @@ static MsgScript D_80BF33F0[] = { /* 0x0004 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Ig_InitVars = { +ActorProfile En_Ig_Profile = { /**/ ACTOR_EN_IG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ik/z_en_ik.c b/src/overlays/actors/ovl_En_Ik/z_en_ik.c index c04657d5a8..b423eb5d05 100644 --- a/src/overlays/actors/ovl_En_Ik/z_en_ik.c +++ b/src/overlays/actors/ovl_En_Ik/z_en_ik.c @@ -75,7 +75,7 @@ static Gfx* sIronKnuckleArmorType[3][3] = { { gIronKnuckleWhiteArmorMaterialDL, gIronKnuckleGoldArmorMaterialDL, gIronKnuckleGoldArmorMaterialDL }, }; -ActorInit En_Ik_InitVars = { +ActorProfile En_Ik_Profile = { /**/ ACTOR_EN_IK, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_In/z_en_in.c b/src/overlays/actors/ovl_En_In/z_en_in.c index 967464197c..2946faf053 100644 --- a/src/overlays/actors/ovl_En_In/z_en_in.c +++ b/src/overlays/actors/ovl_En_In/z_en_in.c @@ -22,7 +22,7 @@ void func_808F3690(EnIn* this, PlayState* play); void func_808F5A34(EnIn* this, PlayState* play); s32 func_808F5994(EnIn* this, PlayState* play, Vec3f* arg2, s16 arg3); -ActorInit En_In_InitVars = { +ActorProfile En_In_Profile = { /**/ ACTOR_EN_IN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Insect/z_en_insect.c b/src/overlays/actors/ovl_En_Insect/z_en_insect.c index 9d3c63d6ab..427a0a6f10 100644 --- a/src/overlays/actors/ovl_En_Insect/z_en_insect.c +++ b/src/overlays/actors/ovl_En_Insect/z_en_insect.c @@ -31,7 +31,7 @@ void func_8091B984(EnInsect* this, PlayState* play); s16 D_8091BD60 = 0; -ActorInit En_Insect_InitVars = { +ActorProfile En_Insect_Profile = { /**/ ACTOR_EN_INSECT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Invadepoh/z_en_invadepoh.c b/src/overlays/actors/ovl_En_Invadepoh/z_en_invadepoh.c index ac4b81d9b3..5805db48f7 100644 --- a/src/overlays/actors/ovl_En_Invadepoh/z_en_invadepoh.c +++ b/src/overlays/actors/ovl_En_Invadepoh/z_en_invadepoh.c @@ -234,7 +234,7 @@ void EnInvadepoh_AlienAbductor_AbductRomani(EnInvadepoh* this, PlayState* play); s32 EnInvadepoh_SnapToFloor(EnInvadepoh* this); s32 EnInvadepoh_StepToXZ(f32* pValueX, f32* pValueZ, f32 targetX, f32 targetZ, f32 step); -ActorInit En_Invadepoh_InitVars = { +ActorProfile En_Invadepoh_Profile = { /**/ ACTOR_EN_INVADEPOH, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Invadepoh_Demo/z_en_invadepoh_demo.c b/src/overlays/actors/ovl_En_Invadepoh_Demo/z_en_invadepoh_demo.c index 07f2e46968..eaecbc864b 100644 --- a/src/overlays/actors/ovl_En_Invadepoh_Demo/z_en_invadepoh_demo.c +++ b/src/overlays/actors/ovl_En_Invadepoh_Demo/z_en_invadepoh_demo.c @@ -94,7 +94,7 @@ typedef enum { /* 4 */ EN_INVADEPOH_DEMO_UFO_CUEID_MAX } EnInvadepohDemoUfoCueId; -ActorInit En_Invadepoh_Demo_InitVars = { +ActorProfile En_Invadepoh_Demo_Profile = { /**/ ACTOR_EN_INVADEPOH_DEMO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Invisible_Ruppe/z_en_invisible_ruppe.c b/src/overlays/actors/ovl_En_Invisible_Ruppe/z_en_invisible_ruppe.c index ad00a53716..ac925ea698 100644 --- a/src/overlays/actors/ovl_En_Invisible_Ruppe/z_en_invisible_ruppe.c +++ b/src/overlays/actors/ovl_En_Invisible_Ruppe/z_en_invisible_ruppe.c @@ -18,7 +18,7 @@ void func_80C258A0(EnInvisibleRuppe* this, PlayState* play); void func_80C2590C(EnInvisibleRuppe* this, PlayState* play); void func_80C259E8(EnInvisibleRuppe* this, PlayState* play); -ActorInit En_Invisible_Ruppe_InitVars = { +ActorProfile En_Invisible_Ruppe_Profile = { /**/ ACTOR_EN_INVISIBLE_RUPPE, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ishi/z_en_ishi.c b/src/overlays/actors/ovl_En_Ishi/z_en_ishi.c index bcaea0f55a..2b1c1125df 100644 --- a/src/overlays/actors/ovl_En_Ishi/z_en_ishi.c +++ b/src/overlays/actors/ovl_En_Ishi/z_en_ishi.c @@ -45,7 +45,7 @@ static s16 D_8095F690 = 0; static s16 D_8095F694 = 0; -ActorInit En_Ishi_InitVars = { +ActorProfile En_Ishi_Profile = { /**/ ACTOR_EN_ISHI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ja/z_en_ja.c b/src/overlays/actors/ovl_En_Ja/z_en_ja.c index 558a3f1c3b..4cb6d60c65 100644 --- a/src/overlays/actors/ovl_En_Ja/z_en_ja.c +++ b/src/overlays/actors/ovl_En_Ja/z_en_ja.c @@ -103,7 +103,7 @@ MsgScript D_80BC366C[] = { /* 0x001E 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Ja_InitVars = { +ActorProfile En_Ja_Profile = { /**/ ACTOR_EN_JA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Jc_Mato/z_en_jc_mato.c b/src/overlays/actors/ovl_En_Jc_Mato/z_en_jc_mato.c index 4f67ea874e..52ca92f535 100644 --- a/src/overlays/actors/ovl_En_Jc_Mato/z_en_jc_mato.c +++ b/src/overlays/actors/ovl_En_Jc_Mato/z_en_jc_mato.c @@ -20,7 +20,7 @@ s32 EnJcMato_CheckForHit(EnJcMato* this, PlayState* play); void EnJcMato_SetupIdle(EnJcMato* this); void EnJcMato_Idle(EnJcMato* this, PlayState* play); -ActorInit En_Jc_Mato_InitVars = { +ActorProfile En_Jc_Mato_Profile = { /**/ ACTOR_EN_JC_MATO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Jg/z_en_jg.c b/src/overlays/actors/ovl_En_Jg/z_en_jg.c index df0914ff3e..ecb3713939 100644 --- a/src/overlays/actors/ovl_En_Jg/z_en_jg.c +++ b/src/overlays/actors/ovl_En_Jg/z_en_jg.c @@ -42,7 +42,7 @@ typedef enum { /* 3 */ EN_JG_ACTION_LULLABY_INTRO_CS } EnJgAction; -ActorInit En_Jg_InitVars = { +ActorProfile En_Jg_Profile = { /**/ ACTOR_EN_JG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Jgame_Tsn/z_en_jgame_tsn.c b/src/overlays/actors/ovl_En_Jgame_Tsn/z_en_jgame_tsn.c index 0433e5b845..a7815196aa 100644 --- a/src/overlays/actors/ovl_En_Jgame_Tsn/z_en_jgame_tsn.c +++ b/src/overlays/actors/ovl_En_Jgame_Tsn/z_en_jgame_tsn.c @@ -36,7 +36,7 @@ void func_80C147B4(EnJgameTsn* this, PlayState* play); s32 func_80C149B0(PlayState* play, EnJgameTsnStruct* arg1); s32 func_80C14BCC(EnJgameTsn* this, PlayState* play); -ActorInit En_Jgame_Tsn_InitVars = { +ActorProfile En_Jgame_Tsn_Profile = { /**/ ACTOR_EN_JGAME_TSN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Js/z_en_js.c b/src/overlays/actors/ovl_En_Js/z_en_js.c index 614e771d5e..63b43e7b6d 100644 --- a/src/overlays/actors/ovl_En_Js/z_en_js.c +++ b/src/overlays/actors/ovl_En_Js/z_en_js.c @@ -27,7 +27,7 @@ void func_8096A104(EnJs* this, PlayState* play); void func_8096A38C(EnJs* this, PlayState* play); void func_8096A6F4(EnJs* this, PlayState* play); -ActorInit En_Js_InitVars = { +ActorProfile En_Js_Profile = { /**/ ACTOR_EN_JS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Jso/z_en_jso.c b/src/overlays/actors/ovl_En_Jso/z_en_jso.c index 29711f9428..d0d7b2ed69 100644 --- a/src/overlays/actors/ovl_En_Jso/z_en_jso.c +++ b/src/overlays/actors/ovl_En_Jso/z_en_jso.c @@ -152,7 +152,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, EN_JSO_DMGEFF_NONE), }; -ActorInit En_Jso_InitVars = { +ActorProfile En_Jso_Profile = { /**/ ACTOR_EN_JSO, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Jso2/z_en_jso2.c b/src/overlays/actors/ovl_En_Jso2/z_en_jso2.c index da43bb0a79..dbec21c597 100644 --- a/src/overlays/actors/ovl_En_Jso2/z_en_jso2.c +++ b/src/overlays/actors/ovl_En_Jso2/z_en_jso2.c @@ -214,7 +214,7 @@ static Vec3f sSlashFlameOffsets[] = { { 600.0f, -100.0f, -100.0f }, { 300.0f, -100.0f, -80.0f }, { 100.0f, -100.0f, -60.0f }, }; -ActorInit En_Jso2_InitVars = { +ActorProfile En_Jso2_Profile = { /**/ ACTOR_EN_JSO2, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kaizoku/z_en_kaizoku.c b/src/overlays/actors/ovl_En_Kaizoku/z_en_kaizoku.c index 40e8ef7d3f..fbb60d67fb 100644 --- a/src/overlays/actors/ovl_En_Kaizoku/z_en_kaizoku.c +++ b/src/overlays/actors/ovl_En_Kaizoku/z_en_kaizoku.c @@ -151,7 +151,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, KAIZOKU_DMGEFF_E), }; -ActorInit En_Kaizoku_InitVars = { +ActorProfile En_Kaizoku_Profile = { /**/ ACTOR_EN_KAIZOKU, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kakasi/z_en_kakasi.c b/src/overlays/actors/ovl_En_Kakasi/z_en_kakasi.c index 4d18001883..60b8213af2 100644 --- a/src/overlays/actors/ovl_En_Kakasi/z_en_kakasi.c +++ b/src/overlays/actors/ovl_En_Kakasi/z_en_kakasi.c @@ -70,7 +70,7 @@ static ColliderCylinderInit D_80971D80 = { { 20, 70, 0, { 0, 0, 0 } }, }; -ActorInit En_Kakasi_InitVars = { +ActorProfile En_Kakasi_Profile = { /**/ ACTOR_EN_KAKASI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kame/z_en_kame.c b/src/overlays/actors/ovl_En_Kame/z_en_kame.c index bf154ba889..796af2a1e7 100644 --- a/src/overlays/actors/ovl_En_Kame/z_en_kame.c +++ b/src/overlays/actors/ovl_En_Kame/z_en_kame.c @@ -57,7 +57,7 @@ typedef enum { /* 4 */ EN_KAME_EYE_MAX } EnKameEyeTexture; -ActorInit En_Kame_InitVars = { +ActorProfile En_Kame_Profile = { /**/ ACTOR_EN_KAME, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kanban/z_en_kanban.c b/src/overlays/actors/ovl_En_Kanban/z_en_kanban.c index b5b3850855..7ad9e6c23f 100644 --- a/src/overlays/actors/ovl_En_Kanban/z_en_kanban.c +++ b/src/overlays/actors/ovl_En_Kanban/z_en_kanban.c @@ -17,7 +17,7 @@ void EnKanban_Destroy(Actor* thisx, PlayState* play); void EnKanban_Update(Actor* thisx, PlayState* play); void EnKanban_Draw(Actor* thisx, PlayState* play); -ActorInit En_Kanban_InitVars = { +ActorProfile En_Kanban_Profile = { /**/ ACTOR_EN_KANBAN, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Karebaba/z_en_karebaba.c b/src/overlays/actors/ovl_En_Karebaba/z_en_karebaba.c index 34cfb174b3..beeb2c9f3d 100644 --- a/src/overlays/actors/ovl_En_Karebaba/z_en_karebaba.c +++ b/src/overlays/actors/ovl_En_Karebaba/z_en_karebaba.c @@ -39,7 +39,7 @@ void EnKarebaba_Retract(EnKarebaba* this, PlayState* play); void EnKarebaba_SetupDead(EnKarebaba* this); void EnKarebaba_Dead(EnKarebaba* this, PlayState* play); -ActorInit En_Karebaba_InitVars = { +ActorProfile En_Karebaba_Profile = { /**/ ACTOR_EN_KAREBABA, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kbt/z_en_kbt.c b/src/overlays/actors/ovl_En_Kbt/z_en_kbt.c index e22303888d..45b3ae5110 100644 --- a/src/overlays/actors/ovl_En_Kbt/z_en_kbt.c +++ b/src/overlays/actors/ovl_En_Kbt/z_en_kbt.c @@ -39,7 +39,7 @@ typedef enum EnKbtAnimation { /* 13 */ ENKBT_ANIM_MAX } EnKbtAnimation; -ActorInit En_Kbt_InitVars = { +ActorProfile En_Kbt_Profile = { /**/ ACTOR_EN_KBT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kendo_Js/z_en_kendo_js.c b/src/overlays/actors/ovl_En_Kendo_Js/z_en_kendo_js.c index f71c8551d3..ca4e5b4d4d 100644 --- a/src/overlays/actors/ovl_En_Kendo_Js/z_en_kendo_js.c +++ b/src/overlays/actors/ovl_En_Kendo_Js/z_en_kendo_js.c @@ -37,7 +37,7 @@ s32 EnKendoJs_MovePlayerToPos(PlayState* play, Vec3f targetPos); void func_80B279F0(EnKendoJs* this, PlayState* play, s32 arg2); void func_80B27A90(EnKendoJs* this, PlayState* play); -ActorInit En_Kendo_Js_InitVars = { +ActorProfile En_Kendo_Js_Profile = { /**/ ACTOR_EN_KENDO_JS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kgy/z_en_kgy.c b/src/overlays/actors/ovl_En_Kgy/z_en_kgy.c index 2b5ad5a423..8e10d115de 100644 --- a/src/overlays/actors/ovl_En_Kgy/z_en_kgy.c +++ b/src/overlays/actors/ovl_En_Kgy/z_en_kgy.c @@ -45,7 +45,7 @@ typedef enum EnKgyAnimation { /* 10 */ ENKGY_ANIM_MAX } EnKgyAnimation; -ActorInit En_Kgy_InitVars = { +ActorProfile En_Kgy_Profile = { /**/ ACTOR_EN_KGY, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kitan/z_en_kitan.c b/src/overlays/actors/ovl_En_Kitan/z_en_kitan.c index eafbe78e70..9ddf96dfeb 100644 --- a/src/overlays/actors/ovl_En_Kitan/z_en_kitan.c +++ b/src/overlays/actors/ovl_En_Kitan/z_en_kitan.c @@ -18,7 +18,7 @@ void EnKitan_Draw(Actor* thisx, PlayState* play); void EnKitan_Talk(EnKitan* this, PlayState* play); void EnKitan_WaitToAppear(EnKitan* this, PlayState* play); -ActorInit En_Kitan_InitVars = { +ActorProfile En_Kitan_Profile = { /**/ ACTOR_EN_KITAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Knight/z_en_knight.c b/src/overlays/actors/ovl_En_Knight/z_en_knight.c index 26c86ea3c8..96cc2d329c 100644 --- a/src/overlays/actors/ovl_En_Knight/z_en_knight.c +++ b/src/overlays/actors/ovl_En_Knight/z_en_knight.c @@ -369,7 +369,7 @@ static Color_RGBA8 sDustPrimColor = { 60, 50, 20, 255 }; static Color_RGBA8 sDustEnvColor = { 40, 30, 30, 255 }; -const ActorInit En_Knight_InitVars = { +const ActorProfile En_Knight_Profile = { /**/ ACTOR_EN_KNIGHT, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kujiya/z_en_kujiya.c b/src/overlays/actors/ovl_En_Kujiya/z_en_kujiya.c index 96a09c2e9a..5b0d946921 100644 --- a/src/overlays/actors/ovl_En_Kujiya/z_en_kujiya.c +++ b/src/overlays/actors/ovl_En_Kujiya/z_en_kujiya.c @@ -34,7 +34,7 @@ void EnKujiya_TurnToOpen(EnKujiya* this, PlayState* play); void EnKujiya_SetupTurnToClosed(EnKujiya* this); void EnKujiya_TurnToClosed(EnKujiya* this, PlayState* play); -ActorInit En_Kujiya_InitVars = { +ActorProfile En_Kujiya_Profile = { /**/ ACTOR_EN_KUJIYA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kusa/z_en_kusa.c b/src/overlays/actors/ovl_En_Kusa/z_en_kusa.c index 02ee8b4b77..aa78dc0fc3 100644 --- a/src/overlays/actors/ovl_En_Kusa/z_en_kusa.c +++ b/src/overlays/actors/ovl_En_Kusa/z_en_kusa.c @@ -58,7 +58,7 @@ s16 D_80936CDC; s16 D_80936CDE; s16 D_80936CE0; -ActorInit En_Kusa_InitVars = { +ActorProfile En_Kusa_Profile = { /**/ ACTOR_EN_KUSA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Kusa2/z_en_kusa2.c b/src/overlays/actors/ovl_En_Kusa2/z_en_kusa2.c index 304bb98d90..cd9889ee39 100644 --- a/src/overlays/actors/ovl_En_Kusa2/z_en_kusa2.c +++ b/src/overlays/actors/ovl_En_Kusa2/z_en_kusa2.c @@ -53,7 +53,7 @@ s16 D_80A60B0C; s16 D_80A60B0E; s16 D_80A60B10; -ActorInit En_Kusa2_InitVars = { +ActorProfile En_Kusa2_Profile = { /**/ ACTOR_EN_KUSA2, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Lift_Nuts/z_en_lift_nuts.c b/src/overlays/actors/ovl_En_Lift_Nuts/z_en_lift_nuts.c index d7d8dfecd3..dbe186e5d2 100644 --- a/src/overlays/actors/ovl_En_Lift_Nuts/z_en_lift_nuts.c +++ b/src/overlays/actors/ovl_En_Lift_Nuts/z_en_lift_nuts.c @@ -49,7 +49,7 @@ void EnLiftNuts_Hide(EnLiftNuts* this, PlayState* play); void EnLiftNuts_UpdateEyes(EnLiftNuts* this); void EnLiftNuts_SpawnDust(EnLiftNuts* this, PlayState* play); -ActorInit En_Lift_Nuts_InitVars = { +ActorProfile En_Lift_Nuts_Profile = { /**/ ACTOR_EN_LIFT_NUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Light/z_en_light.c b/src/overlays/actors/ovl_En_Light/z_en_light.c index 7690bf7b8e..2db0042b62 100644 --- a/src/overlays/actors/ovl_En_Light/z_en_light.c +++ b/src/overlays/actors/ovl_En_Light/z_en_light.c @@ -18,7 +18,7 @@ void EnLight_Draw(Actor* thisx, PlayState* play); void func_80865F38(Actor* thisx, PlayState* play); -ActorInit En_Light_InitVars = { +ActorProfile En_Light_Profile = { /**/ ACTOR_EN_LIGHT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Look_Nuts/z_en_look_nuts.c b/src/overlays/actors/ovl_En_Look_Nuts/z_en_look_nuts.c index 227c2f92be..ece237b482 100644 --- a/src/overlays/actors/ovl_En_Look_Nuts/z_en_look_nuts.c +++ b/src/overlays/actors/ovl_En_Look_Nuts/z_en_look_nuts.c @@ -24,7 +24,7 @@ void EnLookNuts_RunToPlayer(EnLookNuts* this, PlayState* play); void EnLookNuts_SetupSendPlayerToSpawn(EnLookNuts* this); void EnLookNuts_SendPlayerToSpawn(EnLookNuts* this, PlayState* play); -ActorInit En_Look_Nuts_InitVars = { +ActorProfile En_Look_Nuts_Profile = { /**/ ACTOR_EN_LOOK_NUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_M_Fire1/z_en_m_fire1.c b/src/overlays/actors/ovl_En_M_Fire1/z_en_m_fire1.c index 267557feae..4106a2ab97 100644 --- a/src/overlays/actors/ovl_En_M_Fire1/z_en_m_fire1.c +++ b/src/overlays/actors/ovl_En_M_Fire1/z_en_m_fire1.c @@ -14,7 +14,7 @@ void EnMFire1_Init(Actor* thisx, PlayState* play); void EnMFire1_Destroy(Actor* thisx, PlayState* play); void EnMFire1_Update(Actor* thisx, PlayState* play); -ActorInit En_M_Fire1_InitVars = { +ActorProfile En_M_Fire1_Profile = { /**/ ACTOR_EN_M_FIRE1, /**/ ACTORCAT_MISC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_M_Thunder/z_en_m_thunder.c b/src/overlays/actors/ovl_En_M_Thunder/z_en_m_thunder.c index deb55fe4f1..2b705aa981 100644 --- a/src/overlays/actors/ovl_En_M_Thunder/z_en_m_thunder.c +++ b/src/overlays/actors/ovl_En_M_Thunder/z_en_m_thunder.c @@ -29,7 +29,7 @@ void EnMThunder_UnkType_Attack(EnMThunder* this, PlayState* play); #define ENMTHUNDER_TYPE_MAX 4 -ActorInit En_M_Thunder_InitVars = { +ActorProfile En_M_Thunder_Profile = { /**/ ACTOR_EN_M_THUNDER, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ma4/z_en_ma4.c b/src/overlays/actors/ovl_En_Ma4/z_en_ma4.c index c4d0c16e98..b012ccb8c7 100644 --- a/src/overlays/actors/ovl_En_Ma4/z_en_ma4.c +++ b/src/overlays/actors/ovl_En_Ma4/z_en_ma4.c @@ -54,7 +54,7 @@ typedef enum { /* 3 */ MA4_STATE_AFTERDESCRIBETHEMCS } EnMa4State; -ActorInit En_Ma4_InitVars = { +ActorProfile En_Ma4_Profile = { /**/ ACTOR_EN_MA4, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ma_Yto/z_en_ma_yto.c b/src/overlays/actors/ovl_En_Ma_Yto/z_en_ma_yto.c index 7c61db4f2c..101449c0b9 100644 --- a/src/overlays/actors/ovl_En_Ma_Yto/z_en_ma_yto.c +++ b/src/overlays/actors/ovl_En_Ma_Yto/z_en_ma_yto.c @@ -69,7 +69,7 @@ s32 EnMaYto_HasSpokenToPlayerToday(void); s32 EnMaYto_HasSpokenToPlayer(void); void EnMaYto_SetTalkedFlag(void); -ActorInit En_Ma_Yto_InitVars = { +ActorProfile En_Ma_Yto_Profile = { /**/ ACTOR_EN_MA_YTO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ma_Yts/z_en_ma_yts.c b/src/overlays/actors/ovl_En_Ma_Yts/z_en_ma_yts.c index 5afb1e231e..b9ceb93e38 100644 --- a/src/overlays/actors/ovl_En_Ma_Yts/z_en_ma_yts.c +++ b/src/overlays/actors/ovl_En_Ma_Yts/z_en_ma_yts.c @@ -29,7 +29,7 @@ void EnMaYts_SetFaceExpression(EnMaYts* this, s16 overrideEyeTexIndex, s16 mouth void EnMaYts_DrawSleeping(Actor* thisx, PlayState* play); -ActorInit En_Ma_Yts_InitVars = { +ActorProfile En_Ma_Yts_Profile = { /**/ ACTOR_EN_MA_YTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mag/z_en_mag.c b/src/overlays/actors/ovl_En_Mag/z_en_mag.c index 12ed58cc4a..1b5a65d388 100644 --- a/src/overlays/actors/ovl_En_Mag/z_en_mag.c +++ b/src/overlays/actors/ovl_En_Mag/z_en_mag.c @@ -88,7 +88,7 @@ static s16 sZeldaEffectColorTargetIndex = 0; static s16 sTextAlphaTargetIndex = 0; static s16 sTextAlphaTimer = 20; -ActorInit En_Mag_InitVars = { +ActorProfile En_Mag_Profile = { /**/ ACTOR_EN_MAG, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Maruta/z_en_maruta.c b/src/overlays/actors/ovl_En_Maruta/z_en_maruta.c index 07b9e4ea7e..0d35e2ff2b 100644 --- a/src/overlays/actors/ovl_En_Maruta/z_en_maruta.c +++ b/src/overlays/actors/ovl_En_Maruta/z_en_maruta.c @@ -36,7 +36,7 @@ void func_80B38060(EnMaruta* this, Vec3f* arg1); void func_80B3828C(Vec3f* arg0, Vec3f* arg1, s16 arg2, s16 arg3, s32 arg4); void func_80B382E4(PlayState* play, Vec3f arg1); -ActorInit En_Maruta_InitVars = { +ActorProfile En_Maruta_Profile = { /**/ ACTOR_EN_MARUTA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Minideath/z_en_minideath.c b/src/overlays/actors/ovl_En_Minideath/z_en_minideath.c index 36250c0ab6..90e31d382f 100644 --- a/src/overlays/actors/ovl_En_Minideath/z_en_minideath.c +++ b/src/overlays/actors/ovl_En_Minideath/z_en_minideath.c @@ -39,7 +39,7 @@ void EnMinideath_SetupReturn(EnMinideath* this); void EnMinideath_SetupIntro3(EnMinideath* this); void EnMinideath_SetupDead(EnMinideath* this); -ActorInit En_Minideath_InitVars = { +ActorProfile En_Minideath_Profile = { /**/ ACTOR_EN_MINIDEATH, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Minifrog/z_en_minifrog.c b/src/overlays/actors/ovl_En_Minifrog/z_en_minifrog.c index 9f39250f63..321b57c97f 100644 --- a/src/overlays/actors/ovl_En_Minifrog/z_en_minifrog.c +++ b/src/overlays/actors/ovl_En_Minifrog/z_en_minifrog.c @@ -25,7 +25,7 @@ void EnMinifrog_UpdateMissingFrog(Actor* thisx, PlayState* play); void EnMinifrog_YellowFrogDialog(EnMinifrog* this, PlayState* play); void EnMinifrog_SetupYellowFrogDialog(EnMinifrog* this, PlayState* play); -ActorInit En_Minifrog_InitVars = { +ActorProfile En_Minifrog_Profile = { /**/ ACTOR_EN_MINIFROG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Minislime/z_en_minislime.c b/src/overlays/actors/ovl_En_Minislime/z_en_minislime.c index f0f32ceccd..d79aaf3b6a 100644 --- a/src/overlays/actors/ovl_En_Minislime/z_en_minislime.c +++ b/src/overlays/actors/ovl_En_Minislime/z_en_minislime.c @@ -41,7 +41,7 @@ void EnMinislime_MoveToGekko(EnMinislime* this, PlayState* play); void EnMinislime_SetupGekkoThrow(EnMinislime* this); void EnMinislime_GekkoThrow(EnMinislime* this, PlayState* play); -ActorInit En_Minislime_InitVars = { +ActorProfile En_Minislime_Profile = { /**/ ACTOR_EN_MINISLIME, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mk/z_en_mk.c b/src/overlays/actors/ovl_En_Mk/z_en_mk.c index a91d06159c..26412d51f2 100644 --- a/src/overlays/actors/ovl_En_Mk/z_en_mk.c +++ b/src/overlays/actors/ovl_En_Mk/z_en_mk.c @@ -23,7 +23,7 @@ void func_80959C94(EnMk* this, PlayState* play); void func_80959D28(EnMk* this, PlayState* play); void func_80959E18(EnMk* this, PlayState* play); -ActorInit En_Mk_InitVars = { +ActorProfile En_Mk_Profile = { /**/ ACTOR_EN_MK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mkk/z_en_mkk.c b/src/overlays/actors/ovl_En_Mkk/z_en_mkk.c index 0a29cd04a6..c04eab93c8 100644 --- a/src/overlays/actors/ovl_En_Mkk/z_en_mkk.c +++ b/src/overlays/actors/ovl_En_Mkk/z_en_mkk.c @@ -35,7 +35,7 @@ void func_80A4E67C(EnMkk* this); void func_80A4E84C(EnMkk* this); void func_80A4EBBC(EnMkk* this, PlayState* play); -ActorInit En_Mkk_InitVars = { +ActorProfile En_Mkk_Profile = { /**/ ACTOR_EN_MKK, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mm/z_en_mm.c b/src/overlays/actors/ovl_En_Mm/z_en_mm.c index 09a0193bed..62f629b616 100644 --- a/src/overlays/actors/ovl_En_Mm/z_en_mm.c +++ b/src/overlays/actors/ovl_En_Mm/z_en_mm.c @@ -21,7 +21,7 @@ void func_80965DB4(EnMm* this, PlayState* play); void func_8096611C(EnMm* this, PlayState* play); void EnMm_SetupAction(EnMm* this, EnMmActionFunc actionFunc); -ActorInit En_Mm_InitVars = { +ActorProfile En_Mm_Profile = { /**/ ACTOR_EN_MM, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mm2/z_en_mm2.c b/src/overlays/actors/ovl_En_Mm2/z_en_mm2.c index 448107f23d..db50498d37 100644 --- a/src/overlays/actors/ovl_En_Mm2/z_en_mm2.c +++ b/src/overlays/actors/ovl_En_Mm2/z_en_mm2.c @@ -18,7 +18,7 @@ void EnMm2_Draw(Actor* thisx, PlayState* play); void EnMm2_Reading(EnMm2* this, PlayState* play); void EnMm2_WaitForRead(EnMm2* this, PlayState* play); -ActorInit En_Mm2_InitVars = { +ActorProfile En_Mm2_Profile = { /**/ ACTOR_EN_MM2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mm3/z_en_mm3.c b/src/overlays/actors/ovl_En_Mm3/z_en_mm3.c index 42543e9858..f29d3e2166 100644 --- a/src/overlays/actors/ovl_En_Mm3/z_en_mm3.c +++ b/src/overlays/actors/ovl_En_Mm3/z_en_mm3.c @@ -28,7 +28,7 @@ void func_80A6FEEC(EnMm3* this, PlayState* play); s32 func_80A6FFAC(EnMm3* this, PlayState* play); void func_80A70084(EnMm3* this, PlayState* play); -ActorInit En_Mm3_InitVars = { +ActorProfile En_Mm3_Profile = { /**/ ACTOR_EN_MM3, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mnk/z_en_mnk.c b/src/overlays/actors/ovl_En_Mnk/z_en_mnk.c index 5dcdfaf878..338674a1b4 100644 --- a/src/overlays/actors/ovl_En_Mnk/z_en_mnk.c +++ b/src/overlays/actors/ovl_En_Mnk/z_en_mnk.c @@ -42,7 +42,7 @@ void func_80AB92CC(EnMnk* this, PlayState* play); s32 EnMnk_ValidatePictograph(PlayState* play, Actor* thisx); s32 EnMnk_AlreadyExists(EnMnk* this, PlayState* play); -ActorInit En_Mnk_InitVars = { +ActorProfile En_Mnk_Profile = { /**/ ACTOR_EN_MNK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ms/z_en_ms.c b/src/overlays/actors/ovl_En_Ms/z_en_ms.c index 45bf09b576..3a4ffbad3c 100644 --- a/src/overlays/actors/ovl_En_Ms/z_en_ms.c +++ b/src/overlays/actors/ovl_En_Ms/z_en_ms.c @@ -20,7 +20,7 @@ void EnMs_Talk(EnMs* this, PlayState* play); void EnMs_Sell(EnMs* this, PlayState* play); void EnMs_TalkAfterPurchase(EnMs* this, PlayState* play); -ActorInit En_Ms_InitVars = { +ActorProfile En_Ms_Profile = { /**/ ACTOR_EN_MS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mt_tag/z_en_mt_tag.c b/src/overlays/actors/ovl_En_Mt_tag/z_en_mt_tag.c index a4d391e421..dfcfc876b1 100644 --- a/src/overlays/actors/ovl_En_Mt_tag/z_en_mt_tag.c +++ b/src/overlays/actors/ovl_En_Mt_tag/z_en_mt_tag.c @@ -28,7 +28,7 @@ typedef enum { /* 2 */ GORON_RACE_CHEAT_TRYING_TO_REACH_GOAL_FROM_BEHIND } PlayerCheatStatus; -ActorInit En_Mt_tag_InitVars = { +ActorProfile En_Mt_tag_Profile = { /**/ ACTOR_EN_MT_TAG, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Mushi2/z_en_mushi2.c b/src/overlays/actors/ovl_En_Mushi2/z_en_mushi2.c index 7eb57fd8f1..708923c83b 100644 --- a/src/overlays/actors/ovl_En_Mushi2/z_en_mushi2.c +++ b/src/overlays/actors/ovl_En_Mushi2/z_en_mushi2.c @@ -31,7 +31,7 @@ void func_80A6AE7C(EnMushi2* this, PlayState* play); void func_80A6B078(EnMushi2* this); void func_80A6B0D8(EnMushi2* this, PlayState* play); -ActorInit En_Mushi2_InitVars = { +ActorProfile En_Mushi2_Profile = { /**/ ACTOR_EN_MUSHI2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Muto/z_en_muto.c b/src/overlays/actors/ovl_En_Muto/z_en_muto.c index f047891bf1..809d1735db 100644 --- a/src/overlays/actors/ovl_En_Muto/z_en_muto.c +++ b/src/overlays/actors/ovl_En_Muto/z_en_muto.c @@ -20,7 +20,7 @@ void EnMuto_Idle(EnMuto* this, PlayState* play); void EnMuto_SetupDialogue(EnMuto* this, PlayState* play); void EnMuto_InDialogue(EnMuto* this, PlayState* play); -ActorInit En_Muto_InitVars = { +ActorProfile En_Muto_Profile = { /**/ ACTOR_EN_MUTO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Nb/z_en_nb.c b/src/overlays/actors/ovl_En_Nb/z_en_nb.c index 25ac8d2ade..925403b1a9 100644 --- a/src/overlays/actors/ovl_En_Nb/z_en_nb.c +++ b/src/overlays/actors/ovl_En_Nb/z_en_nb.c @@ -211,7 +211,7 @@ MsgScript D_80BC15C8[] = { /* 0x0007 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Nb_InitVars = { +ActorProfile En_Nb_Profile = { /**/ ACTOR_EN_NB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Neo_Reeba/z_en_neo_reeba.c b/src/overlays/actors/ovl_En_Neo_Reeba/z_en_neo_reeba.c index 0091443aa1..a5027616ef 100644 --- a/src/overlays/actors/ovl_En_Neo_Reeba/z_en_neo_reeba.c +++ b/src/overlays/actors/ovl_En_Neo_Reeba/z_en_neo_reeba.c @@ -36,7 +36,7 @@ void EnNeoReeba_SetupDeathEffects(EnNeoReeba* this); void EnNeoReeba_PlayDeathEffects(EnNeoReeba* this, PlayState* play); void EnNeoReeba_SpawnIce(EnNeoReeba* this, PlayState* play); -ActorInit En_Neo_Reeba_InitVars = { +ActorProfile En_Neo_Reeba_Profile = { /**/ ACTOR_EN_NEO_REEBA, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Nimotsu/z_en_nimotsu.c b/src/overlays/actors/ovl_En_Nimotsu/z_en_nimotsu.c index eb7654a5bc..56f1aa51dc 100644 --- a/src/overlays/actors/ovl_En_Nimotsu/z_en_nimotsu.c +++ b/src/overlays/actors/ovl_En_Nimotsu/z_en_nimotsu.c @@ -16,7 +16,7 @@ void EnNimotsu_Destroy(Actor* thisx, PlayState* play); void EnNimotsu_Update(Actor* thisx, PlayState* play); void EnNimotsu_Draw(Actor* thisx, PlayState* play); -ActorInit En_Nimotsu_InitVars = { +ActorProfile En_Nimotsu_Profile = { /**/ ACTOR_EN_NIMOTSU, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Niw/z_en_niw.c b/src/overlays/actors/ovl_En_Niw/z_en_niw.c index 0e8ff10e56..28d2e9b6d0 100644 --- a/src/overlays/actors/ovl_En_Niw/z_en_niw.c +++ b/src/overlays/actors/ovl_En_Niw/z_en_niw.c @@ -44,7 +44,7 @@ typedef enum EnNiwState { /* 8 */ NIW_STATE_HOPPING } EnNiwState; -ActorInit En_Niw_InitVars = { +ActorProfile En_Niw_Profile = { /**/ ACTOR_EN_NIW, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Nnh/z_en_nnh.c b/src/overlays/actors/ovl_En_Nnh/z_en_nnh.c index b54e2c394e..aa65eb4d36 100644 --- a/src/overlays/actors/ovl_En_Nnh/z_en_nnh.c +++ b/src/overlays/actors/ovl_En_Nnh/z_en_nnh.c @@ -21,7 +21,7 @@ void EnNnh_WaitForDialogue(EnNnh* this, PlayState* play); void EnNnh_SetupDialogue(EnNnh* this); void EnNnh_Dialogue(EnNnh* this, PlayState* play); -ActorInit En_Nnh_InitVars = { +ActorProfile En_Nnh_Profile = { /**/ ACTOR_EN_NNH, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Nutsball/z_en_nutsball.c b/src/overlays/actors/ovl_En_Nutsball/z_en_nutsball.c index f296acbb5a..36e489d8e0 100644 --- a/src/overlays/actors/ovl_En_Nutsball/z_en_nutsball.c +++ b/src/overlays/actors/ovl_En_Nutsball/z_en_nutsball.c @@ -19,7 +19,7 @@ void EnNutsball_Draw(Actor* thisx, PlayState* play); void EnNutsball_InitColliderParams(EnNutsball* this); -ActorInit En_Nutsball_InitVars = { +ActorProfile En_Nutsball_Profile = { /**/ ACTOR_EN_NUTSBALL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Nwc/z_en_nwc.c b/src/overlays/actors/ovl_En_Nwc/z_en_nwc.c index 85195147b1..629242a455 100644 --- a/src/overlays/actors/ovl_En_Nwc/z_en_nwc.c +++ b/src/overlays/actors/ovl_En_Nwc/z_en_nwc.c @@ -40,7 +40,7 @@ typedef enum EnNwcState { /* 4 */ NWC_STATE_RUNNING // running from the player after failed breman march } EnNwcState; -ActorInit En_Nwc_InitVars = { +ActorProfile En_Nwc_Profile = { /**/ ACTOR_EN_NWC, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Okarina_Effect/z_en_okarina_effect.c b/src/overlays/actors/ovl_En_Okarina_Effect/z_en_okarina_effect.c index 662e1bf425..4f63470986 100644 --- a/src/overlays/actors/ovl_En_Okarina_Effect/z_en_okarina_effect.c +++ b/src/overlays/actors/ovl_En_Okarina_Effect/z_en_okarina_effect.c @@ -18,7 +18,7 @@ void func_8096B104(EnOkarinaEffect* this, PlayState* play); void func_8096B174(EnOkarinaEffect* this, PlayState* play); void func_8096B1FC(EnOkarinaEffect* this, PlayState* play); -ActorInit En_Okarina_Effect_InitVars = { +ActorProfile En_Okarina_Effect_Profile = { /**/ ACTOR_EN_OKARINA_EFFECT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Okarina_Tag/z_en_okarina_tag.c b/src/overlays/actors/ovl_En_Okarina_Tag/z_en_okarina_tag.c index b7e1fba184..2a1454cc0d 100644 --- a/src/overlays/actors/ovl_En_Okarina_Tag/z_en_okarina_tag.c +++ b/src/overlays/actors/ovl_En_Okarina_Tag/z_en_okarina_tag.c @@ -17,7 +17,7 @@ void EnOkarinaTag_Update(Actor* thisx, PlayState* play); void func_8093E518(EnOkarinaTag* this, PlayState* play); void func_8093E68C(EnOkarinaTag* this, PlayState* play); -ActorInit En_Okarina_Tag_InitVars = { +ActorProfile En_Okarina_Tag_Profile = { /**/ ACTOR_EN_OKARINA_TAG, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Okuta/z_en_okuta.c b/src/overlays/actors/ovl_En_Okuta/z_en_okuta.c index 5dd1d5caa8..d29f982456 100644 --- a/src/overlays/actors/ovl_En_Okuta/z_en_okuta.c +++ b/src/overlays/actors/ovl_En_Okuta/z_en_okuta.c @@ -43,7 +43,7 @@ void EnOkuta_Projectile_Update(Actor* thisx, PlayState* play); #include "assets/overlays/ovl_En_Okuta/ovl_En_Okuta.c" -ActorInit En_Okuta_InitVars = { +ActorProfile En_Okuta_Profile = { /**/ ACTOR_EN_OKUTA, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Onpuman/z_en_onpuman.c b/src/overlays/actors/ovl_En_Onpuman/z_en_onpuman.c index bd74b61949..4bd353d827 100644 --- a/src/overlays/actors/ovl_En_Onpuman/z_en_onpuman.c +++ b/src/overlays/actors/ovl_En_Onpuman/z_en_onpuman.c @@ -16,7 +16,7 @@ void EnOnpuman_Update(Actor* thisx, PlayState* play); void func_80B121D8(EnOnpuman* this, PlayState* play); -ActorInit En_Onpuman_InitVars = { +ActorProfile En_Onpuman_Profile = { /**/ ACTOR_EN_ONPUMAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Osk/z_en_osk.c b/src/overlays/actors/ovl_En_Osk/z_en_osk.c index da30eaafb0..dead119475 100644 --- a/src/overlays/actors/ovl_En_Osk/z_en_osk.c +++ b/src/overlays/actors/ovl_En_Osk/z_en_osk.c @@ -21,7 +21,7 @@ void func_80BF61EC(EnOsk* this, PlayState* play); void func_80BF656C(EnOsk* this, PlayState* play); void func_80BF6A20(EnOsk* this, PlayState* play); -ActorInit En_Osk_InitVars = { +ActorProfile En_Osk_Profile = { /**/ ACTOR_EN_OSK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Osn/z_en_osn.c b/src/overlays/actors/ovl_En_Osn/z_en_osn.c index 56e59d7b97..90fa129343 100644 --- a/src/overlays/actors/ovl_En_Osn/z_en_osn.c +++ b/src/overlays/actors/ovl_En_Osn/z_en_osn.c @@ -49,7 +49,7 @@ void EnOsn_Talk(EnOsn* this, PlayState* play); #define OSN_MASK_TEXT_ALL_NIGHT (1 << 18) #define OSN_MASK_TEXT_ROMANI (1 << 19) -ActorInit En_Osn_InitVars = { +ActorProfile En_Osn_Profile = { /**/ ACTOR_EN_OSN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ossan/z_en_ossan.c b/src/overlays/actors/ovl_En_Ossan/z_en_ossan.c index 6cb49b64d9..645d64024f 100644 --- a/src/overlays/actors/ovl_En_Ossan/z_en_ossan.c +++ b/src/overlays/actors/ovl_En_Ossan/z_en_ossan.c @@ -57,7 +57,7 @@ typedef enum EnOssanCutsceneState { /* 2 */ ENOSSAN_CUTSCENESTATE_PLAYING } EnOssanCutsceneState; -ActorInit En_Ossan_InitVars = { +ActorProfile En_Ossan_Profile = { /**/ ACTOR_EN_OSSAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ot/z_en_ot.c b/src/overlays/actors/ovl_En_Ot/z_en_ot.c index adead0e12d..e5539d6b21 100644 --- a/src/overlays/actors/ovl_En_Ot/z_en_ot.c +++ b/src/overlays/actors/ovl_En_Ot/z_en_ot.c @@ -61,7 +61,7 @@ EnOt* D_80B5E880; EnOt* D_80B5E884; EnOt* D_80B5E888; -ActorInit En_Ot_InitVars = { +ActorProfile En_Ot_Profile = { /**/ ACTOR_EN_OT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Owl/z_en_owl.c b/src/overlays/actors/ovl_En_Owl/z_en_owl.c index ba0efe7d61..4ccf0221e4 100644 --- a/src/overlays/actors/ovl_En_Owl/z_en_owl.c +++ b/src/overlays/actors/ovl_En_Owl/z_en_owl.c @@ -47,7 +47,7 @@ typedef enum { /* 1 */ OWL_OK } EnOwlMessageChoice; -ActorInit En_Owl_InitVars = { +ActorProfile En_Owl_Profile = { /**/ ACTOR_EN_OWL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pamera/z_en_pamera.c b/src/overlays/actors/ovl_En_Pamera/z_en_pamera.c index 0167314493..6d4478a463 100644 --- a/src/overlays/actors/ovl_En_Pamera/z_en_pamera.c +++ b/src/overlays/actors/ovl_En_Pamera/z_en_pamera.c @@ -69,7 +69,7 @@ void func_80BDA288(EnPamera* this); void func_80BDA2E0(EnPamera* this, PlayState* play); void func_80BDA344(Actor* thisx, PlayState* play); -ActorInit En_Pamera_InitVars = { +ActorProfile En_Pamera_Profile = { /**/ ACTOR_EN_PAMERA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pametfrog/z_en_pametfrog.c b/src/overlays/actors/ovl_En_Pametfrog/z_en_pametfrog.c index a21643666f..cdbedffcbf 100644 --- a/src/overlays/actors/ovl_En_Pametfrog/z_en_pametfrog.c +++ b/src/overlays/actors/ovl_En_Pametfrog/z_en_pametfrog.c @@ -68,7 +68,7 @@ void EnPametfrog_SnapperSpawn(EnPametfrog* this, PlayState* play); void EnPametfrog_SetupTransitionGekkoSnapper(EnPametfrog* this, PlayState* play); void EnPametfrog_TransitionGekkoSnapper(EnPametfrog* this, PlayState* play); -ActorInit En_Pametfrog_InitVars = { +ActorProfile En_Pametfrog_Profile = { /**/ ACTOR_EN_PAMETFROG, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Paper/z_en_paper.c b/src/overlays/actors/ovl_En_Paper/z_en_paper.c index cfbec5ddb1..cdf79322f9 100644 --- a/src/overlays/actors/ovl_En_Paper/z_en_paper.c +++ b/src/overlays/actors/ovl_En_Paper/z_en_paper.c @@ -29,7 +29,7 @@ void EnPaper_FlyConfettiGroup(EnPaper* this, PlayState* play); void EnPaper_InitConfettiPiece(EnPaper* this, EnPaperConfetto* piece); void EnPaper_FlyConfettiPiece(EnPaper* this, EnPaperConfetto* piece); -ActorInit En_Paper_InitVars = { +ActorProfile En_Paper_Profile = { /**/ ACTOR_EN_PAPER, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Part/z_en_part.c b/src/overlays/actors/ovl_En_Part/z_en_part.c index 851a46369b..5862cb11e9 100644 --- a/src/overlays/actors/ovl_En_Part/z_en_part.c +++ b/src/overlays/actors/ovl_En_Part/z_en_part.c @@ -19,7 +19,7 @@ void EnPart_Draw(Actor* thisx, PlayState* play); void func_80865390(EnPart* this, PlayState* play); void func_808654C4(EnPart* this, PlayState* play); -ActorInit En_Part_InitVars = { +ActorProfile En_Part_Profile = { /**/ ACTOR_EN_PART, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Peehat/z_en_peehat.c b/src/overlays/actors/ovl_En_Peehat/z_en_peehat.c index 9a08246fc3..9dee92743e 100644 --- a/src/overlays/actors/ovl_En_Peehat/z_en_peehat.c +++ b/src/overlays/actors/ovl_En_Peehat/z_en_peehat.c @@ -38,7 +38,7 @@ void func_80898594(EnPeehat* this, PlayState* play); void func_80898654(EnPeehat* this); void func_808986A4(EnPeehat* this, PlayState* play); -ActorInit En_Peehat_InitVars = { +ActorProfile En_Peehat_Profile = { /**/ ACTOR_EN_PEEHAT, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pm/z_en_pm.c b/src/overlays/actors/ovl_En_Pm/z_en_pm.c index 9163cada9a..7c26f3af1f 100644 --- a/src/overlays/actors/ovl_En_Pm/z_en_pm.c +++ b/src/overlays/actors/ovl_En_Pm/z_en_pm.c @@ -293,7 +293,7 @@ static MsgScript D_80AFB764[] = { /* 0x000B 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Pm_InitVars = { +ActorProfile En_Pm_Profile = { /**/ ACTOR_EN_PM, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Po_Composer/z_en_po_composer.c b/src/overlays/actors/ovl_En_Po_Composer/z_en_po_composer.c index 15b6bdc8ac..40a1d36878 100644 --- a/src/overlays/actors/ovl_En_Po_Composer/z_en_po_composer.c +++ b/src/overlays/actors/ovl_En_Po_Composer/z_en_po_composer.c @@ -32,7 +32,7 @@ void EnPoComposer_SetupStartCutscene(EnPoComposer* this); void EnPoComposer_SetupStartedCutscene(EnPoComposer* this); void EnPoComposer_StepLightAlpha(EnPoComposer* this); -ActorInit En_Po_Composer_InitVars = { +ActorProfile En_Po_Composer_Profile = { /**/ ACTOR_EN_PO_COMPOSER, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Po_Fusen/z_en_po_fusen.c b/src/overlays/actors/ovl_En_Po_Fusen/z_en_po_fusen.c index dc1880db55..4edaae3fdf 100644 --- a/src/overlays/actors/ovl_En_Po_Fusen/z_en_po_fusen.c +++ b/src/overlays/actors/ovl_En_Po_Fusen/z_en_po_fusen.c @@ -24,7 +24,7 @@ void EnPoFusen_Pop(EnPoFusen* this, PlayState* play); void EnPoFusen_Idle(EnPoFusen* this, PlayState* play); void EnPoFusen_IdleFuse(EnPoFusen* this, PlayState* play); -ActorInit En_Po_Fusen_InitVars = { +ActorProfile En_Po_Fusen_Profile = { /**/ ACTOR_EN_PO_FUSEN, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c index 5a4abba352..669786236a 100644 --- a/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c +++ b/src/overlays/actors/ovl_En_Po_Sisters/z_en_po_sisters.c @@ -63,7 +63,7 @@ static Color_RGBA8 sPoSisterEnvColors[] = { { 0, 150, 0, 255 }, // Amy }; -ActorInit En_Po_Sisters_InitVars = { +ActorProfile En_Po_Sisters_Profile = { /**/ ACTOR_EN_PO_SISTERS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Poh/z_en_poh.c b/src/overlays/actors/ovl_En_Poh/z_en_poh.c index e9d8f4f120..c353cadb27 100644 --- a/src/overlays/actors/ovl_En_Poh/z_en_poh.c +++ b/src/overlays/actors/ovl_En_Poh/z_en_poh.c @@ -47,7 +47,7 @@ void func_80B2E3F8(EnPoh* this, PlayState* play); void func_80B2F328(Actor* thisx, PlayState* play); void func_80B2F37C(Actor* thisx, PlayState* play); -ActorInit En_Poh_InitVars = { +ActorProfile En_Poh_Profile = { /**/ ACTOR_EN_POH, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pp/z_en_pp.c b/src/overlays/actors/ovl_En_Pp/z_en_pp.c index 45e33fc00c..2a3eeb5c17 100644 --- a/src/overlays/actors/ovl_En_Pp/z_en_pp.c +++ b/src/overlays/actors/ovl_En_Pp/z_en_pp.c @@ -116,7 +116,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, EN_PP_DMGEFF_KNOCK_OFF_MASK), }; -ActorInit En_Pp_InitVars = { +ActorProfile En_Pp_Profile = { /**/ ACTOR_EN_PP, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pr/z_en_pr.c b/src/overlays/actors/ovl_En_Pr/z_en_pr.c index 4f0b4e69cf..7f00096842 100644 --- a/src/overlays/actors/ovl_En_Pr/z_en_pr.c +++ b/src/overlays/actors/ovl_En_Pr/z_en_pr.c @@ -74,7 +74,7 @@ f32 D_80A338C0[PLAYER_FORM_MAX] = { 15.0f, // PLAYER_FORM_HUMAN }; -ActorInit En_Pr_InitVars = { +ActorProfile En_Pr_Profile = { /**/ ACTOR_EN_PR, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pr2/z_en_pr2.c b/src/overlays/actors/ovl_En_Pr2/z_en_pr2.c index 80c3fb9a2f..10269a16f6 100644 --- a/src/overlays/actors/ovl_En_Pr2/z_en_pr2.c +++ b/src/overlays/actors/ovl_En_Pr2/z_en_pr2.c @@ -80,7 +80,7 @@ static ColliderCylinderInit sCylinderInit = { { 17, 32, -10, { 0, 0, 0 } }, }; -ActorInit En_Pr2_InitVars = { +ActorProfile En_Pr2_Profile = { /**/ ACTOR_EN_PR2, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Prz/z_en_prz.c b/src/overlays/actors/ovl_En_Prz/z_en_prz.c index 5f5182360e..7c93768c4a 100644 --- a/src/overlays/actors/ovl_En_Prz/z_en_prz.c +++ b/src/overlays/actors/ovl_En_Prz/z_en_prz.c @@ -87,7 +87,7 @@ static ColliderCylinderInit sCylinderInit = { { 10, 10, 0, { 0, 0, 0 } }, }; -ActorInit En_Prz_InitVars = { +ActorProfile En_Prz_Profile = { /**/ ACTOR_EN_PRZ, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Pst/z_en_pst.c b/src/overlays/actors/ovl_En_Pst/z_en_pst.c index 655b4c42b7..96546b99af 100644 --- a/src/overlays/actors/ovl_En_Pst/z_en_pst.c +++ b/src/overlays/actors/ovl_En_Pst/z_en_pst.c @@ -354,7 +354,7 @@ MsgScript D_80B2C490[] = { /* 0x0004 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Pst_InitVars = { +ActorProfile En_Pst_Profile = { /**/ ACTOR_EN_PST, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Racedog/z_en_racedog.c b/src/overlays/actors/ovl_En_Racedog/z_en_racedog.c index 18f6ec91d9..d53daac1ab 100644 --- a/src/overlays/actors/ovl_En_Racedog/z_en_racedog.c +++ b/src/overlays/actors/ovl_En_Racedog/z_en_racedog.c @@ -70,7 +70,7 @@ typedef struct { /* 0xE */ s16 textId; // Used to determine the dog's condition } RaceDogInfo; // size = 0x10 -ActorInit En_Racedog_InitVars = { +ActorProfile En_Racedog_Profile = { /**/ ACTOR_EN_RACEDOG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Raf/z_en_raf.c b/src/overlays/actors/ovl_En_Raf/z_en_raf.c index c72abdcf90..c4354dd9b1 100644 --- a/src/overlays/actors/ovl_En_Raf/z_en_raf.c +++ b/src/overlays/actors/ovl_En_Raf/z_en_raf.c @@ -59,7 +59,7 @@ typedef enum CarnivorousLilyPetalScaleType { /* 3 */ CARNIVOROUS_LILY_PETAL_SCALE_TYPE_IDLE_OR_THROW } CarnivorousLilyPetalScaleType; -ActorInit En_Raf_InitVars = { +ActorProfile En_Raf_Profile = { /**/ ACTOR_EN_RAF, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rail_Skb/z_en_rail_skb.c b/src/overlays/actors/ovl_En_Rail_Skb/z_en_rail_skb.c index bd2f3c89b0..07c9295aae 100644 --- a/src/overlays/actors/ovl_En_Rail_Skb/z_en_rail_skb.c +++ b/src/overlays/actors/ovl_En_Rail_Skb/z_en_rail_skb.c @@ -50,7 +50,7 @@ void func_80B726B4(EnRailSkb* this, PlayState* play); void func_80B72830(EnRailSkb* this, s16 arg1); s32 func_80B7285C(EnRailSkb* this); -ActorInit En_Rail_Skb_InitVars = { +ActorProfile En_Rail_Skb_Profile = { /**/ ACTOR_EN_RAIL_SKB, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Railgibud/z_en_railgibud.c b/src/overlays/actors/ovl_En_Railgibud/z_en_railgibud.c index bea5af097f..26397e7c39 100644 --- a/src/overlays/actors/ovl_En_Railgibud/z_en_railgibud.c +++ b/src/overlays/actors/ovl_En_Railgibud/z_en_railgibud.c @@ -61,7 +61,7 @@ typedef enum { /* 2 */ EN_RAILGIBUD_GRAB_RELEASE } EnRailgibudGrabState; -ActorInit En_Railgibud_InitVars = { +ActorProfile En_Railgibud_Profile = { /**/ ACTOR_EN_RAILGIBUD, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rat/z_en_rat.c b/src/overlays/actors/ovl_En_Rat/z_en_rat.c index 5656e6be9c..61399543d4 100644 --- a/src/overlays/actors/ovl_En_Rat/z_en_rat.c +++ b/src/overlays/actors/ovl_En_Rat/z_en_rat.c @@ -35,7 +35,7 @@ typedef enum { /* -1 */ EN_RAT_HOOKED } EnRatHookedState; -ActorInit En_Rat_InitVars = { +ActorProfile En_Rat_Profile = { /**/ ACTOR_EN_RAT, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rd/z_en_rd.c b/src/overlays/actors/ovl_En_Rd/z_en_rd.c index c20cacb28d..1c8fdca2dc 100644 --- a/src/overlays/actors/ovl_En_Rd/z_en_rd.c +++ b/src/overlays/actors/ovl_En_Rd/z_en_rd.c @@ -98,7 +98,7 @@ typedef enum { /* 4 */ EN_RD_GRAB_END } EnRdGrabState; -ActorInit En_Rd_InitVars = { +ActorProfile En_Rd_Profile = { /**/ ACTOR_EN_RD, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Recepgirl/z_en_recepgirl.c b/src/overlays/actors/ovl_En_Recepgirl/z_en_recepgirl.c index 5ae3bbb3f2..a3f05a7fc8 100644 --- a/src/overlays/actors/ovl_En_Recepgirl/z_en_recepgirl.c +++ b/src/overlays/actors/ovl_En_Recepgirl/z_en_recepgirl.c @@ -20,7 +20,7 @@ void EnRecepgirl_Wait(EnRecepgirl* this, PlayState* play); void EnRecepgirl_SetupTalk(EnRecepgirl* this); void EnRecepgirl_Talk(EnRecepgirl* this, PlayState* play); -ActorInit En_Recepgirl_InitVars = { +ActorProfile En_Recepgirl_Profile = { /**/ ACTOR_EN_RECEPGIRL, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rg/z_en_rg.c b/src/overlays/actors/ovl_En_Rg/z_en_rg.c index 638ff71034..35920d19f2 100644 --- a/src/overlays/actors/ovl_En_Rg/z_en_rg.c +++ b/src/overlays/actors/ovl_En_Rg/z_en_rg.c @@ -20,7 +20,7 @@ void func_80BF4FC4(EnRg* this, PlayState* play); s32 D_80BF5C10; -ActorInit En_Rg_InitVars = { +ActorProfile En_Rg_Profile = { /**/ ACTOR_EN_RG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_River_Sound/z_en_river_sound.c b/src/overlays/actors/ovl_En_River_Sound/z_en_river_sound.c index 8ea65af8c9..36a91f3c39 100644 --- a/src/overlays/actors/ovl_En_River_Sound/z_en_river_sound.c +++ b/src/overlays/actors/ovl_En_River_Sound/z_en_river_sound.c @@ -14,7 +14,7 @@ void EnRiverSound_Init(Actor* thisx, PlayState* play); void EnRiverSound_Update(Actor* thisx, PlayState* play); void EnRiverSound_Draw(Actor* thisx, PlayState* play); -ActorInit En_River_Sound_InitVars = { +ActorProfile En_River_Sound_Profile = { /**/ ACTOR_EN_RIVER_SOUND, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rr/z_en_rr.c b/src/overlays/actors/ovl_En_Rr/z_en_rr.c index 2212d4ccd2..d413067620 100644 --- a/src/overlays/actors/ovl_En_Rr/z_en_rr.c +++ b/src/overlays/actors/ovl_En_Rr/z_en_rr.c @@ -29,7 +29,7 @@ void func_808FB710(EnRr* this, PlayState* play); void func_808FAD1C(EnRr* this, PlayState* play); void func_808FB398(EnRr* this, PlayState* play); -ActorInit En_Rr_InitVars = { +ActorProfile En_Rr_Profile = { /**/ ACTOR_EN_RR, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rsn/z_en_rsn.c b/src/overlays/actors/ovl_En_Rsn/z_en_rsn.c index 45bf7883d2..4b08ad49e7 100644 --- a/src/overlays/actors/ovl_En_Rsn/z_en_rsn.c +++ b/src/overlays/actors/ovl_En_Rsn/z_en_rsn.c @@ -18,7 +18,7 @@ void EnRsn_Draw(Actor* thisx, PlayState* play); void EnRsn_DoNothing(EnRsn* this, PlayState* play); -ActorInit En_Rsn_InitVars = { +ActorProfile En_Rsn_Profile = { /**/ ACTOR_EN_RSN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ru/z_en_ru.c b/src/overlays/actors/ovl_En_Ru/z_en_ru.c index 187be59eea..abf1f2a2e7 100644 --- a/src/overlays/actors/ovl_En_Ru/z_en_ru.c +++ b/src/overlays/actors/ovl_En_Ru/z_en_ru.c @@ -15,7 +15,7 @@ void EnRu_Destroy(Actor* thisx, PlayState* play); void EnRu_Update(Actor* thisx, PlayState* play); void EnRu_Draw(Actor* thisx, PlayState* play); -ActorInit En_Ru_InitVars = { +ActorProfile En_Ru_Profile = { /**/ ACTOR_EN_RU, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ruppecrow/z_en_ruppecrow.c b/src/overlays/actors/ovl_En_Ruppecrow/z_en_ruppecrow.c index 01861eb70e..db5e324df8 100644 --- a/src/overlays/actors/ovl_En_Ruppecrow/z_en_ruppecrow.c +++ b/src/overlays/actors/ovl_En_Ruppecrow/z_en_ruppecrow.c @@ -27,7 +27,7 @@ void EnRuppecrow_HandleSongCutscene(EnRuppecrow* this, PlayState* play); void EnRuppecrow_FlyWhileDroppingRupees(EnRuppecrow* this, PlayState* play); void EnRuppecrow_FlyToDespawn(EnRuppecrow* this, PlayState* play); -ActorInit En_Ruppecrow_InitVars = { +ActorProfile En_Ruppecrow_Profile = { /**/ ACTOR_EN_RUPPECROW, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Rz/z_en_rz.c b/src/overlays/actors/ovl_En_Rz/z_en_rz.c index 325f8f3063..4b5c9c96a3 100644 --- a/src/overlays/actors/ovl_En_Rz/z_en_rz.c +++ b/src/overlays/actors/ovl_En_Rz/z_en_rz.c @@ -49,7 +49,7 @@ typedef enum { /* 2 */ EN_RZ_PATHSTATUS_END //!< reached end of path } EnRzPathStatus; -ActorInit En_Rz_InitVars = { +ActorProfile En_Rz_Profile = { /**/ ACTOR_EN_RZ, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_S_Goro/z_en_s_goro.c b/src/overlays/actors/ovl_En_S_Goro/z_en_s_goro.c index 73e17d52bb..f127d5ae13 100644 --- a/src/overlays/actors/ovl_En_S_Goro/z_en_s_goro.c +++ b/src/overlays/actors/ovl_En_S_Goro/z_en_s_goro.c @@ -72,7 +72,7 @@ void EnSGoro_Destroy(Actor* thisx, PlayState* play); void EnSGoro_Update(Actor* thisx, PlayState* play); void EnSGoro_Draw(Actor* thisx, PlayState* play); -ActorInit En_S_Goro_InitVars = { +ActorProfile En_S_Goro_Profile = { /**/ ACTOR_EN_S_GORO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sb/z_en_sb.c b/src/overlays/actors/ovl_En_Sb/z_en_sb.c index 075c8175cb..c221f7d0f6 100644 --- a/src/overlays/actors/ovl_En_Sb/z_en_sb.c +++ b/src/overlays/actors/ovl_En_Sb/z_en_sb.c @@ -25,7 +25,7 @@ void EnSb_Lunge(EnSb* this, PlayState* play); void EnSb_Bounce(EnSb* this, PlayState* play); void EnSb_ReturnToIdle(EnSb* this, PlayState* play); -ActorInit En_Sb_InitVars = { +ActorProfile En_Sb_Profile = { /**/ ACTOR_EN_SB, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sc_Ruppe/z_en_sc_ruppe.c b/src/overlays/actors/ovl_En_Sc_Ruppe/z_en_sc_ruppe.c index 361f74adeb..6da1c91d81 100644 --- a/src/overlays/actors/ovl_En_Sc_Ruppe/z_en_sc_ruppe.c +++ b/src/overlays/actors/ovl_En_Sc_Ruppe/z_en_sc_ruppe.c @@ -23,7 +23,7 @@ typedef struct { /* 0x4 */ s16 amount; } RuppeInfo; // size = 0x8 -ActorInit En_Sc_Ruppe_InitVars = { +ActorProfile En_Sc_Ruppe_Profile = { /**/ ACTOR_EN_SC_RUPPE, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Scopecoin/z_en_scopecoin.c b/src/overlays/actors/ovl_En_Scopecoin/z_en_scopecoin.c index 241374f489..2d5fda5ab1 100644 --- a/src/overlays/actors/ovl_En_Scopecoin/z_en_scopecoin.c +++ b/src/overlays/actors/ovl_En_Scopecoin/z_en_scopecoin.c @@ -16,7 +16,7 @@ void EnScopecoin_Destroy(Actor* thisx, PlayState* play); void EnScopecoin_Update(Actor* thisx, PlayState* play); void EnScopecoin_Draw(Actor* thisx, PlayState* play); -ActorInit En_Scopecoin_InitVars = { +ActorProfile En_Scopecoin_Profile = { /**/ ACTOR_EN_SCOPECOIN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Scopecrow/z_en_scopecrow.c b/src/overlays/actors/ovl_En_Scopecrow/z_en_scopecrow.c index 2f0882bd76..6f7d5b1f5c 100644 --- a/src/overlays/actors/ovl_En_Scopecrow/z_en_scopecrow.c +++ b/src/overlays/actors/ovl_En_Scopecrow/z_en_scopecrow.c @@ -18,7 +18,7 @@ void EnScopecrow_Draw(Actor* thisx, PlayState* play); void func_80BCD590(EnScopecrow* this, PlayState* play); void func_80BCD640(EnScopecrow* this, PlayState* play); -ActorInit En_Scopecrow_InitVars = { +ActorProfile En_Scopecrow_Profile = { /**/ ACTOR_EN_SCOPECROW, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Scopenuts/z_en_scopenuts.c b/src/overlays/actors/ovl_En_Scopenuts/z_en_scopenuts.c index c333d883dd..91c6ade675 100644 --- a/src/overlays/actors/ovl_En_Scopenuts/z_en_scopenuts.c +++ b/src/overlays/actors/ovl_En_Scopenuts/z_en_scopenuts.c @@ -32,7 +32,7 @@ void func_80BCC288(EnScopenuts* this, PlayState* play); s32 EnScopenuts_HasReachedPoint(EnScopenuts* this, Path* path, s32 pointIndex); f32 func_80BCC448(Path* path, s32 arg1, Vec3f* arg2, Vec3s* arg3); -ActorInit En_Scopenuts_InitVars = { +ActorProfile En_Scopenuts_Profile = { /**/ ACTOR_EN_SCOPENUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sda/z_en_sda.c b/src/overlays/actors/ovl_En_Sda/z_en_sda.c index d7d9fa1855..fae1205006 100644 --- a/src/overlays/actors/ovl_En_Sda/z_en_sda.c +++ b/src/overlays/actors/ovl_En_Sda/z_en_sda.c @@ -20,7 +20,7 @@ void func_80947668(u8* shadowTexture, Player* player, PlayState* play); Vec3f D_80947EA0[16]; -ActorInit En_Sda_InitVars = { +ActorProfile En_Sda_Profile = { /**/ ACTOR_EN_SDA, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sekihi/z_en_sekihi.c b/src/overlays/actors/ovl_En_Sekihi/z_en_sekihi.c index b02a76f4ff..a814c692c0 100644 --- a/src/overlays/actors/ovl_En_Sekihi/z_en_sekihi.c +++ b/src/overlays/actors/ovl_En_Sekihi/z_en_sekihi.c @@ -24,7 +24,7 @@ void func_80A44DE8(EnSekihi* this, PlayState* play); void func_80A450B0(EnSekihi* this, PlayState* play); void EnSekihi_DoNothing(EnSekihi* this, PlayState* play); -ActorInit En_Sekihi_InitVars = { +ActorProfile En_Sekihi_Profile = { /**/ ACTOR_EN_SEKIHI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sellnuts/z_en_sellnuts.c b/src/overlays/actors/ovl_En_Sellnuts/z_en_sellnuts.c index bdd13c3890..86e99bc6c0 100644 --- a/src/overlays/actors/ovl_En_Sellnuts/z_en_sellnuts.c +++ b/src/overlays/actors/ovl_En_Sellnuts/z_en_sellnuts.c @@ -48,7 +48,7 @@ static u16 D_80ADD938[] = { 0x0615, 0x060F, 0x060F }; static u8 D_80ADD940 = 0; -ActorInit En_Sellnuts_InitVars = { +ActorProfile En_Sellnuts_Profile = { /**/ ACTOR_EN_SELLNUTS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Shn/z_en_shn.c b/src/overlays/actors/ovl_En_Shn/z_en_shn.c index fe030be78a..bb8a1119c5 100644 --- a/src/overlays/actors/ovl_En_Shn/z_en_shn.c +++ b/src/overlays/actors/ovl_En_Shn/z_en_shn.c @@ -392,7 +392,7 @@ static MsgScript D_80AE71C4[] = { /* 0x0031 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Shn_InitVars = { +ActorProfile En_Shn_Profile = { /**/ ACTOR_EN_SHN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Si/z_en_si.c b/src/overlays/actors/ovl_En_Si/z_en_si.c index a917c30b00..f14edd5feb 100644 --- a/src/overlays/actors/ovl_En_Si/z_en_si.c +++ b/src/overlays/actors/ovl_En_Si/z_en_si.c @@ -17,7 +17,7 @@ void EnSi_Draw(Actor* thisx, PlayState* play); void EnSi_DraggedByHookshot(EnSi* this, PlayState* play); -ActorInit En_Si_InitVars = { +ActorProfile En_Si_Profile = { /**/ ACTOR_EN_SI, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Skb/z_en_skb.c b/src/overlays/actors/ovl_En_Skb/z_en_skb.c index 71ba9dea47..3e01d56a3a 100644 --- a/src/overlays/actors/ovl_En_Skb/z_en_skb.c +++ b/src/overlays/actors/ovl_En_Skb/z_en_skb.c @@ -162,7 +162,7 @@ static DamageTable sDamageTable = { /* Powder Keg */ DMG_ENTRY(1, 0xF), }; -ActorInit En_Skb_InitVars = { +ActorProfile En_Skb_Profile = { /**/ ACTOR_EN_SKB, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Slime/z_en_slime.c b/src/overlays/actors/ovl_En_Slime/z_en_slime.c index e93dea2299..56087921c9 100644 --- a/src/overlays/actors/ovl_En_Slime/z_en_slime.c +++ b/src/overlays/actors/ovl_En_Slime/z_en_slime.c @@ -66,7 +66,7 @@ void EnSlime_WaitForRevive(EnSlime* this, PlayState* play); void EnSlime_SetupRevive(EnSlime* this); void EnSlime_Revive(EnSlime* this, PlayState* play); -ActorInit En_Slime_InitVars = { +ActorProfile En_Slime_Profile = { /**/ ACTOR_EN_SLIME, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Snowman/z_en_snowman.c b/src/overlays/actors/ovl_En_Snowman/z_en_snowman.c index 4e8f4443b4..95ff0a1c83 100644 --- a/src/overlays/actors/ovl_En_Snowman/z_en_snowman.c +++ b/src/overlays/actors/ovl_En_Snowman/z_en_snowman.c @@ -62,7 +62,7 @@ typedef enum { /* 3 */ EN_SNOWMAN_COMBINE_STATE_BEING_ABSORBED_OR_DONE } EnSnowmanCombineState; -ActorInit En_Snowman_InitVars = { +ActorProfile En_Snowman_Profile = { /**/ ACTOR_EN_SNOWMAN, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Snowwd/z_en_snowwd.c b/src/overlays/actors/ovl_En_Snowwd/z_en_snowwd.c index f0c30cf2da..12d0c53039 100644 --- a/src/overlays/actors/ovl_En_Snowwd/z_en_snowwd.c +++ b/src/overlays/actors/ovl_En_Snowwd/z_en_snowwd.c @@ -18,7 +18,7 @@ void EnSnowwd_Draw(Actor* thisx, PlayState* play); void EnSnowwd_Idle(EnSnowwd* this, PlayState* play); -ActorInit En_Snowwd_InitVars = { +ActorProfile En_Snowwd_Profile = { /**/ ACTOR_EN_SNOWWD, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sob1/z_en_sob1.c b/src/overlays/actors/ovl_En_Sob1/z_en_sob1.c index c940a66100..7573cbf5e8 100644 --- a/src/overlays/actors/ovl_En_Sob1/z_en_sob1.c +++ b/src/overlays/actors/ovl_En_Sob1/z_en_sob1.c @@ -64,7 +64,7 @@ static AnimationInfoS sAnimationInfoBombShopkeeper[] = { { &gBombShopkeeperSitAtCounterLoopAnim, 1.0f, 0, -1, ANIMMODE_LOOP, 0 }, }; -ActorInit En_Sob1_InitVars = { +ActorProfile En_Sob1_Profile = { /**/ ACTOR_EN_OSSAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Ssh/z_en_ssh.c b/src/overlays/actors/ovl_En_Ssh/z_en_ssh.c index f170aaeaca..780a5e9e4f 100644 --- a/src/overlays/actors/ovl_En_Ssh/z_en_ssh.c +++ b/src/overlays/actors/ovl_En_Ssh/z_en_ssh.c @@ -25,7 +25,7 @@ void EnSsh_Start(EnSsh* this, PlayState* play); extern AnimationHeader D_06000304; -ActorInit En_Ssh_InitVars = { +ActorProfile En_Ssh_Profile = { /**/ ACTOR_EN_SSH, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_St/z_en_st.c b/src/overlays/actors/ovl_En_St/z_en_st.c index 34da1ce759..77165ef830 100644 --- a/src/overlays/actors/ovl_En_St/z_en_st.c +++ b/src/overlays/actors/ovl_En_St/z_en_st.c @@ -25,7 +25,7 @@ void func_808A6E24(EnSt* this, PlayState* play); void func_808A701C(EnSt* this, PlayState* play); void func_808A7478(Actor* thisx, PlayState* play); -ActorInit En_St_InitVars = { +ActorProfile En_St_Profile = { /**/ ACTOR_EN_ST, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sth/z_en_sth.c b/src/overlays/actors/ovl_En_Sth/z_en_sth.c index de95844190..64bbade78c 100644 --- a/src/overlays/actors/ovl_En_Sth/z_en_sth.c +++ b/src/overlays/actors/ovl_En_Sth/z_en_sth.c @@ -27,7 +27,7 @@ void EnSth_SwampSpiderHouseIdle(EnSth* this, PlayState* play); void EnSth_Update(Actor* thisx, PlayState* play); void EnSth_Draw(Actor* thisx, PlayState* play); -ActorInit En_Sth_InitVars = { +ActorProfile En_Sth_Profile = { /**/ ACTOR_EN_STH, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sth2/z_en_sth2.c b/src/overlays/actors/ovl_En_Sth2/z_en_sth2.c index 5b22b6175f..d873f98a34 100644 --- a/src/overlays/actors/ovl_En_Sth2/z_en_sth2.c +++ b/src/overlays/actors/ovl_En_Sth2/z_en_sth2.c @@ -18,7 +18,7 @@ void EnSth2_Draw(Actor* thisx, PlayState* play2); void EnSth2_UpdateSkelAnime(EnSth2* this, PlayState* play); void EnSth2_UpdateActionFunc(Actor* thisx, PlayState* play); -ActorInit En_Sth2_InitVars = { +ActorProfile En_Sth2_Profile = { /**/ ACTOR_EN_STH2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Stone_heishi/z_en_stone_heishi.c b/src/overlays/actors/ovl_En_Stone_heishi/z_en_stone_heishi.c index 8a60070f38..974032184d 100644 --- a/src/overlays/actors/ovl_En_Stone_heishi/z_en_stone_heishi.c +++ b/src/overlays/actors/ovl_En_Stone_heishi/z_en_stone_heishi.c @@ -27,7 +27,7 @@ void EnStoneheishi_SetupCheckGivenItem(EnStoneheishi*); void EnStoneheishi_GiveItemReward(EnStoneheishi* this, PlayState* play); void EnStoneheishi_SetupDrinkBottleProcess(EnStoneheishi* this); -ActorInit En_Stone_heishi_InitVars = { +ActorProfile En_Stone_heishi_Profile = { /**/ ACTOR_EN_STONE_HEISHI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Stop_heishi/z_en_stop_heishi.c b/src/overlays/actors/ovl_En_Stop_heishi/z_en_stop_heishi.c index 67a9f817b2..108f3a641f 100644 --- a/src/overlays/actors/ovl_En_Stop_heishi/z_en_stop_heishi.c +++ b/src/overlays/actors/ovl_En_Stop_heishi/z_en_stop_heishi.c @@ -22,7 +22,7 @@ void func_80AE7E9C(EnStopheishi* this); void func_80AE854C(EnStopheishi* this, PlayState* play); void func_80AE795C(EnStopheishi* this, PlayState* play); -ActorInit En_Stop_heishi_InitVars = { +ActorProfile En_Stop_heishi_Profile = { /**/ ACTOR_EN_STOP_HEISHI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Stream/z_en_stream.c b/src/overlays/actors/ovl_En_Stream/z_en_stream.c index 76a95dcd09..a877f03848 100644 --- a/src/overlays/actors/ovl_En_Stream/z_en_stream.c +++ b/src/overlays/actors/ovl_En_Stream/z_en_stream.c @@ -18,7 +18,7 @@ void EnStream_Draw(Actor* thisx, PlayState* play); void EnStream_WaitForPlayer(EnStream* this, PlayState* play); -ActorInit En_Stream_InitVars = { +ActorProfile En_Stream_Profile = { /**/ ACTOR_EN_STREAM, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Suttari/z_en_suttari.c b/src/overlays/actors/ovl_En_Suttari/z_en_suttari.c index ec4a7fe1f2..3642401b6f 100644 --- a/src/overlays/actors/ovl_En_Suttari/z_en_suttari.c +++ b/src/overlays/actors/ovl_En_Suttari/z_en_suttari.c @@ -38,7 +38,7 @@ void func_80BADE14(EnSuttari* this, PlayState* play); void func_80BADE8C(EnSuttari* this, PlayState* play); void func_80BADF3C(EnSuttari* this, PlayState* play); -ActorInit En_Suttari_InitVars = { +ActorProfile En_Suttari_Profile = { /**/ ACTOR_EN_SUTTARI, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Sw/z_en_sw.c b/src/overlays/actors/ovl_En_Sw/z_en_sw.c index 28e8304a54..ada127109c 100644 --- a/src/overlays/actors/ovl_En_Sw/z_en_sw.c +++ b/src/overlays/actors/ovl_En_Sw/z_en_sw.c @@ -28,7 +28,7 @@ void func_808DB100(EnSw* this, PlayState* play); void func_808DB25C(EnSw* this, PlayState* play); void func_808DB2E0(EnSw* this, PlayState* play); -ActorInit En_Sw_InitVars = { +ActorProfile En_Sw_Profile = { /**/ ACTOR_EN_SW, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Syateki_Crow/z_en_syateki_crow.c b/src/overlays/actors/ovl_En_Syateki_Crow/z_en_syateki_crow.c index 9f80967c2d..a305e0cd69 100644 --- a/src/overlays/actors/ovl_En_Syateki_Crow/z_en_syateki_crow.c +++ b/src/overlays/actors/ovl_En_Syateki_Crow/z_en_syateki_crow.c @@ -25,7 +25,7 @@ void EnSyatekiCrow_Dead(EnSyatekiCrow* this, PlayState* play); static Vec3f sZeroVec = { 0.0f, 0.0f, 0.0f }; -ActorInit En_Syateki_Crow_InitVars = { +ActorProfile En_Syateki_Crow_Profile = { /**/ ACTOR_EN_SYATEKI_CROW, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Syateki_Dekunuts/z_en_syateki_dekunuts.c b/src/overlays/actors/ovl_En_Syateki_Dekunuts/z_en_syateki_dekunuts.c index 0893ee427a..0e18e9ad67 100644 --- a/src/overlays/actors/ovl_En_Syateki_Dekunuts/z_en_syateki_dekunuts.c +++ b/src/overlays/actors/ovl_En_Syateki_Dekunuts/z_en_syateki_dekunuts.c @@ -39,7 +39,7 @@ typedef enum { /* 1 */ SG_DEKU_HEADDRESS_TYPE_FLIPPED_UP } ShootingGalleryDekuScrubHeaddressType; -ActorInit En_Syateki_Dekunuts_InitVars = { +ActorProfile En_Syateki_Dekunuts_Profile = { /**/ ACTOR_EN_SYATEKI_DEKUNUTS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Syateki_Man/z_en_syateki_man.c b/src/overlays/actors/ovl_En_Syateki_Man/z_en_syateki_man.c index 3978c122a2..3dc8722596 100644 --- a/src/overlays/actors/ovl_En_Syateki_Man/z_en_syateki_man.c +++ b/src/overlays/actors/ovl_En_Syateki_Man/z_en_syateki_man.c @@ -86,7 +86,7 @@ void EnSyatekiMan_Town_EndGame(EnSyatekiMan* this, PlayState* play); // the Heart Piece, then this score will be used instead to determine if the player should get a Purple Rupee. #define SG_SWAMP_HEART_PIECE_SCORE (SG_SWAMP_PERFECT_SCORE_WITHOUT_BONUS + (6 * SG_BONUS_POINTS_PER_SECOND)) -ActorInit En_Syateki_Man_InitVars = { +ActorProfile En_Syateki_Man_Profile = { /**/ ACTOR_EN_SYATEKI_MAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Syateki_Okuta/z_en_syateki_okuta.c b/src/overlays/actors/ovl_En_Syateki_Okuta/z_en_syateki_okuta.c index 6ac9326162..ca895c575f 100644 --- a/src/overlays/actors/ovl_En_Syateki_Okuta/z_en_syateki_okuta.c +++ b/src/overlays/actors/ovl_En_Syateki_Okuta/z_en_syateki_okuta.c @@ -28,7 +28,7 @@ void EnSyatekiOkuta_Hide(EnSyatekiOkuta* this, PlayState* play); void EnSyatekiOkuta_Die(EnSyatekiOkuta* this, PlayState* play); void EnSyatekiOkuta_UpdateHeadScale(EnSyatekiOkuta* this); -ActorInit En_Syateki_Okuta_InitVars = { +ActorProfile En_Syateki_Okuta_Profile = { /**/ ACTOR_EN_SYATEKI_OKUTA, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Syateki_Wf/z_en_syateki_wf.c b/src/overlays/actors/ovl_En_Syateki_Wf/z_en_syateki_wf.c index 01c148ab26..4a1ca7e1e3 100644 --- a/src/overlays/actors/ovl_En_Syateki_Wf/z_en_syateki_wf.c +++ b/src/overlays/actors/ovl_En_Syateki_Wf/z_en_syateki_wf.c @@ -101,7 +101,7 @@ static Vec3f sVelocity = { 0.0f, 20.0f, 0.0f }; static Vec3f sAccel = { 0.0f, 0.0f, 0.0f }; -ActorInit En_Syateki_Wf_InitVars = { +ActorProfile En_Syateki_Wf_Profile = { /**/ ACTOR_EN_SYATEKI_WF, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tab/z_en_tab.c b/src/overlays/actors/ovl_En_Tab/z_en_tab.c index 67bf411899..166119400b 100644 --- a/src/overlays/actors/ovl_En_Tab/z_en_tab.c +++ b/src/overlays/actors/ovl_En_Tab/z_en_tab.c @@ -212,7 +212,7 @@ MsgScript D_80BE1A0C[] = { /* 0x0068 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Tab_InitVars = { +ActorProfile En_Tab_Profile = { /**/ ACTOR_EN_TAB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tag_Obj/z_en_tag_obj.c b/src/overlays/actors/ovl_En_Tag_Obj/z_en_tag_obj.c index d0066845fc..cf94844073 100644 --- a/src/overlays/actors/ovl_En_Tag_Obj/z_en_tag_obj.c +++ b/src/overlays/actors/ovl_En_Tag_Obj/z_en_tag_obj.c @@ -35,7 +35,7 @@ static ColliderCylinderInit sUnusedColliderInit = { { 20, 30, 0, { 0, 0, 0 } }, }; -ActorInit En_Tag_Obj_InitVars = { +ActorProfile En_Tag_Obj_Profile = { /**/ ACTOR_EN_TAG_OBJ, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Takaraya/z_en_takaraya.c b/src/overlays/actors/ovl_En_Takaraya/z_en_takaraya.c index 2558d89067..e75f2d27be 100644 --- a/src/overlays/actors/ovl_En_Takaraya/z_en_takaraya.c +++ b/src/overlays/actors/ovl_En_Takaraya/z_en_takaraya.c @@ -31,7 +31,7 @@ void func_80ADF730(EnTakaraya* this, PlayState* play); void func_80ADF7B8(EnTakaraya* this); void func_80ADF7CC(EnTakaraya* this, PlayState* play); -ActorInit En_Takaraya_InitVars = { +ActorProfile En_Takaraya_Profile = { /**/ ACTOR_EN_TAKARAYA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Talk/z_en_talk.c b/src/overlays/actors/ovl_En_Talk/z_en_talk.c index 658fe9ec4d..3f8f2d5bcb 100644 --- a/src/overlays/actors/ovl_En_Talk/z_en_talk.c +++ b/src/overlays/actors/ovl_En_Talk/z_en_talk.c @@ -16,7 +16,7 @@ void EnTalk_Update(Actor* thisx, PlayState* play); void func_80BDE058(EnTalk* this, PlayState* play); void func_80BDE090(EnTalk* this, PlayState* play); -ActorInit En_Talk_InitVars = { +ActorProfile En_Talk_Profile = { /**/ ACTOR_EN_TALK, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Talk_Gibud/z_en_talk_gibud.c b/src/overlays/actors/ovl_En_Talk_Gibud/z_en_talk_gibud.c index 4fc338fccc..2a95a59d07 100644 --- a/src/overlays/actors/ovl_En_Talk_Gibud/z_en_talk_gibud.c +++ b/src/overlays/actors/ovl_En_Talk_Gibud/z_en_talk_gibud.c @@ -85,7 +85,7 @@ typedef enum EnTalkGibudGrabState { /* 2 */ EN_TALK_GIBUD_GRAB_RELEASE } EnTalkGibudGrabState; -ActorInit En_Talk_Gibud_InitVars = { +ActorProfile En_Talk_Gibud_Profile = { /**/ ACTOR_EN_TALK_GIBUD, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron1/z_en_tanron1.c b/src/overlays/actors/ovl_En_Tanron1/z_en_tanron1.c index a08e6a7061..b62770c0e1 100644 --- a/src/overlays/actors/ovl_En_Tanron1/z_en_tanron1.c +++ b/src/overlays/actors/ovl_En_Tanron1/z_en_tanron1.c @@ -18,7 +18,7 @@ void EnTanron1_Draw(Actor* thisx, PlayState* play); void func_80BB5318(EnTanron1* this, PlayState* play); void func_80BB5AAC(EnTanron1* this, PlayState* play); -ActorInit En_Tanron1_InitVars = { +ActorProfile En_Tanron1_Profile = { /**/ ACTOR_EN_TANRON1, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron2/z_en_tanron2.c b/src/overlays/actors/ovl_En_Tanron2/z_en_tanron2.c index 0785c71630..0c3b3de461 100644 --- a/src/overlays/actors/ovl_En_Tanron2/z_en_tanron2.c +++ b/src/overlays/actors/ovl_En_Tanron2/z_en_tanron2.c @@ -31,7 +31,7 @@ Boss04* D_80BB8450; f32 D_80BB8454; EnTanron2* D_80BB8458[82]; -ActorInit En_Tanron2_InitVars = { +ActorProfile En_Tanron2_Profile = { /**/ ACTOR_EN_TANRON2, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron3/z_en_tanron3.c b/src/overlays/actors/ovl_En_Tanron3/z_en_tanron3.c index f5b74739e1..c851dd03b8 100644 --- a/src/overlays/actors/ovl_En_Tanron3/z_en_tanron3.c +++ b/src/overlays/actors/ovl_En_Tanron3/z_en_tanron3.c @@ -31,7 +31,7 @@ static Vec3f sZeroVec[] = { 0.0f, 0.0f, 0.0f }; static Boss03* sGyorg = NULL; -ActorInit En_Tanron3_InitVars = { +ActorProfile En_Tanron3_Profile = { /**/ ACTOR_EN_TANRON3, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron4/z_en_tanron4.c b/src/overlays/actors/ovl_En_Tanron4/z_en_tanron4.c index 102dd29278..6893506068 100644 --- a/src/overlays/actors/ovl_En_Tanron4/z_en_tanron4.c +++ b/src/overlays/actors/ovl_En_Tanron4/z_en_tanron4.c @@ -31,7 +31,7 @@ typedef enum SeagullTimer { /* 1 */ SEAGULL_TIMER_CHOOSE_TARGET } SeagullTimer; -ActorInit En_Tanron4_InitVars = { +ActorProfile En_Tanron4_Profile = { /**/ ACTOR_EN_TANRON4, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron5/z_en_tanron5.c b/src/overlays/actors/ovl_En_Tanron5/z_en_tanron5.c index 4b316b944a..ed8f0d5a57 100644 --- a/src/overlays/actors/ovl_En_Tanron5/z_en_tanron5.c +++ b/src/overlays/actors/ovl_En_Tanron5/z_en_tanron5.c @@ -44,7 +44,7 @@ typedef enum TwinmoldPropItemDropType { s32 sFragmentAndItemDropCount = 0; -ActorInit En_Tanron5_InitVars = { +ActorProfile En_Tanron5_Profile = { /**/ ACTOR_EN_TANRON5, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tanron6/z_en_tanron6.c b/src/overlays/actors/ovl_En_Tanron6/z_en_tanron6.c index 5530622183..ae31be4730 100644 --- a/src/overlays/actors/ovl_En_Tanron6/z_en_tanron6.c +++ b/src/overlays/actors/ovl_En_Tanron6/z_en_tanron6.c @@ -18,7 +18,7 @@ void EnTanron6_Draw(Actor* thisx, PlayState* play); void EnTanron6_DoNothing(EnTanron6* this); void func_80BE60D0(EnTanron6* this, PlayState* play); -ActorInit En_Tanron6_InitVars = { +ActorProfile En_Tanron6_Profile = { /**/ ACTOR_EN_TANRON6, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test/z_en_test.c b/src/overlays/actors/ovl_En_Test/z_en_test.c index 6c74920313..44bf980bbd 100644 --- a/src/overlays/actors/ovl_En_Test/z_en_test.c +++ b/src/overlays/actors/ovl_En_Test/z_en_test.c @@ -16,7 +16,7 @@ void EnTest_Destroy(Actor* thisx, PlayState* play); void EnTest_Update(Actor* thisx, PlayState* play); void EnTest_Draw(Actor* thisx, PlayState* play); -ActorInit En_Test_InitVars = { +ActorProfile En_Test_Profile = { /**/ ACTOR_EN_TEST, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test2/z_en_test2.c b/src/overlays/actors/ovl_En_Test2/z_en_test2.c index d60c5b5fe5..092e56d2c4 100644 --- a/src/overlays/actors/ovl_En_Test2/z_en_test2.c +++ b/src/overlays/actors/ovl_En_Test2/z_en_test2.c @@ -27,7 +27,7 @@ typedef struct EnTest2ModelInfo { /* 0x8 */ AnimatedMaterial* animMat; } EnTest2ModelInfo; // size = 0xC -ActorInit En_Test2_InitVars = { +ActorProfile En_Test2_Profile = { /**/ ACTOR_EN_TEST2, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test3/z_en_test3.c b/src/overlays/actors/ovl_En_Test3/z_en_test3.c index 95dbab20f0..3112dddb89 100644 --- a/src/overlays/actors/ovl_En_Test3/z_en_test3.c +++ b/src/overlays/actors/ovl_En_Test3/z_en_test3.c @@ -83,7 +83,7 @@ void func_80A40A6C(EnTest3* this, PlayState* play); #include "src/overlays/actors/ovl_En_Test3/scheduleScripts.schl.inc" -ActorInit En_Test3_InitVars = { +ActorProfile En_Test3_Profile = { /**/ ACTOR_EN_TEST3, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test4/z_en_test4.c b/src/overlays/actors/ovl_En_Test4/z_en_test4.c index f340629743..86e242b90f 100644 --- a/src/overlays/actors/ovl_En_Test4/z_en_test4.c +++ b/src/overlays/actors/ovl_En_Test4/z_en_test4.c @@ -22,7 +22,7 @@ void EnTest4_Update(Actor* thisx, PlayState* play); void EnTest4_HandleEvents(EnTest4* this, PlayState* play); void EnTest4_HandleCutscene(EnTest4* this, PlayState* play); -ActorInit En_Test4_InitVars = { +ActorProfile En_Test4_Profile = { /**/ ACTOR_EN_TEST4, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test5/z_en_test5.c b/src/overlays/actors/ovl_En_Test5/z_en_test5.c index d68faa09bd..5a63a54fac 100644 --- a/src/overlays/actors/ovl_En_Test5/z_en_test5.c +++ b/src/overlays/actors/ovl_En_Test5/z_en_test5.c @@ -16,7 +16,7 @@ void EnTest5_Update(Actor* thisx, PlayState* play2); void EnTest5_HandleBottleAction(EnTest5* this, PlayState* play); void EnTest5_SetupAction(EnTest5* this, EnTest5ActionFunc actionFunc); -ActorInit En_Test5_InitVars = { +ActorProfile En_Test5_Profile = { /**/ ACTOR_EN_TEST5, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test6/z_en_test6.c b/src/overlays/actors/ovl_En_Test6/z_en_test6.c index ef083e16f7..971f3596ec 100644 --- a/src/overlays/actors/ovl_En_Test6/z_en_test6.c +++ b/src/overlays/actors/ovl_En_Test6/z_en_test6.c @@ -54,7 +54,7 @@ void EnTest6_SharedSoTCutscene(EnTest6* this, PlayState* play); SoTCsAmmoDrops sSoTCsAmmoDrops[12]; -ActorInit En_Test6_InitVars = { +ActorProfile En_Test6_Profile = { /**/ ACTOR_EN_TEST6, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Test7/z_en_test7.c b/src/overlays/actors/ovl_En_Test7/z_en_test7.c index b656921d18..9dc7a9f291 100644 --- a/src/overlays/actors/ovl_En_Test7/z_en_test7.c +++ b/src/overlays/actors/ovl_En_Test7/z_en_test7.c @@ -36,7 +36,7 @@ void EnTest7_StartArriveCsSkip(EnTest7* this, PlayState* play); void EnTest7_ArriveCsPart2(EnTest7* this, PlayState* play); void EnTest7_ArriveCsPart3(EnTest7* this, PlayState* play); -ActorInit En_Test7_InitVars = { +ActorProfile En_Test7_Profile = { /**/ ACTOR_EN_TEST7, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tg/z_en_tg.c b/src/overlays/actors/ovl_En_Tg/z_en_tg.c index 34257a6b37..a5232e52ca 100644 --- a/src/overlays/actors/ovl_En_Tg/z_en_tg.c +++ b/src/overlays/actors/ovl_En_Tg/z_en_tg.c @@ -21,7 +21,7 @@ void EnTg_UpdateHearts(PlayState* play, EnTgHeartEffect* effect, s32 numEffects) void EnTg_DrawHearts(PlayState* play, EnTgHeartEffect* effect, s32 numEffects); void EnTg_SpawnHeart(EnTg* this, EnTgHeartEffect* effect, Vec3f* heartStartPos, s32 numEffects); -ActorInit En_Tg_InitVars = { +ActorProfile En_Tg_Profile = { /**/ ACTOR_EN_TG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Thiefbird/z_en_thiefbird.c b/src/overlays/actors/ovl_En_Thiefbird/z_en_thiefbird.c index ba68fc3e0f..3251a53fc8 100644 --- a/src/overlays/actors/ovl_En_Thiefbird/z_en_thiefbird.c +++ b/src/overlays/actors/ovl_En_Thiefbird/z_en_thiefbird.c @@ -34,7 +34,7 @@ void func_80C126D8(EnThiefbird* this, PlayState* play); void func_80C12744(EnThiefbird* this); void func_80C127F4(EnThiefbird* this, PlayState* play); -ActorInit En_Thiefbird_InitVars = { +ActorProfile En_Thiefbird_Profile = { /**/ ACTOR_EN_THIEFBIRD, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Time_Tag/z_en_time_tag.c b/src/overlays/actors/ovl_En_Time_Tag/z_en_time_tag.c index 4b2f3e2e41..e98772a797 100644 --- a/src/overlays/actors/ovl_En_Time_Tag/z_en_time_tag.c +++ b/src/overlays/actors/ovl_En_Time_Tag/z_en_time_tag.c @@ -37,7 +37,7 @@ void EnTimeTag_KickOut_Transition(EnTimeTag* this, PlayState* play); void EnTimeTag_KickOut_WaitForTrigger(EnTimeTag* this, PlayState* play); void EnTimeTag_KickOut_WaitForTime(EnTimeTag* this, PlayState* play); -ActorInit En_Time_Tag_InitVars = { +ActorProfile En_Time_Tag_Profile = { /**/ ACTOR_EN_TIME_TAG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tite/z_en_tite.c b/src/overlays/actors/ovl_En_Tite/z_en_tite.c index 2e4cfb6b67..622d38ad23 100644 --- a/src/overlays/actors/ovl_En_Tite/z_en_tite.c +++ b/src/overlays/actors/ovl_En_Tite/z_en_tite.c @@ -46,7 +46,7 @@ void func_80895CB0(EnTite* this); void func_80895D08(EnTite* this, PlayState* play); void func_80895E28(EnTite* this, PlayState* play); -ActorInit En_Tite_InitVars = { +ActorProfile En_Tite_Profile = { /**/ ACTOR_EN_TITE, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tk/z_en_tk.c b/src/overlays/actors/ovl_En_Tk/z_en_tk.c index c7d456ac2a..0dc7957373 100644 --- a/src/overlays/actors/ovl_En_Tk/z_en_tk.c +++ b/src/overlays/actors/ovl_En_Tk/z_en_tk.c @@ -63,7 +63,7 @@ static s32 D_80AF0050; #include "src/overlays/actors/ovl_En_Tk/scheduleScripts.schl.inc" -ActorInit En_Tk_InitVars = { +ActorProfile En_Tk_Profile = { /**/ ACTOR_EN_TK, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Torch/z_en_torch.c b/src/overlays/actors/ovl_En_Torch/z_en_torch.c index 304e822b7a..7b086901dd 100644 --- a/src/overlays/actors/ovl_En_Torch/z_en_torch.c +++ b/src/overlays/actors/ovl_En_Torch/z_en_torch.c @@ -13,7 +13,7 @@ void EnTorch_Init(Actor* thisx, PlayState* play); -ActorInit En_Torch_InitVars = { +ActorProfile En_Torch_Profile = { /**/ ACTOR_EN_TORCH, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Torch2/z_en_torch2.c b/src/overlays/actors/ovl_En_Torch2/z_en_torch2.c index a6b9a9d327..e7a3fa42a4 100644 --- a/src/overlays/actors/ovl_En_Torch2/z_en_torch2.c +++ b/src/overlays/actors/ovl_En_Torch2/z_en_torch2.c @@ -19,7 +19,7 @@ void EnTorch2_Draw(Actor* thisx, PlayState* play2); void EnTorch2_UpdateIdle(Actor* thisx, PlayState* play); void EnTorch2_UpdateDeath(Actor* thisx, PlayState* play); -ActorInit En_Torch2_InitVars = { +ActorProfile En_Torch2_Profile = { /**/ ACTOR_EN_TORCH2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Toto/z_en_toto.c b/src/overlays/actors/ovl_En_Toto/z_en_toto.c index 34a45376d9..be99a79db7 100644 --- a/src/overlays/actors/ovl_En_Toto/z_en_toto.c +++ b/src/overlays/actors/ovl_En_Toto/z_en_toto.c @@ -49,7 +49,7 @@ s32 func_80BA4B24(EnToto* this, PlayState* play); s32 func_80BA4C0C(EnToto* this, PlayState* play); s32 func_80BA4C44(EnToto* this, PlayState* play); -ActorInit En_Toto_InitVars = { +ActorProfile En_Toto_Profile = { /**/ ACTOR_EN_TOTO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Trt/z_en_trt.c b/src/overlays/actors/ovl_En_Trt/z_en_trt.c index 66d261f582..75383ee9b9 100644 --- a/src/overlays/actors/ovl_En_Trt/z_en_trt.c +++ b/src/overlays/actors/ovl_En_Trt/z_en_trt.c @@ -91,7 +91,7 @@ static AnimationInfoS sAnimationInfo[TRT_ANIM_MAX] = { { &gKotakeFlyAnim, 1.0f, 0, -1, ANIMMODE_LOOP, 0 }, // TRT_ANIM_FLY }; -ActorInit En_Trt_InitVars = { +ActorProfile En_Trt_Profile = { /**/ ACTOR_EN_TRT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Trt2/z_en_trt2.c b/src/overlays/actors/ovl_En_Trt2/z_en_trt2.c index 65cf4f2e34..480af43a0e 100644 --- a/src/overlays/actors/ovl_En_Trt2/z_en_trt2.c +++ b/src/overlays/actors/ovl_En_Trt2/z_en_trt2.c @@ -53,7 +53,7 @@ static AnimationInfoS sAnimationInfo[TRT2_ANIM_MAX] = { { &gKotakeFlyAnim, 1.0f, 0, -1, ANIMMODE_LOOP, 0 }, // TRT2_ANIM_FLY }; -ActorInit En_Trt2_InitVars = { +ActorProfile En_Trt2_Profile = { /**/ ACTOR_EN_TRT2, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tru/z_en_tru.c b/src/overlays/actors/ovl_En_Tru/z_en_tru.c index f3b281ad34..38845a459e 100644 --- a/src/overlays/actors/ovl_En_Tru/z_en_tru.c +++ b/src/overlays/actors/ovl_En_Tru/z_en_tru.c @@ -118,7 +118,7 @@ static MsgScript D_80A889A4[] = { /* 0x000A 0x01 */ MSCRIPT_CMD_DONE(), }; -ActorInit En_Tru_InitVars = { +ActorProfile En_Tru_Profile = { /**/ ACTOR_EN_TRU, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tru_Mt/z_en_tru_mt.c b/src/overlays/actors/ovl_En_Tru_Mt/z_en_tru_mt.c index 7d3ec379ad..e928527fd3 100644 --- a/src/overlays/actors/ovl_En_Tru_Mt/z_en_tru_mt.c +++ b/src/overlays/actors/ovl_En_Tru_Mt/z_en_tru_mt.c @@ -40,7 +40,7 @@ typedef enum { /* 0x10 */ KOUME_MT_ANIM_MAX } KoumeMtAnimation; -ActorInit En_Tru_Mt_InitVars = { +ActorProfile En_Tru_Mt_Profile = { /**/ ACTOR_EN_TRU_MT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tsn/z_en_tsn.c b/src/overlays/actors/ovl_En_Tsn/z_en_tsn.c index 12aaa8e397..0fca434398 100644 --- a/src/overlays/actors/ovl_En_Tsn/z_en_tsn.c +++ b/src/overlays/actors/ovl_En_Tsn/z_en_tsn.c @@ -29,7 +29,7 @@ void func_80AE0D10(EnTsn* this, PlayState* play); void func_80AE0D78(EnTsn* this, PlayState* play); void func_80AE0F84(Actor* thisx, PlayState* play); -ActorInit En_Tsn_InitVars = { +ActorProfile En_Tsn_Profile = { /**/ ACTOR_EN_TSN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Tubo_Trap/z_en_tubo_trap.c b/src/overlays/actors/ovl_En_Tubo_Trap/z_en_tubo_trap.c index fdd4dc8207..dda0f402b7 100644 --- a/src/overlays/actors/ovl_En_Tubo_Trap/z_en_tubo_trap.c +++ b/src/overlays/actors/ovl_En_Tubo_Trap/z_en_tubo_trap.c @@ -39,7 +39,7 @@ static ColliderCylinderInit sCylinderInit = { { 11, 28, 0, { 0, 0, 0 } }, }; -ActorInit En_Tubo_Trap_InitVars = { +ActorProfile En_Tubo_Trap_Profile = { /**/ ACTOR_EN_TUBO_TRAP, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Twig/z_en_twig.c b/src/overlays/actors/ovl_En_Twig/z_en_twig.c index d9eb2a6299..85f8a84ed8 100644 --- a/src/overlays/actors/ovl_En_Twig/z_en_twig.c +++ b/src/overlays/actors/ovl_En_Twig/z_en_twig.c @@ -24,7 +24,7 @@ void func_80AC0AC8(EnTwig* this, PlayState* play); void func_80AC0CC4(EnTwig* this, PlayState* play); void func_80AC0D2C(EnTwig* this, PlayState* play); -ActorInit En_Twig_InitVars = { +ActorProfile En_Twig_Profile = { /**/ ACTOR_EN_TWIG, /**/ ACTORCAT_MISC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Viewer/z_en_viewer.c b/src/overlays/actors/ovl_En_Viewer/z_en_viewer.c index c64b536e3b..3e74b3ebcb 100644 --- a/src/overlays/actors/ovl_En_Viewer/z_en_viewer.c +++ b/src/overlays/actors/ovl_En_Viewer/z_en_viewer.c @@ -23,7 +23,7 @@ static u8 D_8089F3E0 = 0; static u8 D_8089F3E4 = 0; -ActorInit En_Viewer_InitVars = { +ActorProfile En_Viewer_Profile = { /**/ ACTOR_EN_VIEWER, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Vm/z_en_vm.c b/src/overlays/actors/ovl_En_Vm/z_en_vm.c index a9d8a38ec7..e5abb84250 100644 --- a/src/overlays/actors/ovl_En_Vm/z_en_vm.c +++ b/src/overlays/actors/ovl_En_Vm/z_en_vm.c @@ -29,7 +29,7 @@ void func_808CCB08(EnVm* this); void func_808CCB50(EnVm* this, PlayState* play); void func_808CCCF0(EnVm* this, PlayState* play); -ActorInit En_Vm_InitVars = { +ActorProfile En_Vm_Profile = { /**/ ACTOR_EN_VM, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wallmas/z_en_wallmas.c b/src/overlays/actors/ovl_En_Wallmas/z_en_wallmas.c index 07962f8a94..957c40f15a 100644 --- a/src/overlays/actors/ovl_En_Wallmas/z_en_wallmas.c +++ b/src/overlays/actors/ovl_En_Wallmas/z_en_wallmas.c @@ -45,7 +45,7 @@ void EnWallmas_WaitForProximity(EnWallmas* this, PlayState* play); void EnWallmas_WaitForSwitchFlag(EnWallmas* this, PlayState* play); void EnWallmas_Stun(EnWallmas* this, PlayState* play); -ActorInit En_Wallmas_InitVars = { +ActorProfile En_Wallmas_Profile = { /**/ ACTOR_EN_WALLMAS, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Warp_Uzu/z_en_warp_uzu.c b/src/overlays/actors/ovl_En_Warp_Uzu/z_en_warp_uzu.c index 0e48e16ab9..587484c784 100644 --- a/src/overlays/actors/ovl_En_Warp_Uzu/z_en_warp_uzu.c +++ b/src/overlays/actors/ovl_En_Warp_Uzu/z_en_warp_uzu.c @@ -21,7 +21,7 @@ void func_80A66278(EnWarpUzu* this, PlayState* play); void func_80A66384(EnWarpUzu* this, PlayState* play); void EnWarpUzu_DoNothing(EnWarpUzu* this, PlayState* play); -ActorInit En_Warp_Uzu_InitVars = { +ActorProfile En_Warp_Uzu_Profile = { /**/ ACTOR_EN_WARP_UZU, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Warp_tag/z_en_warp_tag.c b/src/overlays/actors/ovl_En_Warp_tag/z_en_warp_tag.c index ec591a3e13..262512b29c 100644 --- a/src/overlays/actors/ovl_En_Warp_tag/z_en_warp_tag.c +++ b/src/overlays/actors/ovl_En_Warp_tag/z_en_warp_tag.c @@ -24,7 +24,7 @@ void EnWarpTag_Unused809C0A20(EnWarptag* this, PlayState* play); void EnWarpTag_RespawnPlayer(EnWarptag* this, PlayState* play); void EnWarpTag_GrottoReturn(EnWarptag* this, PlayState* play); -ActorInit En_Warp_tag_InitVars = { +ActorProfile En_Warp_tag_Profile = { /**/ ACTOR_EN_WARP_TAG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Water_Effect/z_en_water_effect.c b/src/overlays/actors/ovl_En_Water_Effect/z_en_water_effect.c index b8af3e17ac..3ea15f7e49 100644 --- a/src/overlays/actors/ovl_En_Water_Effect/z_en_water_effect.c +++ b/src/overlays/actors/ovl_En_Water_Effect/z_en_water_effect.c @@ -31,7 +31,7 @@ void func_80A5A184(Actor* thisx, PlayState* play2); void func_80A5A534(Actor* thisx, PlayState* play); void func_80A5A6B8(Actor* thisx, PlayState* play2); -ActorInit En_Water_Effect_InitVars = { +ActorProfile En_Water_Effect_Profile = { /**/ ACTOR_EN_WATER_EFFECT, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wdhand/z_en_wdhand.c b/src/overlays/actors/ovl_En_Wdhand/z_en_wdhand.c index f95bc9391b..355f9373de 100644 --- a/src/overlays/actors/ovl_En_Wdhand/z_en_wdhand.c +++ b/src/overlays/actors/ovl_En_Wdhand/z_en_wdhand.c @@ -32,7 +32,7 @@ void EnWdhand_SetupDie(EnWdhand* this); void EnWdhand_GetInitVelocity(EnWdhand* this, Vec3f* dst); void EnWdhand_Vec3fToVec3s(Vec3s* dst, Vec3f* src); -ActorInit En_Wdhand_InitVars = { +ActorProfile En_Wdhand_Profile = { /**/ ACTOR_EN_WDHAND, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Weather_Tag/z_en_weather_tag.c b/src/overlays/actors/ovl_En_Weather_Tag/z_en_weather_tag.c index 7c7a9ea138..ff784c9fe7 100644 --- a/src/overlays/actors/ovl_En_Weather_Tag/z_en_weather_tag.c +++ b/src/overlays/actors/ovl_En_Weather_Tag/z_en_weather_tag.c @@ -35,7 +35,7 @@ void func_809672DC(EnWeatherTag* this, PlayState* play); void func_809674C8(EnWeatherTag* this, PlayState* play); void func_80967608(EnWeatherTag* this, PlayState* play); -ActorInit En_Weather_Tag_InitVars = { +ActorProfile En_Weather_Tag_Profile = { /**/ ACTOR_EN_WEATHER_TAG, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wf/z_en_wf.c b/src/overlays/actors/ovl_En_Wf/z_en_wf.c index 1472806563..ef0e0360f2 100644 --- a/src/overlays/actors/ovl_En_Wf/z_en_wf.c +++ b/src/overlays/actors/ovl_En_Wf/z_en_wf.c @@ -56,7 +56,7 @@ void func_80993524(EnWf* this); void func_8099357C(EnWf* this, PlayState* play); s32 func_8099408C(PlayState* play, EnWf* this); -ActorInit En_Wf_InitVars = { +ActorProfile En_Wf_Profile = { /**/ ACTOR_EN_WF, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wiz/z_en_wiz.c b/src/overlays/actors/ovl_En_Wiz/z_en_wiz.c index 6c38bde41f..6ed18aef5b 100644 --- a/src/overlays/actors/ovl_En_Wiz/z_en_wiz.c +++ b/src/overlays/actors/ovl_En_Wiz/z_en_wiz.c @@ -81,7 +81,7 @@ typedef enum { /* 5 */ EN_WIZ_ANIM_DAMAGE } EnWizAnimation; -ActorInit En_Wiz_InitVars = { +ActorProfile En_Wiz_Profile = { /**/ ACTOR_EN_WIZ, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wiz_Brock/z_en_wiz_brock.c b/src/overlays/actors/ovl_En_Wiz_Brock/z_en_wiz_brock.c index a5c5f2c761..045ec91992 100644 --- a/src/overlays/actors/ovl_En_Wiz_Brock/z_en_wiz_brock.c +++ b/src/overlays/actors/ovl_En_Wiz_Brock/z_en_wiz_brock.c @@ -21,7 +21,7 @@ void EnWizBrock_UpdateStatus(EnWizBrock* this, PlayState* play); s16 sPlatformIndex = 0; -ActorInit En_Wiz_Brock_InitVars = { +ActorProfile En_Wiz_Brock_Profile = { /**/ ACTOR_EN_WIZ_BROCK, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wiz_Fire/z_en_wiz_fire.c b/src/overlays/actors/ovl_En_Wiz_Fire/z_en_wiz_fire.c index 53212f72fe..84739123b1 100644 --- a/src/overlays/actors/ovl_En_Wiz_Fire/z_en_wiz_fire.c +++ b/src/overlays/actors/ovl_En_Wiz_Fire/z_en_wiz_fire.c @@ -37,7 +37,7 @@ typedef enum { static s32 sPoolHitByIceArrow = false; -ActorInit En_Wiz_Fire_InitVars = { +ActorProfile En_Wiz_Fire_Profile = { /**/ ACTOR_EN_WIZ_FIRE, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Wood02/z_en_wood02.c b/src/overlays/actors/ovl_En_Wood02/z_en_wood02.c index 3c14684fc5..e6f921bbc6 100644 --- a/src/overlays/actors/ovl_En_Wood02/z_en_wood02.c +++ b/src/overlays/actors/ovl_En_Wood02/z_en_wood02.c @@ -39,7 +39,7 @@ typedef enum { f32 sWood02SpawnCos; f32 sWood02SpawnSin; -ActorInit En_Wood02_InitVars = { +ActorProfile En_Wood02_Profile = { /**/ ACTOR_EN_WOOD02, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Yb/z_en_yb.c b/src/overlays/actors/ovl_En_Yb/z_en_yb.c index 50761af637..320a58f967 100644 --- a/src/overlays/actors/ovl_En_Yb/z_en_yb.c +++ b/src/overlays/actors/ovl_En_Yb/z_en_yb.c @@ -32,7 +32,7 @@ void EnYb_ActorShadowFunc(Actor* thisx, Lights* mapper, PlayState* play); void EnYb_ChangeAnim(PlayState* play, EnYb* this, s16 animIndex, u8 animMode, f32 morphFrames); s32 EnYb_CanTalk(EnYb* this, PlayState* play); -ActorInit En_Yb_InitVars = { +ActorProfile En_Yb_Profile = { /**/ ACTOR_EN_YB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zl1/z_en_zl1.c b/src/overlays/actors/ovl_En_Zl1/z_en_zl1.c index 0daf4d7c07..673d452b0b 100644 --- a/src/overlays/actors/ovl_En_Zl1/z_en_zl1.c +++ b/src/overlays/actors/ovl_En_Zl1/z_en_zl1.c @@ -15,7 +15,7 @@ void EnZl1_Destroy(Actor* thisx, PlayState* play); void EnZl1_Update(Actor* thisx, PlayState* play); void EnZl1_Draw(Actor* thisx, PlayState* play); -ActorInit En_Zl1_InitVars = { +ActorProfile En_Zl1_Profile = { /**/ ACTOR_EN_ZL1, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zl4/z_en_zl4.c b/src/overlays/actors/ovl_En_Zl4/z_en_zl4.c index e8ffaab40a..407fb4b290 100644 --- a/src/overlays/actors/ovl_En_Zl4/z_en_zl4.c +++ b/src/overlays/actors/ovl_En_Zl4/z_en_zl4.c @@ -18,7 +18,7 @@ void EnZl4_Draw(Actor* thisx, PlayState* play); void EnZl4_DoNothing(EnZl4* this, PlayState* play); -ActorInit En_Zl4_InitVars = { +ActorProfile En_Zl4_Profile = { /**/ ACTOR_EN_ZL4, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zo/z_en_zo.c b/src/overlays/actors/ovl_En_Zo/z_en_zo.c index 7e5dd65b40..9e74d6a78d 100644 --- a/src/overlays/actors/ovl_En_Zo/z_en_zo.c +++ b/src/overlays/actors/ovl_En_Zo/z_en_zo.c @@ -19,7 +19,7 @@ void EnZo_FollowPath(EnZo* this, PlayState* play); void EnZo_TreadWater(EnZo* this, PlayState* play); void EnZo_DoNothing(EnZo* this, PlayState* play); -ActorInit En_Zo_InitVars = { +ActorProfile En_Zo_Profile = { /**/ ACTOR_EN_ZO, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zob/z_en_zob.c b/src/overlays/actors/ovl_En_Zob/z_en_zob.c index bb398b8a65..74059d9b5a 100644 --- a/src/overlays/actors/ovl_En_Zob/z_en_zob.c +++ b/src/overlays/actors/ovl_En_Zob/z_en_zob.c @@ -37,7 +37,7 @@ void func_80BA0BB4(EnZob* this, PlayState* play); void func_80BA0C14(EnZob* this, PlayState* play); void func_80BA0CF4(EnZob* this, PlayState* play); -ActorInit En_Zob_InitVars = { +ActorProfile En_Zob_Profile = { /**/ ACTOR_EN_ZOB, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zod/z_en_zod.c b/src/overlays/actors/ovl_En_Zod/z_en_zod.c index f70c264cc0..251a04e450 100644 --- a/src/overlays/actors/ovl_En_Zod/z_en_zod.c +++ b/src/overlays/actors/ovl_En_Zod/z_en_zod.c @@ -45,7 +45,7 @@ typedef enum { /* 9 */ ENZOD_INSTRUMENT_BASS_DRUM } EnZodInstrument; -ActorInit En_Zod_InitVars = { +ActorProfile En_Zod_Profile = { /**/ ACTOR_EN_ZOD, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zog/z_en_zog.c b/src/overlays/actors/ovl_En_Zog/z_en_zog.c index 62728ba17a..3a6482bdac 100644 --- a/src/overlays/actors/ovl_En_Zog/z_en_zog.c +++ b/src/overlays/actors/ovl_En_Zog/z_en_zog.c @@ -33,7 +33,7 @@ void func_80B95240(EnZog* this, PlayState* play); static u8 sTexturesDesegmented; -ActorInit En_Zog_InitVars = { +ActorProfile En_Zog_Profile = { /**/ ACTOR_EN_ZOG, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zoraegg/z_en_zoraegg.c b/src/overlays/actors/ovl_En_Zoraegg/z_en_zoraegg.c index 36b00032da..1d8a4877b6 100644 --- a/src/overlays/actors/ovl_En_Zoraegg/z_en_zoraegg.c +++ b/src/overlays/actors/ovl_En_Zoraegg/z_en_zoraegg.c @@ -37,7 +37,7 @@ void func_80B32BB8(EnZoraegg* this, PlayState* play); void func_80B32C34(EnZoraegg* this, PlayState* play); void func_80B32D08(EnZoraegg* this, PlayState* play); -ActorInit En_Zoraegg_InitVars = { +ActorProfile En_Zoraegg_Profile = { /**/ ACTOR_EN_ZORAEGG, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zos/z_en_zos.c b/src/overlays/actors/ovl_En_Zos/z_en_zos.c index 8bce1e6cbd..ba62722c18 100644 --- a/src/overlays/actors/ovl_En_Zos/z_en_zos.c +++ b/src/overlays/actors/ovl_En_Zos/z_en_zos.c @@ -50,7 +50,7 @@ typedef enum { /* 13 */ EN_ZOS_ANIM_MAX } EnZosAnimation; -ActorInit En_Zos_InitVars = { +ActorProfile En_Zos_Profile = { /**/ ACTOR_EN_ZOS, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zot/z_en_zot.c b/src/overlays/actors/ovl_En_Zot/z_en_zot.c index 0d385b4710..52262efef8 100644 --- a/src/overlays/actors/ovl_En_Zot/z_en_zot.c +++ b/src/overlays/actors/ovl_En_Zot/z_en_zot.c @@ -32,7 +32,7 @@ void func_80B990A4(EnZot* this, PlayState* play); void func_80B992C0(EnZot* this, PlayState* play); void func_80B99384(EnZot* this, PlayState* play); -ActorInit En_Zot_InitVars = { +ActorProfile En_Zot_Profile = { /**/ ACTOR_EN_ZOT, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zov/z_en_zov.c b/src/overlays/actors/ovl_En_Zov/z_en_zov.c index 73c0eae7f1..038aa61dc0 100644 --- a/src/overlays/actors/ovl_En_Zov/z_en_zov.c +++ b/src/overlays/actors/ovl_En_Zov/z_en_zov.c @@ -27,7 +27,7 @@ void func_80BD1DB8(EnZov* this, PlayState* play); void func_80BD1F1C(EnZov* this, PlayState* play); s32 EnZov_ValidatePictograph(PlayState* play, Actor* thisx); -ActorInit En_Zov_InitVars = { +ActorProfile En_Zov_Profile = { /**/ ACTOR_EN_ZOV, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_En_Zow/z_en_zow.c b/src/overlays/actors/ovl_En_Zow/z_en_zow.c index e85d498a8e..0a1c223fec 100644 --- a/src/overlays/actors/ovl_En_Zow/z_en_zow.c +++ b/src/overlays/actors/ovl_En_Zow/z_en_zow.c @@ -22,7 +22,7 @@ void func_80BDD634(EnZow* this, PlayState* play); void func_80BDD6BC(EnZow* this, PlayState* play); void func_80BDD79C(EnZow* this, PlayState* play); -ActorInit En_Zow_InitVars = { +ActorProfile En_Zow_Profile = { /**/ ACTOR_EN_ZOW, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Item_B_Heart/z_item_b_heart.c b/src/overlays/actors/ovl_Item_B_Heart/z_item_b_heart.c index c7427913f7..9f7fa15a68 100644 --- a/src/overlays/actors/ovl_Item_B_Heart/z_item_b_heart.c +++ b/src/overlays/actors/ovl_Item_B_Heart/z_item_b_heart.c @@ -18,7 +18,7 @@ void ItemBHeart_Draw(Actor* thisx, PlayState* play); void ItemBHeart_UpdateModel(ItemBHeart* this, PlayState* play); -ActorInit Item_B_Heart_InitVars = { +ActorProfile Item_B_Heart_Profile = { /**/ ACTOR_ITEM_B_HEART, /**/ ACTORCAT_BOSS, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Item_Etcetera/z_item_etcetera.c b/src/overlays/actors/ovl_Item_Etcetera/z_item_etcetera.c index b2ffd38f49..c97d01cf4a 100644 --- a/src/overlays/actors/ovl_Item_Etcetera/z_item_etcetera.c +++ b/src/overlays/actors/ovl_Item_Etcetera/z_item_etcetera.c @@ -20,7 +20,7 @@ void func_809200F8(ItemEtcetera* this, PlayState* play); void ItemEtcetera_DrawThroughLens(Actor* thisx, PlayState* play); void ItemEtcetera_Draw(Actor* thisx, PlayState* play); -ActorInit Item_Etcetera_InitVars = { +ActorProfile Item_Etcetera_Profile = { /**/ ACTOR_ITEM_ETCETERA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Item_Inbox/z_item_inbox.c b/src/overlays/actors/ovl_Item_Inbox/z_item_inbox.c index d57a377a7f..b94b18e436 100644 --- a/src/overlays/actors/ovl_Item_Inbox/z_item_inbox.c +++ b/src/overlays/actors/ovl_Item_Inbox/z_item_inbox.c @@ -17,7 +17,7 @@ void ItemInbox_Draw(Actor* thisx, PlayState* play); void ItemInbox_Idle(ItemInbox* this, PlayState* play); -ActorInit Item_Inbox_InitVars = { +ActorProfile Item_Inbox_Profile = { /**/ ACTOR_ITEM_INBOX, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c b/src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c index e0357ce641..4df300499b 100644 --- a/src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c +++ b/src/overlays/actors/ovl_Mir_Ray/z_mir_ray.c @@ -41,7 +41,7 @@ typedef struct { /* 0x1F */ u8 params; } MirRayDataEntry; // size = 0x20 -ActorInit Mir_Ray_InitVars = { +ActorProfile Mir_Ray_Profile = { /**/ ACTOR_MIR_RAY, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Mir_Ray2/z_mir_ray2.c b/src/overlays/actors/ovl_Mir_Ray2/z_mir_ray2.c index 8886d30f44..8b729669ee 100644 --- a/src/overlays/actors/ovl_Mir_Ray2/z_mir_ray2.c +++ b/src/overlays/actors/ovl_Mir_Ray2/z_mir_ray2.c @@ -15,7 +15,7 @@ void MirRay2_Destroy(Actor* thisx, PlayState* play); void MirRay2_Update(Actor* thisx, PlayState* play); void MirRay2_Draw(Actor* thisx, PlayState* play); -ActorInit Mir_Ray2_InitVars = { +ActorProfile Mir_Ray2_Profile = { /**/ ACTOR_MIR_RAY2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Mir_Ray3/z_mir_ray3.c b/src/overlays/actors/ovl_Mir_Ray3/z_mir_ray3.c index e861389f5c..d0ae6310ad 100644 --- a/src/overlays/actors/ovl_Mir_Ray3/z_mir_ray3.c +++ b/src/overlays/actors/ovl_Mir_Ray3/z_mir_ray3.c @@ -16,7 +16,7 @@ void MirRay3_Destroy(Actor* thisx, PlayState* play); void MirRay3_Update(Actor* thisx, PlayState* play); void MirRay3_Draw(Actor* thisx, PlayState* play); -ActorInit Mir_Ray3_InitVars = { +ActorProfile Mir_Ray3_Profile = { /**/ ACTOR_MIR_RAY3, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Aqua/z_obj_aqua.c b/src/overlays/actors/ovl_Obj_Aqua/z_obj_aqua.c index b2d5bff7d0..32074f2258 100644 --- a/src/overlays/actors/ovl_Obj_Aqua/z_obj_aqua.c +++ b/src/overlays/actors/ovl_Obj_Aqua/z_obj_aqua.c @@ -24,7 +24,7 @@ void func_80ACBDFC(ObjAqua* this, PlayState* play); void func_80ACBD34(ObjAqua* this); -ActorInit Obj_Aqua_InitVars = { +ActorProfile Obj_Aqua_Profile = { /**/ ACTOR_OBJ_AQUA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Armos/z_obj_armos.c b/src/overlays/actors/ovl_Obj_Armos/z_obj_armos.c index 872b50cd15..36d15ec37c 100644 --- a/src/overlays/actors/ovl_Obj_Armos/z_obj_armos.c +++ b/src/overlays/actors/ovl_Obj_Armos/z_obj_armos.c @@ -23,7 +23,7 @@ void func_809A562C(ObjArmos* this, PlayState* play); void func_809A57D8(ObjArmos* this); void func_809A57F4(ObjArmos* this, PlayState* play); -ActorInit Obj_Armos_InitVars = { +ActorProfile Obj_Armos_Profile = { /**/ ACTOR_OBJ_ARMOS, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Bean/z_obj_bean.c b/src/overlays/actors/ovl_Obj_Bean/z_obj_bean.c index be9b1e1eee..7e9e93a717 100644 --- a/src/overlays/actors/ovl_Obj_Bean/z_obj_bean.c +++ b/src/overlays/actors/ovl_Obj_Bean/z_obj_bean.c @@ -60,7 +60,7 @@ void func_80938C1C(Actor* thisx, PlayState* play); void func_80938E00(Actor* thisx, PlayState* play); void func_80938F50(Actor* thisx, PlayState* play); -ActorInit Obj_Bean_InitVars = { +ActorProfile Obj_Bean_Profile = { /**/ ACTOR_OBJ_BEAN, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Bell/z_obj_bell.c b/src/overlays/actors/ovl_Obj_Bell/z_obj_bell.c index 20324a2ec5..e36726357f 100644 --- a/src/overlays/actors/ovl_Obj_Bell/z_obj_bell.c +++ b/src/overlays/actors/ovl_Obj_Bell/z_obj_bell.c @@ -19,7 +19,7 @@ void ObjBell_Draw(Actor* thisx, PlayState* play); s32 func_80A356D8(ObjBell* this); s32 func_80A357A8(ObjBell* this, PlayState* play); -ActorInit Obj_Bell_InitVars = { +ActorProfile Obj_Bell_Profile = { /**/ ACTOR_OBJ_BELL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Bigicicle/z_obj_bigicicle.c b/src/overlays/actors/ovl_Obj_Bigicicle/z_obj_bigicicle.c index fb0c48f8a4..052cc1b7f7 100644 --- a/src/overlays/actors/ovl_Obj_Bigicicle/z_obj_bigicicle.c +++ b/src/overlays/actors/ovl_Obj_Bigicicle/z_obj_bigicicle.c @@ -24,7 +24,7 @@ void func_80AE9180(ObjBigicicle* this, PlayState* play); void func_80AE9258(ObjBigicicle* this, PlayState* play); void func_80AE939C(ObjBigicicle* this, PlayState* play); -ActorInit Obj_Bigicicle_InitVars = { +ActorProfile Obj_Bigicicle_Profile = { /**/ ACTOR_OBJ_BIGICICLE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Blockstop/z_obj_blockstop.c b/src/overlays/actors/ovl_Obj_Blockstop/z_obj_blockstop.c index a2860a884e..77f1de316f 100644 --- a/src/overlays/actors/ovl_Obj_Blockstop/z_obj_blockstop.c +++ b/src/overlays/actors/ovl_Obj_Blockstop/z_obj_blockstop.c @@ -17,7 +17,7 @@ void ObjBlockstop_Update(Actor* thisx, PlayState* play); void ObjBlockstop_CheckForBlock(ObjBlockstop* this, PlayState* play); void ObjBlockstop_TryPlayCutscene(ObjBlockstop* this, PlayState* play); -ActorInit Obj_Blockstop_InitVars = { +ActorProfile Obj_Blockstop_Profile = { /**/ ACTOR_OBJ_BLOCKSTOP, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Boat/z_obj_boat.c b/src/overlays/actors/ovl_Obj_Boat/z_obj_boat.c index 625ded8116..19f0f9c8cd 100644 --- a/src/overlays/actors/ovl_Obj_Boat/z_obj_boat.c +++ b/src/overlays/actors/ovl_Obj_Boat/z_obj_boat.c @@ -18,7 +18,7 @@ void ObjBoat_Draw(Actor* thisx, PlayState* play); void ObjBoat_UpdateCutscene(Actor* thisx, PlayState* play2); -ActorInit Obj_Boat_InitVars = { +ActorProfile Obj_Boat_Profile = { /**/ ACTOR_OBJ_BOAT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Bombiwa/z_obj_bombiwa.c b/src/overlays/actors/ovl_Obj_Bombiwa/z_obj_bombiwa.c index 7f91723439..df7ac46289 100644 --- a/src/overlays/actors/ovl_Obj_Bombiwa/z_obj_bombiwa.c +++ b/src/overlays/actors/ovl_Obj_Bombiwa/z_obj_bombiwa.c @@ -24,7 +24,7 @@ void func_8093A1F0(ObjBombiwa* this, PlayState* play); void func_8093A418(Actor* thisx, PlayState* play); void func_8093A608(Actor* thisx, PlayState* play); -ActorInit Obj_Bombiwa_InitVars = { +ActorProfile Obj_Bombiwa_Profile = { /**/ ACTOR_OBJ_BOMBIWA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Boyo/z_obj_boyo.c b/src/overlays/actors/ovl_Obj_Boyo/z_obj_boyo.c index d847f22885..c50aabe0cb 100644 --- a/src/overlays/actors/ovl_Obj_Boyo/z_obj_boyo.c +++ b/src/overlays/actors/ovl_Obj_Boyo/z_obj_boyo.c @@ -17,7 +17,7 @@ void ObjBoyo_PushPirate(ObjBoyo* this, Actor* actor); void ObjBoyo_ExplodeBomb(ObjBoyo* this, Actor* actor); Actor* ObjBoyo_FindCollidedActor(ObjBoyo* this, PlayState* play, s32* index); -ActorInit Obj_Boyo_InitVars = { +ActorProfile Obj_Boyo_Profile = { /**/ ACTOR_OBJ_BOYO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Chan/z_obj_chan.c b/src/overlays/actors/ovl_Obj_Chan/z_obj_chan.c index 2839582709..a681c4fbda 100644 --- a/src/overlays/actors/ovl_Obj_Chan/z_obj_chan.c +++ b/src/overlays/actors/ovl_Obj_Chan/z_obj_chan.c @@ -28,7 +28,7 @@ void ObjChan_Draw(Actor* thisx, PlayState* play); void ObjChan_ChandelierAction(ObjChan* this, PlayState* play); void ObjChan_PotAction(ObjChan* this, PlayState* play); -ActorInit Obj_Chan_InitVars = { +ActorProfile Obj_Chan_Profile = { /**/ ACTOR_OBJ_CHAN, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Chikuwa/z_obj_chikuwa.c b/src/overlays/actors/ovl_Obj_Chikuwa/z_obj_chikuwa.c index c4011982f4..5e4cd74512 100644 --- a/src/overlays/actors/ovl_Obj_Chikuwa/z_obj_chikuwa.c +++ b/src/overlays/actors/ovl_Obj_Chikuwa/z_obj_chikuwa.c @@ -17,7 +17,7 @@ void ObjChikuwa_Destroy(Actor* thisx, PlayState* play); void ObjChikuwa_Update(Actor* thisx, PlayState* play); void ObjChikuwa_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Chikuwa_InitVars = { +ActorProfile Obj_Chikuwa_Profile = { /**/ ACTOR_OBJ_CHIKUWA, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Comb/z_obj_comb.c b/src/overlays/actors/ovl_Obj_Comb/z_obj_comb.c index 5e3443af0c..fba6519a58 100644 --- a/src/overlays/actors/ovl_Obj_Comb/z_obj_comb.c +++ b/src/overlays/actors/ovl_Obj_Comb/z_obj_comb.c @@ -22,7 +22,7 @@ void func_8098DEA0(ObjComb* this, PlayState* play); void func_8098E098(ObjComb* this); void func_8098E0B8(ObjComb* this, PlayState* play); -ActorInit Obj_Comb_InitVars = { +ActorProfile Obj_Comb_Profile = { /**/ ACTOR_OBJ_COMB, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Danpeilift/z_obj_danpeilift.c b/src/overlays/actors/ovl_Obj_Danpeilift/z_obj_danpeilift.c index 11814ebaf2..e4f0fe9ed4 100644 --- a/src/overlays/actors/ovl_Obj_Danpeilift/z_obj_danpeilift.c +++ b/src/overlays/actors/ovl_Obj_Danpeilift/z_obj_danpeilift.c @@ -21,7 +21,7 @@ void ObjDanpeilift_Move(ObjDanpeilift* this, PlayState* play); void ObjDanpeilift_Teleport(ObjDanpeilift* this, PlayState* play); void ObjDanpeilift_Wait(ObjDanpeilift* this, PlayState* play); -ActorInit Obj_Danpeilift_InitVars = { +ActorProfile Obj_Danpeilift_Profile = { /**/ ACTOR_OBJ_DANPEILIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Demo/z_obj_demo.c b/src/overlays/actors/ovl_Obj_Demo/z_obj_demo.c index d35240f5f3..dc7acb98d2 100644 --- a/src/overlays/actors/ovl_Obj_Demo/z_obj_demo.c +++ b/src/overlays/actors/ovl_Obj_Demo/z_obj_demo.c @@ -17,7 +17,7 @@ void func_80983678(ObjDemo* this, PlayState* play); void func_80983704(ObjDemo* this, PlayState* play); void func_80983634(PlayState* play); -ActorInit Obj_Demo_InitVars = { +ActorProfile Obj_Demo_Profile = { /**/ ACTOR_OBJ_DEMO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Dhouse/z_obj_dhouse.c b/src/overlays/actors/ovl_Obj_Dhouse/z_obj_dhouse.c index 03be64af4e..7a21b8b836 100644 --- a/src/overlays/actors/ovl_Obj_Dhouse/z_obj_dhouse.c +++ b/src/overlays/actors/ovl_Obj_Dhouse/z_obj_dhouse.c @@ -28,7 +28,7 @@ void func_80B139F4(ObjDhouse* this, PlayState* play); void func_80B13C08(Actor* thisx, PlayState* play); void func_80B13E40(Actor* thisx, PlayState* play); -ActorInit Obj_Dhouse_InitVars = { +ActorProfile Obj_Dhouse_Profile = { /**/ ACTOR_OBJ_DHOUSE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Dinner/z_obj_dinner.c b/src/overlays/actors/ovl_Obj_Dinner/z_obj_dinner.c index cfa29a0357..54ecb0e7d6 100644 --- a/src/overlays/actors/ovl_Obj_Dinner/z_obj_dinner.c +++ b/src/overlays/actors/ovl_Obj_Dinner/z_obj_dinner.c @@ -16,7 +16,7 @@ void ObjDinner_Destroy(Actor* thisx, PlayState* play); void ObjDinner_Update(Actor* thisx, PlayState* play); void ObjDinner_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Dinner_InitVars = { +ActorProfile Obj_Dinner_Profile = { /**/ ACTOR_OBJ_DINNER, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Dora/z_obj_dora.c b/src/overlays/actors/ovl_Obj_Dora/z_obj_dora.c index a55f39b302..6f069a924c 100644 --- a/src/overlays/actors/ovl_Obj_Dora/z_obj_dora.c +++ b/src/overlays/actors/ovl_Obj_Dora/z_obj_dora.c @@ -35,7 +35,7 @@ typedef enum { /* 0xF */ DORA_DMGEFF_LIGHT } ObjDoraDamageEffect; -ActorInit Obj_Dora_InitVars = { +ActorProfile Obj_Dora_Profile = { /**/ ACTOR_OBJ_DORA, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Dowsing/z_obj_dowsing.c b/src/overlays/actors/ovl_Obj_Dowsing/z_obj_dowsing.c index a15b6355ff..1597d1218b 100644 --- a/src/overlays/actors/ovl_Obj_Dowsing/z_obj_dowsing.c +++ b/src/overlays/actors/ovl_Obj_Dowsing/z_obj_dowsing.c @@ -17,7 +17,7 @@ void ObjDowsing_Update(Actor* thisx, PlayState* play); s32 ObjDowsing_GetFlag(ObjDowsing* this, PlayState* play); s32 ObjDowsing_CheckValidSpawn(ObjDowsing* this, PlayState* play); -ActorInit Obj_Dowsing_InitVars = { +ActorProfile Obj_Dowsing_Profile = { /**/ ACTOR_OBJ_DOWSING, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Driftice/z_obj_driftice.c b/src/overlays/actors/ovl_Obj_Driftice/z_obj_driftice.c index 8045a2409d..344730ee99 100644 --- a/src/overlays/actors/ovl_Obj_Driftice/z_obj_driftice.c +++ b/src/overlays/actors/ovl_Obj_Driftice/z_obj_driftice.c @@ -25,7 +25,7 @@ void func_80A67450(ObjDriftice* this, PlayState* play); void func_80A674A8(ObjDriftice* this); void func_80A674C4(ObjDriftice* this, PlayState* play); -ActorInit Obj_Driftice_InitVars = { +ActorProfile Obj_Driftice_Profile = { /**/ ACTOR_OBJ_DRIFTICE, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Ending/z_obj_ending.c b/src/overlays/actors/ovl_Obj_Ending/z_obj_ending.c index 6bf05792d9..75b8f6753d 100644 --- a/src/overlays/actors/ovl_Obj_Ending/z_obj_ending.c +++ b/src/overlays/actors/ovl_Obj_Ending/z_obj_ending.c @@ -15,7 +15,7 @@ void ObjEnding_Init(Actor* thisx, PlayState* play); void ObjEnding_Update(Actor* thisx, PlayState* play); void ObjEnding_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Ending_InitVars = { +ActorProfile Obj_Ending_Profile = { /**/ ACTOR_OBJ_ENDING, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Entotu/z_obj_entotu.c b/src/overlays/actors/ovl_Obj_Entotu/z_obj_entotu.c index 55ef173c84..cc869683f6 100644 --- a/src/overlays/actors/ovl_Obj_Entotu/z_obj_entotu.c +++ b/src/overlays/actors/ovl_Obj_Entotu/z_obj_entotu.c @@ -16,7 +16,7 @@ void ObjEntotu_Destroy(Actor* thisx, PlayState* play); void ObjEntotu_Update(Actor* thisx, PlayState* play); void ObjEntotu_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Entotu_InitVars = { +ActorProfile Obj_Entotu_Profile = { /**/ ACTOR_OBJ_ENTOTU, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Etcetera/z_obj_etcetera.c b/src/overlays/actors/ovl_Obj_Etcetera/z_obj_etcetera.c index e7f4746bbd..e69587c442 100644 --- a/src/overlays/actors/ovl_Obj_Etcetera/z_obj_etcetera.c +++ b/src/overlays/actors/ovl_Obj_Etcetera/z_obj_etcetera.c @@ -20,7 +20,7 @@ void ObjEtcetera_Setup(ObjEtcetera* this, PlayState* play); void ObjEtcetera_DrawIdle(Actor* thisx, PlayState* play); void ObjEtcetera_DrawAnimated(Actor* thisx, PlayState* play); -ActorInit Obj_Etcetera_InitVars = { +ActorProfile Obj_Etcetera_Profile = { /**/ ACTOR_OBJ_ETCETERA, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Fireshield/z_obj_fireshield.c b/src/overlays/actors/ovl_Obj_Fireshield/z_obj_fireshield.c index e4a0286e54..9e5db4cc89 100644 --- a/src/overlays/actors/ovl_Obj_Fireshield/z_obj_fireshield.c +++ b/src/overlays/actors/ovl_Obj_Fireshield/z_obj_fireshield.c @@ -22,7 +22,7 @@ void func_80A4CC54(ObjFireshield* this); void func_80A4CCBC(ObjFireshield* this); void func_80A4CD28(ObjFireshield* this); -ActorInit Obj_Fireshield_InitVars = { +ActorProfile Obj_Fireshield_Profile = { /**/ ACTOR_OBJ_FIRESHIELD, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Flowerpot/z_obj_flowerpot.c b/src/overlays/actors/ovl_Obj_Flowerpot/z_obj_flowerpot.c index 027c41910e..50dde16845 100644 --- a/src/overlays/actors/ovl_Obj_Flowerpot/z_obj_flowerpot.c +++ b/src/overlays/actors/ovl_Obj_Flowerpot/z_obj_flowerpot.c @@ -30,7 +30,7 @@ s16 D_80A1DA3C; s16 D_80A1DA3E; s16 D_80A1DA40; -ActorInit Obj_Flowerpot_InitVars = { +ActorProfile Obj_Flowerpot_Profile = { /**/ ACTOR_OBJ_FLOWERPOT, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Funen/z_obj_funen.c b/src/overlays/actors/ovl_Obj_Funen/z_obj_funen.c index e3dbcdabb5..82ae8cacee 100644 --- a/src/overlays/actors/ovl_Obj_Funen/z_obj_funen.c +++ b/src/overlays/actors/ovl_Obj_Funen/z_obj_funen.c @@ -14,7 +14,7 @@ void ObjFunen_Init(Actor* thisx, PlayState* play); void ObjFunen_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Funen_InitVars = { +ActorProfile Obj_Funen_Profile = { /**/ ACTOR_OBJ_FUNEN, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Ghaka/z_obj_ghaka.c b/src/overlays/actors/ovl_Obj_Ghaka/z_obj_ghaka.c index da8e2afdfc..64a611710e 100644 --- a/src/overlays/actors/ovl_Obj_Ghaka/z_obj_ghaka.c +++ b/src/overlays/actors/ovl_Obj_Ghaka/z_obj_ghaka.c @@ -24,7 +24,7 @@ void func_80B3C39C(ObjGhaka* this, PlayState* play); void func_80B3C4E0(ObjGhaka* this, PlayState* play); void func_80B3C624(ObjGhaka* this, PlayState* play); -ActorInit Obj_Ghaka_InitVars = { +ActorProfile Obj_Ghaka_Profile = { /**/ ACTOR_OBJ_GHAKA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Grass/z_obj_grass.c b/src/overlays/actors/ovl_Obj_Grass/z_obj_grass.c index 8e8bae47b2..b49cacfeb5 100644 --- a/src/overlays/actors/ovl_Obj_Grass/z_obj_grass.c +++ b/src/overlays/actors/ovl_Obj_Grass/z_obj_grass.c @@ -26,7 +26,7 @@ f32 sNearestGrassElementsDistSq[OBJ_GRASS_NEAREST_ELEM_MAX]; #include "assets/overlays/ovl_Obj_Grass/ovl_Obj_Grass.c" -ActorInit Obj_Grass_InitVars = { +ActorProfile Obj_Grass_Profile = { /**/ ACTOR_OBJ_GRASS, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Grass_Carry/z_obj_grass_carry.c b/src/overlays/actors/ovl_Obj_Grass_Carry/z_obj_grass_carry.c index 9a01514f98..ef551d53b2 100644 --- a/src/overlays/actors/ovl_Obj_Grass_Carry/z_obj_grass_carry.c +++ b/src/overlays/actors/ovl_Obj_Grass_Carry/z_obj_grass_carry.c @@ -29,7 +29,7 @@ void ObjGrassCarry_SetupFall(ObjGrassCarry* this); void ObjGrassCarry_Fall(ObjGrassCarry* this, PlayState* play); void ObjGrassCarry_Draw(Actor* this, PlayState* play); -ActorInit Obj_Grass_Carry_InitVars = { +ActorProfile Obj_Grass_Carry_Profile = { /**/ ACTOR_OBJ_GRASS_CARRY, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Grass_Unit/z_obj_grass_unit.c b/src/overlays/actors/ovl_Obj_Grass_Unit/z_obj_grass_unit.c index 5934f1bbc0..e0136c1220 100644 --- a/src/overlays/actors/ovl_Obj_Grass_Unit/z_obj_grass_unit.c +++ b/src/overlays/actors/ovl_Obj_Grass_Unit/z_obj_grass_unit.c @@ -21,7 +21,7 @@ void ObjGrassUnit_Init(Actor* this, PlayState* play2); -ActorInit Obj_Grass_Unit_InitVars = { +ActorProfile Obj_Grass_Unit_Profile = { /**/ ACTOR_OBJ_GRASS_UNIT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hakaisi/z_obj_hakaisi.c b/src/overlays/actors/ovl_Obj_Hakaisi/z_obj_hakaisi.c index e389ffbc29..c6ab1a2a7f 100644 --- a/src/overlays/actors/ovl_Obj_Hakaisi/z_obj_hakaisi.c +++ b/src/overlays/actors/ovl_Obj_Hakaisi/z_obj_hakaisi.c @@ -37,7 +37,7 @@ void func_80B15330(ObjHakaisi* this, PlayState* play); void func_80B1544C(Actor* thisx, PlayState* play); void func_80B154A0(Actor* thisx, PlayState* play); -ActorInit Obj_Hakaisi_InitVars = { +ActorProfile Obj_Hakaisi_Profile = { /**/ ACTOR_OBJ_HAKAISI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hamishi/z_obj_hamishi.c b/src/overlays/actors/ovl_Obj_Hamishi/z_obj_hamishi.c index 43ded19157..2703856f09 100644 --- a/src/overlays/actors/ovl_Obj_Hamishi/z_obj_hamishi.c +++ b/src/overlays/actors/ovl_Obj_Hamishi/z_obj_hamishi.c @@ -16,7 +16,7 @@ void ObjHamishi_Destroy(Actor* thisx, PlayState* play2); void ObjHamishi_Update(Actor* thisx, PlayState* play); void ObjHamishi_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Hamishi_InitVars = { +ActorProfile Obj_Hamishi_Profile = { /**/ ACTOR_OBJ_HAMISHI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hana/z_obj_hana.c b/src/overlays/actors/ovl_Obj_Hana/z_obj_hana.c index 28909fa798..66b7b4e6b4 100644 --- a/src/overlays/actors/ovl_Obj_Hana/z_obj_hana.c +++ b/src/overlays/actors/ovl_Obj_Hana/z_obj_hana.c @@ -16,7 +16,7 @@ void ObjHana_Destroy(Actor* thisx, PlayState* play); void ObjHana_Update(Actor* thisx, PlayState* play); void ObjHana_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Hana_InitVars = { +ActorProfile Obj_Hana_Profile = { /**/ ACTOR_OBJ_HANA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hariko/z_obj_hariko.c b/src/overlays/actors/ovl_Obj_Hariko/z_obj_hariko.c index 411bc3325d..f5a1b43d8b 100644 --- a/src/overlays/actors/ovl_Obj_Hariko/z_obj_hariko.c +++ b/src/overlays/actors/ovl_Obj_Hariko/z_obj_hariko.c @@ -23,7 +23,7 @@ void ObjHariko_SetupBobHead(ObjHariko* this); void ObjHariko_BobHead(ObjHariko* this, PlayState* play); void ObjHariko_CheckForQuakes(ObjHariko* this); -ActorInit Obj_Hariko_InitVars = { +ActorProfile Obj_Hariko_Profile = { /**/ ACTOR_OBJ_HARIKO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hgdoor/z_obj_hgdoor.c b/src/overlays/actors/ovl_Obj_Hgdoor/z_obj_hgdoor.c index 07c71c7fd3..9ce00091cb 100644 --- a/src/overlays/actors/ovl_Obj_Hgdoor/z_obj_hgdoor.c +++ b/src/overlays/actors/ovl_Obj_Hgdoor/z_obj_hgdoor.c @@ -26,7 +26,7 @@ void ObjHgdoor_SetupStopCs(ObjHgdoor* this); void ObjHgdoor_StopCs(ObjHgdoor* this, PlayState* play); s32 ObjHgdoor_Rotate(ObjHgdoor* this, PlayState* play); -ActorInit Obj_Hgdoor_InitVars = { +ActorProfile Obj_Hgdoor_Profile = { /**/ ACTOR_OBJ_HGDOOR, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_HsStump/z_obj_hsstump.c b/src/overlays/actors/ovl_Obj_HsStump/z_obj_hsstump.c index cc47cbdfcd..e0d23f8043 100644 --- a/src/overlays/actors/ovl_Obj_HsStump/z_obj_hsstump.c +++ b/src/overlays/actors/ovl_Obj_HsStump/z_obj_hsstump.c @@ -21,7 +21,7 @@ void ObjHsStump_Idle(ObjHsStump* this, PlayState* play); void ObjHsStump_SetupAppear(ObjHsStump* this, PlayState* play); void ObjHsStump_Appear(ObjHsStump* this, PlayState* play); -ActorInit Obj_HsStump_InitVars = { +ActorProfile Obj_HsStump_Profile = { /**/ ACTOR_OBJ_HSSTUMP, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hsblock/z_obj_hsblock.c b/src/overlays/actors/ovl_Obj_Hsblock/z_obj_hsblock.c index fd3c6be0d3..67840346e0 100644 --- a/src/overlays/actors/ovl_Obj_Hsblock/z_obj_hsblock.c +++ b/src/overlays/actors/ovl_Obj_Hsblock/z_obj_hsblock.c @@ -24,7 +24,7 @@ void func_8093E05C(ObjHsblock* this); void func_8093E0E8(ObjHsblock* this); void func_8093E10C(ObjHsblock* this, PlayState* play); -ActorInit Obj_Hsblock_InitVars = { +ActorProfile Obj_Hsblock_Profile = { /**/ ACTOR_OBJ_HSBLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hugebombiwa/z_obj_hugebombiwa.c b/src/overlays/actors/ovl_Obj_Hugebombiwa/z_obj_hugebombiwa.c index 9ae9dfb977..6b67614e29 100644 --- a/src/overlays/actors/ovl_Obj_Hugebombiwa/z_obj_hugebombiwa.c +++ b/src/overlays/actors/ovl_Obj_Hugebombiwa/z_obj_hugebombiwa.c @@ -28,7 +28,7 @@ void func_80A55310(ObjHugebombiwa* this); void func_80A55564(ObjHugebombiwa* this, PlayState* play); void func_80A55B34(Actor* thisx, PlayState* play); -ActorInit Obj_Hugebombiwa_InitVars = { +ActorProfile Obj_Hugebombiwa_Profile = { /**/ ACTOR_OBJ_HUGEBOMBIWA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Hunsui/z_obj_hunsui.c b/src/overlays/actors/ovl_Obj_Hunsui/z_obj_hunsui.c index 417288d14f..f37f073416 100644 --- a/src/overlays/actors/ovl_Obj_Hunsui/z_obj_hunsui.c +++ b/src/overlays/actors/ovl_Obj_Hunsui/z_obj_hunsui.c @@ -46,7 +46,7 @@ ObjHansuiStruct D_80B9DC70[] = { { 3, 3 }, { 3, 5 }, { 3, 1 }, { 3, 6 }, { 3, 2 }, { 3, 4 }, { 3, 0 }, }; -ActorInit Obj_Hunsui_InitVars = { +ActorProfile Obj_Hunsui_Profile = { /**/ ACTOR_OBJ_HUNSUI, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Ice_Poly/z_obj_ice_poly.c b/src/overlays/actors/ovl_Obj_Ice_Poly/z_obj_ice_poly.c index 1dec78294b..8faefb60b3 100644 --- a/src/overlays/actors/ovl_Obj_Ice_Poly/z_obj_ice_poly.c +++ b/src/overlays/actors/ovl_Obj_Ice_Poly/z_obj_ice_poly.c @@ -22,7 +22,7 @@ void func_80931A38(ObjIcePoly* this, PlayState* play); void func_80931E58(ObjIcePoly* this, PlayState* play); void func_80931EEC(ObjIcePoly* this, PlayState* play); -ActorInit Obj_Ice_Poly_InitVars = { +ActorProfile Obj_Ice_Poly_Profile = { /**/ ACTOR_OBJ_ICE_POLY, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Iceblock/z_obj_iceblock.c b/src/overlays/actors/ovl_Obj_Iceblock/z_obj_iceblock.c index 19ff562597..6f7291c0f6 100644 --- a/src/overlays/actors/ovl_Obj_Iceblock/z_obj_iceblock.c +++ b/src/overlays/actors/ovl_Obj_Iceblock/z_obj_iceblock.c @@ -45,7 +45,7 @@ void func_80A26B64(ObjIceblock* this, PlayState* play); void func_80A26B74(ObjIceblock* this, PlayState* play); void func_80A26BF8(ObjIceblock* this, PlayState* play); -ActorInit Obj_Iceblock_InitVars = { +ActorProfile Obj_Iceblock_Profile = { /**/ ACTOR_OBJ_ICEBLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Jg_Gakki/z_obj_jg_gakki.c b/src/overlays/actors/ovl_Obj_Jg_Gakki/z_obj_jg_gakki.c index be77a6956f..aeefea40b3 100644 --- a/src/overlays/actors/ovl_Obj_Jg_Gakki/z_obj_jg_gakki.c +++ b/src/overlays/actors/ovl_Obj_Jg_Gakki/z_obj_jg_gakki.c @@ -16,7 +16,7 @@ void ObjJgGakki_Destroy(Actor* thisx, PlayState* play); void ObjJgGakki_Update(Actor* thisx, PlayState* play); void ObjJgGakki_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Jg_Gakki_InitVars = { +ActorProfile Obj_Jg_Gakki_Profile = { /**/ ACTOR_OBJ_JG_GAKKI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Jgame_Light/z_obj_jgame_light.c b/src/overlays/actors/ovl_Obj_Jgame_Light/z_obj_jgame_light.c index 7ded5ec383..a96ce303b1 100644 --- a/src/overlays/actors/ovl_Obj_Jgame_Light/z_obj_jgame_light.c +++ b/src/overlays/actors/ovl_Obj_Jgame_Light/z_obj_jgame_light.c @@ -27,7 +27,7 @@ void func_80C15474(ObjJgameLight* this, PlayState* play); void ObjJgameLight_UpdateCollision(ObjJgameLight* this, PlayState* play); void func_80C15718(ObjJgameLight* this, PlayState* play); -ActorInit Obj_Jgame_Light_InitVars = { +ActorProfile Obj_Jgame_Light_Profile = { /**/ ACTOR_OBJ_JGAME_LIGHT, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kendo_Kanban/z_obj_kendo_kanban.c b/src/overlays/actors/ovl_Obj_Kendo_Kanban/z_obj_kendo_kanban.c index 5cf7050916..3110e15854 100644 --- a/src/overlays/actors/ovl_Obj_Kendo_Kanban/z_obj_kendo_kanban.c +++ b/src/overlays/actors/ovl_Obj_Kendo_Kanban/z_obj_kendo_kanban.c @@ -44,7 +44,7 @@ void ObjKendoKanban_Settled(ObjKendoKanban* this, PlayState* play); void ObjKendoKanban_HandlePhysics(ObjKendoKanban* this, PlayState* play); s32 ObjKendoKanban_IsPlayerOnTop(ObjKendoKanban* this, PlayState* play); -ActorInit Obj_Kendo_Kanban_InitVars = { +ActorProfile Obj_Kendo_Kanban_Profile = { /**/ ACTOR_OBJ_KENDO_KANBAN, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kepn_Koya/z_obj_kepn_koya.c b/src/overlays/actors/ovl_Obj_Kepn_Koya/z_obj_kepn_koya.c index e2a1db184b..74bdc7a6c1 100644 --- a/src/overlays/actors/ovl_Obj_Kepn_Koya/z_obj_kepn_koya.c +++ b/src/overlays/actors/ovl_Obj_Kepn_Koya/z_obj_kepn_koya.c @@ -16,7 +16,7 @@ void ObjKepnKoya_Destroy(Actor* thisx, PlayState* play); void ObjKepnKoya_Update(Actor* thisx, PlayState* play); void ObjKepnKoya_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Kepn_Koya_InitVars = { +ActorProfile Obj_Kepn_Koya_Profile = { /**/ ACTOR_OBJ_KEPN_KOYA, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kibako/z_obj_kibako.c b/src/overlays/actors/ovl_Obj_Kibako/z_obj_kibako.c index 2d8ba59318..ba8f6d86eb 100644 --- a/src/overlays/actors/ovl_Obj_Kibako/z_obj_kibako.c +++ b/src/overlays/actors/ovl_Obj_Kibako/z_obj_kibako.c @@ -36,7 +36,7 @@ static s16 D_80927384 = 0; static s16 D_80927388 = 0; static s16 D_8092738C = 0; -ActorInit Obj_Kibako_InitVars = { +ActorProfile Obj_Kibako_Profile = { /**/ ACTOR_OBJ_KIBAKO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kibako2/z_obj_kibako2.c b/src/overlays/actors/ovl_Obj_Kibako2/z_obj_kibako2.c index ae5876511c..9c37c9bf1b 100644 --- a/src/overlays/actors/ovl_Obj_Kibako2/z_obj_kibako2.c +++ b/src/overlays/actors/ovl_Obj_Kibako2/z_obj_kibako2.c @@ -19,7 +19,7 @@ void ObjKibako2_Draw(Actor* thisx, PlayState* play); void ObjKibako2_Idle(ObjKibako2* this, PlayState* play); void ObjKibako2_Kill(ObjKibako2* this, PlayState* play); -ActorInit Obj_Kibako2_InitVars = { +ActorProfile Obj_Kibako2_Profile = { /**/ ACTOR_OBJ_KIBAKO2, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kinoko/z_obj_kinoko.c b/src/overlays/actors/ovl_Obj_Kinoko/z_obj_kinoko.c index 9003a88b00..ccf3608f07 100644 --- a/src/overlays/actors/ovl_Obj_Kinoko/z_obj_kinoko.c +++ b/src/overlays/actors/ovl_Obj_Kinoko/z_obj_kinoko.c @@ -16,7 +16,7 @@ void ObjKinoko_Destroy(Actor* thisx, PlayState* play); void ObjKinoko_Update(Actor* thisx, PlayState* play); void ObjKinoko_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Kinoko_InitVars = { +ActorProfile Obj_Kinoko_Profile = { /**/ ACTOR_OBJ_KINOKO, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Kzsaku/z_obj_kzsaku.c b/src/overlays/actors/ovl_Obj_Kzsaku/z_obj_kzsaku.c index d3bfbc7641..8cd68211eb 100644 --- a/src/overlays/actors/ovl_Obj_Kzsaku/z_obj_kzsaku.c +++ b/src/overlays/actors/ovl_Obj_Kzsaku/z_obj_kzsaku.c @@ -23,7 +23,7 @@ void ObjKzsaku_Idle(ObjKzsaku* this, PlayState* play); void ObjKzsaku_Rise(ObjKzsaku* this, PlayState* play); void func_80C08CB0(ObjKzsaku* this, PlayState* play); -ActorInit Obj_Kzsaku_InitVars = { +ActorProfile Obj_Kzsaku_Profile = { /**/ ACTOR_OBJ_KZSAKU, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Lift/z_obj_lift.c b/src/overlays/actors/ovl_Obj_Lift/z_obj_lift.c index 7f36400956..4eaa0b2e48 100644 --- a/src/overlays/actors/ovl_Obj_Lift/z_obj_lift.c +++ b/src/overlays/actors/ovl_Obj_Lift/z_obj_lift.c @@ -27,7 +27,7 @@ void func_8093DB70(ObjLift* this); void func_8093DB90(ObjLift* this, PlayState* play); void func_8093DC90(Actor* thisx, PlayState* play); -ActorInit Obj_Lift_InitVars = { +ActorProfile Obj_Lift_Profile = { /**/ ACTOR_OBJ_LIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Lightblock/z_obj_lightblock.c b/src/overlays/actors/ovl_Obj_Lightblock/z_obj_lightblock.c index 6f7da0e438..5dad67229c 100644 --- a/src/overlays/actors/ovl_Obj_Lightblock/z_obj_lightblock.c +++ b/src/overlays/actors/ovl_Obj_Lightblock/z_obj_lightblock.c @@ -23,7 +23,7 @@ void ObjLightblock_PlayCutscene(ObjLightblock* this, PlayState* play); void ObjLightblock_SetupFadeAway(ObjLightblock* this); void ObjLightblock_FadeAway(ObjLightblock* this, PlayState* play); -ActorInit Obj_Lightblock_InitVars = { +ActorProfile Obj_Lightblock_Profile = { /**/ ACTOR_OBJ_LIGHTBLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Lightswitch/z_obj_lightswitch.c b/src/overlays/actors/ovl_Obj_Lightswitch/z_obj_lightswitch.c index c0e31cbc6f..c84bb53f47 100644 --- a/src/overlays/actors/ovl_Obj_Lightswitch/z_obj_lightswitch.c +++ b/src/overlays/actors/ovl_Obj_Lightswitch/z_obj_lightswitch.c @@ -27,7 +27,7 @@ void ObjLightSwitch_SetupDisabled(ObjLightswitch* this); void ObjLightSwitch_Disabled(ObjLightswitch* this, PlayState* play); void ObjLightswitch_Idle(ObjLightswitch* this, PlayState* play); -ActorInit Obj_Lightswitch_InitVars = { +ActorProfile Obj_Lightswitch_Profile = { /**/ ACTOR_OBJ_LIGHTSWITCH, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Lupygamelift/z_obj_lupygamelift.c b/src/overlays/actors/ovl_Obj_Lupygamelift/z_obj_lupygamelift.c index 28b8252227..2c29aa1a03 100644 --- a/src/overlays/actors/ovl_Obj_Lupygamelift/z_obj_lupygamelift.c +++ b/src/overlays/actors/ovl_Obj_Lupygamelift/z_obj_lupygamelift.c @@ -21,7 +21,7 @@ void func_80AF04D8(ObjLupygamelift* this, PlayState* play); void func_80AF0514(ObjLupygamelift* this); void func_80AF0530(ObjLupygamelift* this, PlayState* play); -ActorInit Obj_Lupygamelift_InitVars = { +ActorProfile Obj_Lupygamelift_Profile = { /**/ ACTOR_OBJ_LUPYGAMELIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Makekinsuta/z_obj_makekinsuta.c b/src/overlays/actors/ovl_Obj_Makekinsuta/z_obj_makekinsuta.c index d3fb818ef3..67c417de18 100644 --- a/src/overlays/actors/ovl_Obj_Makekinsuta/z_obj_makekinsuta.c +++ b/src/overlays/actors/ovl_Obj_Makekinsuta/z_obj_makekinsuta.c @@ -17,7 +17,7 @@ void ObjMakekinsuta_Update(Actor* thisx, PlayState* play); void func_8099FB64(Actor* thisx, PlayState* play); void func_8099FD7C(Actor* thisx, PlayState* play); -ActorInit Obj_Makekinsuta_InitVars = { +ActorProfile Obj_Makekinsuta_Profile = { /**/ ACTOR_OBJ_MAKEKINSUTA, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Makeoshihiki/z_obj_makeoshihiki.c b/src/overlays/actors/ovl_Obj_Makeoshihiki/z_obj_makeoshihiki.c index 03755af58d..109bab27c2 100644 --- a/src/overlays/actors/ovl_Obj_Makeoshihiki/z_obj_makeoshihiki.c +++ b/src/overlays/actors/ovl_Obj_Makeoshihiki/z_obj_makeoshihiki.c @@ -13,7 +13,7 @@ void ObjMakeoshihiki_Init(Actor* thisx, PlayState* play); void ObjMakeoshihiki_Update(Actor* thisx, PlayState* play); -ActorInit Obj_Makeoshihiki_InitVars = { +ActorProfile Obj_Makeoshihiki_Profile = { /**/ ACTOR_OBJ_MAKEOSHIHIKI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Milk_Bin/z_obj_milk_bin.c b/src/overlays/actors/ovl_Obj_Milk_Bin/z_obj_milk_bin.c index f1114870eb..e7154dd260 100644 --- a/src/overlays/actors/ovl_Obj_Milk_Bin/z_obj_milk_bin.c +++ b/src/overlays/actors/ovl_Obj_Milk_Bin/z_obj_milk_bin.c @@ -16,7 +16,7 @@ void ObjMilkBin_Destroy(Actor* thisx, PlayState* play); void ObjMilkBin_Update(Actor* thisx, PlayState* play2); void ObjMilkBin_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Milk_Bin_InitVars = { +ActorProfile Obj_Milk_Bin_Profile = { /**/ ACTOR_OBJ_MILK_BIN, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Mine/z_obj_mine.c b/src/overlays/actors/ovl_Obj_Mine/z_obj_mine.c index 40e3a5aae6..8faa0b05c5 100644 --- a/src/overlays/actors/ovl_Obj_Mine/z_obj_mine.c +++ b/src/overlays/actors/ovl_Obj_Mine/z_obj_mine.c @@ -45,7 +45,7 @@ void ObjMine_DrawExplosion(Actor* thisx, PlayState* play); void ObjMine_Air_Draw(Actor* thisx, PlayState* play); void ObjMine_Water_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Mine_InitVars = { +ActorProfile Obj_Mine_Profile = { /**/ ACTOR_OBJ_MINE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Moon_Stone/z_obj_moon_stone.c b/src/overlays/actors/ovl_Obj_Moon_Stone/z_obj_moon_stone.c index b6aaf28158..bf50368865 100644 --- a/src/overlays/actors/ovl_Obj_Moon_Stone/z_obj_moon_stone.c +++ b/src/overlays/actors/ovl_Obj_Moon_Stone/z_obj_moon_stone.c @@ -25,7 +25,7 @@ void func_80C06768(ObjMoonStone* this, PlayState* play); void func_80C0685C(ObjMoonStone* this); void func_80C06870(ObjMoonStone* this, PlayState* play); -ActorInit Obj_Moon_Stone_InitVars = { +ActorProfile Obj_Moon_Stone_Profile = { /**/ ACTOR_OBJ_MOON_STONE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Mu_Pict/z_obj_mu_pict.c b/src/overlays/actors/ovl_Obj_Mu_Pict/z_obj_mu_pict.c index befefdb11a..fc1233fa4b 100644 --- a/src/overlays/actors/ovl_Obj_Mu_Pict/z_obj_mu_pict.c +++ b/src/overlays/actors/ovl_Obj_Mu_Pict/z_obj_mu_pict.c @@ -25,7 +25,7 @@ void func_80C06D90(ObjMuPict* this, PlayState* play); void func_80C06DC8(ObjMuPict* this, PlayState* play); void func_80C06E88(ObjMuPict* this, PlayState* play); -ActorInit Obj_Mu_Pict_InitVars = { +ActorProfile Obj_Mu_Pict_Profile = { /**/ ACTOR_OBJ_MU_PICT, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Mure/z_obj_mure.c b/src/overlays/actors/ovl_Obj_Mure/z_obj_mure.c index 77d5c15d15..3b56325b7f 100644 --- a/src/overlays/actors/ovl_Obj_Mure/z_obj_mure.c +++ b/src/overlays/actors/ovl_Obj_Mure/z_obj_mure.c @@ -24,7 +24,7 @@ void ObjMure_ActiveState(ObjMure* this, PlayState* play); void ObjMure_KillActors(ObjMure* this, PlayState* play); void ObjMure_CheckChildren(ObjMure* this, PlayState* play); -ActorInit Obj_Mure_InitVars = { +ActorProfile Obj_Mure_Profile = { /**/ ACTOR_OBJ_MURE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Mure2/z_obj_mure2.c b/src/overlays/actors/ovl_Obj_Mure2/z_obj_mure2.c index 17dc801b5e..b9bdd7d5c8 100644 --- a/src/overlays/actors/ovl_Obj_Mure2/z_obj_mure2.c +++ b/src/overlays/actors/ovl_Obj_Mure2/z_obj_mure2.c @@ -34,7 +34,7 @@ void ObjMure2_SetupWaitForPlayerInRange(ObjMure2* this); void ObjMure2_SetupWaitForPlayerOutOfRange(ObjMure2* this); void ObjMure2_GetChildParams(s16*, ObjMure2*); -ActorInit Obj_Mure2_InitVars = { +ActorProfile Obj_Mure2_Profile = { /**/ ACTOR_OBJ_MURE2, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Mure3/z_obj_mure3.c b/src/overlays/actors/ovl_Obj_Mure3/z_obj_mure3.c index 854206f90e..aca3a7a070 100644 --- a/src/overlays/actors/ovl_Obj_Mure3/z_obj_mure3.c +++ b/src/overlays/actors/ovl_Obj_Mure3/z_obj_mure3.c @@ -21,7 +21,7 @@ void func_8098F5E4(ObjMure3* this, PlayState* play); void func_8098F66C(ObjMure3* this); void func_8098F680(ObjMure3* this, PlayState* play); -ActorInit Obj_Mure3_InitVars = { +ActorProfile Obj_Mure3_Profile = { /**/ ACTOR_OBJ_MURE3, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Nozoki/z_obj_nozoki.c b/src/overlays/actors/ovl_Obj_Nozoki/z_obj_nozoki.c index a23ba8678f..180f738dd7 100644 --- a/src/overlays/actors/ovl_Obj_Nozoki/z_obj_nozoki.c +++ b/src/overlays/actors/ovl_Obj_Nozoki/z_obj_nozoki.c @@ -32,7 +32,7 @@ s32 D_80BA36B0; s32 D_80BA36B4; f32 D_80BA36B8; -ActorInit Obj_Nozoki_InitVars = { +ActorProfile Obj_Nozoki_Profile = { /**/ ACTOR_OBJ_NOZOKI, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Ocarinalift/z_obj_ocarinalift.c b/src/overlays/actors/ovl_Obj_Ocarinalift/z_obj_ocarinalift.c index de76057569..d9c2819b8a 100644 --- a/src/overlays/actors/ovl_Obj_Ocarinalift/z_obj_ocarinalift.c +++ b/src/overlays/actors/ovl_Obj_Ocarinalift/z_obj_ocarinalift.c @@ -31,7 +31,7 @@ void func_80AC9B5C(ObjOcarinalift* this, PlayState* play); void func_80AC9C20(ObjOcarinalift* this); void func_80AC9C48(ObjOcarinalift* this, PlayState* play); -ActorInit Obj_Ocarinalift_InitVars = { +ActorProfile Obj_Ocarinalift_Profile = { /**/ ACTOR_OBJ_OCARINALIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Oshihiki/z_obj_oshihiki.c b/src/overlays/actors/ovl_Obj_Oshihiki/z_obj_oshihiki.c index 313e613f2a..2fe6bcc5e7 100644 --- a/src/overlays/actors/ovl_Obj_Oshihiki/z_obj_oshihiki.c +++ b/src/overlays/actors/ovl_Obj_Oshihiki/z_obj_oshihiki.c @@ -25,7 +25,7 @@ void ObjOshihiki_Push(ObjOshihiki* this, PlayState* play); void ObjOshihiki_SetupFall(ObjOshihiki* this, PlayState* play); void ObjOshihiki_Fall(ObjOshihiki* this, PlayState* play); -ActorInit Obj_Oshihiki_InitVars = { +ActorProfile Obj_Oshihiki_Profile = { /**/ ACTOR_OBJ_OSHIHIKI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Purify/z_obj_purify.c b/src/overlays/actors/ovl_Obj_Purify/z_obj_purify.c index 9df32c7c51..a2a398c49a 100644 --- a/src/overlays/actors/ovl_Obj_Purify/z_obj_purify.c +++ b/src/overlays/actors/ovl_Obj_Purify/z_obj_purify.c @@ -41,7 +41,7 @@ typedef struct ObjPurifyInfo { /* 0x24 */ s32 isDekuCity; } ObjPurifyInfo; // size = 0x28 -ActorInit Obj_Purify_InitVars = { +ActorProfile Obj_Purify_Profile = { /**/ ACTOR_OBJ_PURIFY, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Pzlblock/z_obj_pzlblock.c b/src/overlays/actors/ovl_Obj_Pzlblock/z_obj_pzlblock.c index 1986611f12..cb506c56b7 100644 --- a/src/overlays/actors/ovl_Obj_Pzlblock/z_obj_pzlblock.c +++ b/src/overlays/actors/ovl_Obj_Pzlblock/z_obj_pzlblock.c @@ -25,7 +25,7 @@ void func_809A3D38(ObjPzlblock* this, PlayState* play); void func_809A3E58(Actor* thisx, PlayState* play); void func_809A3F0C(Actor* thisx, PlayState* play); -ActorInit Obj_Pzlblock_InitVars = { +ActorProfile Obj_Pzlblock_Profile = { /**/ ACTOR_OBJ_PZLBLOCK, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Raillift/z_obj_raillift.c b/src/overlays/actors/ovl_Obj_Raillift/z_obj_raillift.c index 68a8f5314b..d2be1a70b6 100644 --- a/src/overlays/actors/ovl_Obj_Raillift/z_obj_raillift.c +++ b/src/overlays/actors/ovl_Obj_Raillift/z_obj_raillift.c @@ -28,7 +28,7 @@ void ObjRaillift_Teleport(ObjRaillift* this, PlayState* play); void ObjRaillift_Wait(ObjRaillift* this, PlayState* play); void ObjRaillift_Move(ObjRaillift* this, PlayState* play); -ActorInit Obj_Raillift_InitVars = { +ActorProfile Obj_Raillift_Profile = { /**/ ACTOR_OBJ_RAILLIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Roomtimer/z_obj_roomtimer.c b/src/overlays/actors/ovl_Obj_Roomtimer/z_obj_roomtimer.c index 1a44699215..b1f7f88650 100644 --- a/src/overlays/actors/ovl_Obj_Roomtimer/z_obj_roomtimer.c +++ b/src/overlays/actors/ovl_Obj_Roomtimer/z_obj_roomtimer.c @@ -18,7 +18,7 @@ void func_80973CD8(ObjRoomtimer* this, PlayState* play); void func_80973D3C(ObjRoomtimer* this, PlayState* play); void func_80973DE0(ObjRoomtimer* this, PlayState* play); -ActorInit Obj_Roomtimer_InitVars = { +ActorProfile Obj_Roomtimer_Profile = { /**/ ACTOR_OBJ_ROOMTIMER, /**/ ACTORCAT_ENEMY, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Rotlift/z_obj_rotlift.c b/src/overlays/actors/ovl_Obj_Rotlift/z_obj_rotlift.c index 156a5d0e3b..2152dbd8b3 100644 --- a/src/overlays/actors/ovl_Obj_Rotlift/z_obj_rotlift.c +++ b/src/overlays/actors/ovl_Obj_Rotlift/z_obj_rotlift.c @@ -25,7 +25,7 @@ typedef struct ObjRotliftModelInfo { /* 0x8 */ CollisionHeader* colHeader; } ObjRotliftModelInfo; // size = 0xC -ActorInit Obj_Rotlift_InitVars = { +ActorProfile Obj_Rotlift_Profile = { /**/ ACTOR_OBJ_ROTLIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Shutter/z_obj_shutter.c b/src/overlays/actors/ovl_Obj_Shutter/z_obj_shutter.c index 3a91489fb3..a206c1924e 100644 --- a/src/overlays/actors/ovl_Obj_Shutter/z_obj_shutter.c +++ b/src/overlays/actors/ovl_Obj_Shutter/z_obj_shutter.c @@ -16,7 +16,7 @@ void ObjShutter_Destroy(Actor* thisx, PlayState* play); void ObjShutter_Update(Actor* thisx, PlayState* play2); void ObjShutter_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Shutter_InitVars = { +ActorProfile Obj_Shutter_Profile = { /**/ ACTOR_OBJ_SHUTTER, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Skateblock/z_obj_skateblock.c b/src/overlays/actors/ovl_Obj_Skateblock/z_obj_skateblock.c index 62be89c8b3..266aadf877 100644 --- a/src/overlays/actors/ovl_Obj_Skateblock/z_obj_skateblock.c +++ b/src/overlays/actors/ovl_Obj_Skateblock/z_obj_skateblock.c @@ -27,7 +27,7 @@ void func_80A2273C(ObjSkateblock* this, PlayState* play); void func_80A227A4(ObjSkateblock* this); void func_80A227C0(ObjSkateblock* this, PlayState* play); -ActorInit Obj_Skateblock_InitVars = { +ActorProfile Obj_Skateblock_Profile = { /**/ ACTOR_OBJ_SKATEBLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Smork/z_obj_smork.c b/src/overlays/actors/ovl_Obj_Smork/z_obj_smork.c index 9db27fcd6e..4dbe1b0277 100644 --- a/src/overlays/actors/ovl_Obj_Smork/z_obj_smork.c +++ b/src/overlays/actors/ovl_Obj_Smork/z_obj_smork.c @@ -16,7 +16,7 @@ void ObjSmork_Destroy(Actor* thisx, PlayState* play); void ObjSmork_Update(Actor* thisx, PlayState* play); void ObjSmork_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Smork_InitVars = { +ActorProfile Obj_Smork_Profile = { /**/ ACTOR_OBJ_SMORK, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Snowball/z_obj_snowball.c b/src/overlays/actors/ovl_Obj_Snowball/z_obj_snowball.c index 2f76fb73cd..d27fc33a7e 100644 --- a/src/overlays/actors/ovl_Obj_Snowball/z_obj_snowball.c +++ b/src/overlays/actors/ovl_Obj_Snowball/z_obj_snowball.c @@ -33,7 +33,7 @@ void func_80B04B48(ObjSnowball* this, PlayState* play); void func_80B04B60(ObjSnowball* this, PlayState* play); void func_80B04D34(Actor* thisx, PlayState* play); -ActorInit Obj_Snowball_InitVars = { +ActorProfile Obj_Snowball_Profile = { /**/ ACTOR_OBJ_SNOWBALL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Snowball2/z_obj_snowball2.c b/src/overlays/actors/ovl_Obj_Snowball2/z_obj_snowball2.c index 060439f13c..27f5656f3d 100644 --- a/src/overlays/actors/ovl_Obj_Snowball2/z_obj_snowball2.c +++ b/src/overlays/actors/ovl_Obj_Snowball2/z_obj_snowball2.c @@ -26,7 +26,7 @@ void func_80B3A13C(ObjSnowball2* this, PlayState* play); void func_80B3A498(ObjSnowball2* this); void func_80B3A500(ObjSnowball2* this, PlayState* play); -ActorInit Obj_Snowball2_InitVars = { +ActorProfile Obj_Snowball2_Profile = { /**/ ACTOR_OBJ_SNOWBALL2, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Sound/z_obj_sound.c b/src/overlays/actors/ovl_Obj_Sound/z_obj_sound.c index b49724204c..c164c896e0 100644 --- a/src/overlays/actors/ovl_Obj_Sound/z_obj_sound.c +++ b/src/overlays/actors/ovl_Obj_Sound/z_obj_sound.c @@ -15,7 +15,7 @@ void ObjSound_Destroy(Actor* thisx, PlayState* play); void ObjSound_Update(Actor* thisx, PlayState* play); void ObjSound_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Sound_InitVars = { +ActorProfile Obj_Sound_Profile = { /**/ ACTOR_OBJ_SOUND, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Spidertent/z_obj_spidertent.c b/src/overlays/actors/ovl_Obj_Spidertent/z_obj_spidertent.c index f48ab22d6f..e8d0533835 100644 --- a/src/overlays/actors/ovl_Obj_Spidertent/z_obj_spidertent.c +++ b/src/overlays/actors/ovl_Obj_Spidertent/z_obj_spidertent.c @@ -23,7 +23,7 @@ void func_80B30A4C(ObjSpidertent* this, PlayState* play); void func_80B30AD4(ObjSpidertent* this); void func_80B30AF8(ObjSpidertent* this, PlayState* play); -ActorInit Obj_Spidertent_InitVars = { +ActorProfile Obj_Spidertent_Profile = { /**/ ACTOR_OBJ_SPIDERTENT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Spinyroll/z_obj_spinyroll.c b/src/overlays/actors/ovl_Obj_Spinyroll/z_obj_spinyroll.c index d160682dff..c2b251d1ce 100644 --- a/src/overlays/actors/ovl_Obj_Spinyroll/z_obj_spinyroll.c +++ b/src/overlays/actors/ovl_Obj_Spinyroll/z_obj_spinyroll.c @@ -29,7 +29,7 @@ void func_80A1EC38(ObjSpinyroll* this, PlayState* play); void func_80A1ECC0(ObjSpinyroll* this); void func_80A1ECD4(ObjSpinyroll* this, PlayState* play); -ActorInit Obj_Spinyroll_InitVars = { +ActorProfile Obj_Spinyroll_Profile = { /**/ ACTOR_OBJ_SPINYROLL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Switch/z_obj_switch.c b/src/overlays/actors/ovl_Obj_Switch/z_obj_switch.c index 78ba24bc7f..9d8ba2f3d0 100644 --- a/src/overlays/actors/ovl_Obj_Switch/z_obj_switch.c +++ b/src/overlays/actors/ovl_Obj_Switch/z_obj_switch.c @@ -72,7 +72,7 @@ static TexturePtr sEyeSwitchTextures[][4] = { static s32 sTexturesDesegmented = false; -ActorInit Obj_Switch_InitVars = { +ActorProfile Obj_Switch_Profile = { /**/ ACTOR_OBJ_SWITCH, /**/ ACTORCAT_SWITCH, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Swprize/z_obj_swprize.c b/src/overlays/actors/ovl_Obj_Swprize/z_obj_swprize.c index 78c8d6568e..03a041f804 100644 --- a/src/overlays/actors/ovl_Obj_Swprize/z_obj_swprize.c +++ b/src/overlays/actors/ovl_Obj_Swprize/z_obj_swprize.c @@ -23,7 +23,7 @@ void func_80C25710(ObjSwprize* this); void func_80C2572C(ObjSwprize* this, PlayState* play); void ObjSwprize_SetupDoNothing(ObjSwprize* this); -ActorInit Obj_Swprize_InitVars = { +ActorProfile Obj_Swprize_Profile = { /**/ ACTOR_OBJ_SWPRIZE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Syokudai/z_obj_syokudai.c b/src/overlays/actors/ovl_Obj_Syokudai/z_obj_syokudai.c index 57eac3e34c..be95f537c7 100644 --- a/src/overlays/actors/ovl_Obj_Syokudai/z_obj_syokudai.c +++ b/src/overlays/actors/ovl_Obj_Syokudai/z_obj_syokudai.c @@ -18,7 +18,7 @@ void ObjSyokudai_Destroy(Actor* thisx, PlayState* play); void ObjSyokudai_Update(Actor* thisx, PlayState* play2); void ObjSyokudai_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Syokudai_InitVars = { +ActorProfile Obj_Syokudai_Profile = { /**/ ACTOR_OBJ_SYOKUDAI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Takaraya_Wall/z_obj_takaraya_wall.c b/src/overlays/actors/ovl_Obj_Takaraya_Wall/z_obj_takaraya_wall.c index 067790f1a7..c24191e5bd 100644 --- a/src/overlays/actors/ovl_Obj_Takaraya_Wall/z_obj_takaraya_wall.c +++ b/src/overlays/actors/ovl_Obj_Takaraya_Wall/z_obj_takaraya_wall.c @@ -38,7 +38,7 @@ void ObjTakarayaWall_Draw(Actor* thisx, PlayState* play); void ObjTakarayaWall_Manage(ObjTakarayaWall* this, PlayState* play); -ActorInit Obj_Takaraya_Wall_InitVars = { +ActorProfile Obj_Takaraya_Wall_Profile = { /**/ ACTOR_OBJ_TAKARAYA_WALL, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Taru/z_obj_taru.c b/src/overlays/actors/ovl_Obj_Taru/z_obj_taru.c index 515f50b47a..95d8f5c393 100644 --- a/src/overlays/actors/ovl_Obj_Taru/z_obj_taru.c +++ b/src/overlays/actors/ovl_Obj_Taru/z_obj_taru.c @@ -24,7 +24,7 @@ void func_80B9C07C(ObjTaru* this, PlayState* play); void func_80B9C174(ObjTaru* this, PlayState* play); void func_80B9C1A0(ObjTaru* this, PlayState* play); -ActorInit Obj_Taru_InitVars = { +ActorProfile Obj_Taru_Profile = { /**/ ACTOR_OBJ_TARU, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Toge/z_obj_toge.c b/src/overlays/actors/ovl_Obj_Toge/z_obj_toge.c index f7b511b70d..9f2dd0d48f 100644 --- a/src/overlays/actors/ovl_Obj_Toge/z_obj_toge.c +++ b/src/overlays/actors/ovl_Obj_Toge/z_obj_toge.c @@ -23,7 +23,7 @@ void func_809A481C(ObjToge* this, PlayState* play); void func_809A488C(ObjToge* this); void func_809A48AC(ObjToge* this, PlayState* play); -ActorInit Obj_Toge_InitVars = { +ActorProfile Obj_Toge_Profile = { /**/ ACTOR_OBJ_TOGE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tokei_Step/z_obj_tokei_step.c b/src/overlays/actors/ovl_Obj_Tokei_Step/z_obj_tokei_step.c index b4eda16947..e3635d03ea 100644 --- a/src/overlays/actors/ovl_Obj_Tokei_Step/z_obj_tokei_step.c +++ b/src/overlays/actors/ovl_Obj_Tokei_Step/z_obj_tokei_step.c @@ -28,7 +28,7 @@ void ObjTokeiStep_SetupDoNothingOpen(ObjTokeiStep* this); void ObjTokeiStep_DoNothingOpen(ObjTokeiStep* this, PlayState* play); void ObjTokeiStep_DrawOpen(Actor* thisx, PlayState* play); -ActorInit Obj_Tokei_Step_InitVars = { +ActorProfile Obj_Tokei_Step_Profile = { /**/ ACTOR_OBJ_TOKEI_STEP, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tokei_Tobira/z_obj_tokei_tobira.c b/src/overlays/actors/ovl_Obj_Tokei_Tobira/z_obj_tokei_tobira.c index 0a8f3171d8..9104c0bb8e 100644 --- a/src/overlays/actors/ovl_Obj_Tokei_Tobira/z_obj_tokei_tobira.c +++ b/src/overlays/actors/ovl_Obj_Tokei_Tobira/z_obj_tokei_tobira.c @@ -17,7 +17,7 @@ void ObjTokeiTobira_Update(Actor* thisx, PlayState* play); void ObjTokeiTobira_Draw(Actor* thisx, PlayState* play); void ObjTokeiTobira_StartCutscene(ObjTokeiTobira* this); -ActorInit Obj_Tokei_Tobira_InitVars = { +ActorProfile Obj_Tokei_Tobira_Profile = { /**/ ACTOR_OBJ_TOKEI_TOBIRA, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tokei_Turret/z_obj_tokei_turret.c b/src/overlays/actors/ovl_Obj_Tokei_Turret/z_obj_tokei_turret.c index 91cc14708c..94d8ea2507 100644 --- a/src/overlays/actors/ovl_Obj_Tokei_Turret/z_obj_tokei_turret.c +++ b/src/overlays/actors/ovl_Obj_Tokei_Turret/z_obj_tokei_turret.c @@ -16,7 +16,7 @@ void ObjTokeiTurret_Destroy(Actor* thisx, PlayState* play); void ObjTokeiTurret_Update(Actor* thisx, PlayState* play); void ObjTokeiTurret_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Tokei_Turret_InitVars = { +ActorProfile Obj_Tokei_Turret_Profile = { /**/ ACTOR_OBJ_TOKEI_TURRET, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tokeidai/z_obj_tokeidai.c b/src/overlays/actors/ovl_Obj_Tokeidai/z_obj_tokeidai.c index 7f1be93d7a..dc2b53a41a 100644 --- a/src/overlays/actors/ovl_Obj_Tokeidai/z_obj_tokeidai.c +++ b/src/overlays/actors/ovl_Obj_Tokeidai/z_obj_tokeidai.c @@ -62,7 +62,7 @@ void ObjTokeidai_Clock_Draw(Actor* thisx, PlayState* play); void ObjTokeidai_Counterweight_Draw(Actor* thisx, PlayState* play); void ObjTokeidai_ExteriorGear_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Tokeidai_InitVars = { +ActorProfile Obj_Tokeidai_Profile = { /**/ ACTOR_OBJ_TOKEIDAI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Toudai/z_obj_toudai.c b/src/overlays/actors/ovl_Obj_Toudai/z_obj_toudai.c index 24a746f862..9accc24987 100644 --- a/src/overlays/actors/ovl_Obj_Toudai/z_obj_toudai.c +++ b/src/overlays/actors/ovl_Obj_Toudai/z_obj_toudai.c @@ -16,7 +16,7 @@ void ObjToudai_Destroy(Actor* thisx, PlayState* play); void ObjToudai_Update(Actor* thisx, PlayState* play); void ObjToudai_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Toudai_InitVars = { +ActorProfile Obj_Toudai_Profile = { /**/ ACTOR_OBJ_TOUDAI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tree/z_obj_tree.c b/src/overlays/actors/ovl_Obj_Tree/z_obj_tree.c index 0fb6bd1979..2b681fa2b5 100644 --- a/src/overlays/actors/ovl_Obj_Tree/z_obj_tree.c +++ b/src/overlays/actors/ovl_Obj_Tree/z_obj_tree.c @@ -20,7 +20,7 @@ void ObjTree_DoNothing(ObjTree* this, PlayState* play); void ObjTree_SetupDoNothing(ObjTree* this); void ObjTree_Sway(ObjTree* this, PlayState* play); -ActorInit Obj_Tree_InitVars = { +ActorProfile Obj_Tree_Profile = { /**/ ACTOR_OBJ_TREE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Tsubo/z_obj_tsubo.c b/src/overlays/actors/ovl_Obj_Tsubo/z_obj_tsubo.c index 9f809e4786..26b1f3e6c4 100644 --- a/src/overlays/actors/ovl_Obj_Tsubo/z_obj_tsubo.c +++ b/src/overlays/actors/ovl_Obj_Tsubo/z_obj_tsubo.c @@ -41,7 +41,7 @@ s16 D_80929504 = 0; s16 D_80929508 = 0; s16 D_8092950C = 0; -ActorInit Obj_Tsubo_InitVars = { +ActorProfile Obj_Tsubo_Profile = { /**/ ACTOR_OBJ_TSUBO, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Um/z_obj_um.c b/src/overlays/actors/ovl_Obj_Um/z_obj_um.c index 36c2109767..45d0cd91d1 100644 --- a/src/overlays/actors/ovl_Obj_Um/z_obj_um.c +++ b/src/overlays/actors/ovl_Obj_Um/z_obj_um.c @@ -63,7 +63,7 @@ void ObjUm_DefaultAnim(ObjUm* this, PlayState* play); void ObjUm_ChangeAnim(ObjUm* this, PlayState* play, ObjUmAnimation animIndex); void ObjUm_SetupAction(ObjUm* this, ObjUmActionFunc actionFunc); -ActorInit Obj_Um_InitVars = { +ActorProfile Obj_Um_Profile = { /**/ ACTOR_OBJ_UM, /**/ ACTORCAT_NPC, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Usiyane/z_obj_usiyane.c b/src/overlays/actors/ovl_Obj_Usiyane/z_obj_usiyane.c index f4f2f4ab3c..57a68501c5 100644 --- a/src/overlays/actors/ovl_Obj_Usiyane/z_obj_usiyane.c +++ b/src/overlays/actors/ovl_Obj_Usiyane/z_obj_usiyane.c @@ -16,7 +16,7 @@ void ObjUsiyane_Destroy(Actor* thisx, PlayState* play); void ObjUsiyane_Update(Actor* thisx, PlayState* play); void ObjUsiyane_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Usiyane_InitVars = { +ActorProfile Obj_Usiyane_Profile = { /**/ ACTOR_OBJ_USIYANE, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Visiblock/z_obj_visiblock.c b/src/overlays/actors/ovl_Obj_Visiblock/z_obj_visiblock.c index 29b1935978..1400ed6028 100644 --- a/src/overlays/actors/ovl_Obj_Visiblock/z_obj_visiblock.c +++ b/src/overlays/actors/ovl_Obj_Visiblock/z_obj_visiblock.c @@ -15,7 +15,7 @@ void ObjVisiblock_Init(Actor* thisx, PlayState* play); void ObjVisiblock_Destroy(Actor* thisx, PlayState* play); void ObjVisiblock_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Visiblock_InitVars = { +ActorProfile Obj_Visiblock_Profile = { /**/ ACTOR_OBJ_VISIBLOCK, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Vspinyroll/z_obj_vspinyroll.c b/src/overlays/actors/ovl_Obj_Vspinyroll/z_obj_vspinyroll.c index 7a5c906320..f6b9af7865 100644 --- a/src/overlays/actors/ovl_Obj_Vspinyroll/z_obj_vspinyroll.c +++ b/src/overlays/actors/ovl_Obj_Vspinyroll/z_obj_vspinyroll.c @@ -28,7 +28,7 @@ void func_80A3D0E8(ObjVspinyroll* this); void func_80A3D0FC(ObjVspinyroll* this, PlayState* play); void func_80A3D2C0(Actor* thisx, PlayState* play); -ActorInit Obj_Vspinyroll_InitVars = { +ActorProfile Obj_Vspinyroll_Profile = { /**/ ACTOR_OBJ_VSPINYROLL, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Warpstone/z_obj_warpstone.c b/src/overlays/actors/ovl_Obj_Warpstone/z_obj_warpstone.c index b8bf1b523c..307041c3f3 100644 --- a/src/overlays/actors/ovl_Obj_Warpstone/z_obj_warpstone.c +++ b/src/overlays/actors/ovl_Obj_Warpstone/z_obj_warpstone.c @@ -22,7 +22,7 @@ s32 ObjWarpstone_BeginOpeningCutscene(ObjWarpstone* this, PlayState* play); s32 ObjWarpstone_PlayOpeningCutscene(ObjWarpstone* this, PlayState* play); s32 ObjWarpstone_OpenedIdle(ObjWarpstone* this, PlayState* play); -ActorInit Obj_Warpstone_InitVars = { +ActorProfile Obj_Warpstone_Profile = { /**/ ACTOR_OBJ_WARPSTONE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Wind/z_obj_wind.c b/src/overlays/actors/ovl_Obj_Wind/z_obj_wind.c index e61bf7a039..5aaa902880 100644 --- a/src/overlays/actors/ovl_Obj_Wind/z_obj_wind.c +++ b/src/overlays/actors/ovl_Obj_Wind/z_obj_wind.c @@ -16,7 +16,7 @@ void ObjWind_Destroy(Actor* thisx, PlayState* play); void ObjWind_Update(Actor* thisx, PlayState* play); void ObjWind_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Wind_InitVars = { +ActorProfile Obj_Wind_Profile = { /**/ ACTOR_OBJ_WIND, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Wturn/z_obj_wturn.c b/src/overlays/actors/ovl_Obj_Wturn/z_obj_wturn.c index 1ab5c274f5..02848fbcf3 100644 --- a/src/overlays/actors/ovl_Obj_Wturn/z_obj_wturn.c +++ b/src/overlays/actors/ovl_Obj_Wturn/z_obj_wturn.c @@ -22,7 +22,7 @@ void func_808A7BA0(ObjWturn* this, PlayState* play); void func_808A7C04(ObjWturn* this, PlayState* play); void func_808A7C78(ObjWturn* this, PlayState* play); -ActorInit Obj_Wturn_InitVars = { +ActorProfile Obj_Wturn_Profile = { /**/ ACTOR_OBJ_WTURN, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Y2lift/z_obj_y2lift.c b/src/overlays/actors/ovl_Obj_Y2lift/z_obj_y2lift.c index 764b821b85..38eb39b3d3 100644 --- a/src/overlays/actors/ovl_Obj_Y2lift/z_obj_y2lift.c +++ b/src/overlays/actors/ovl_Obj_Y2lift/z_obj_y2lift.c @@ -16,7 +16,7 @@ void ObjY2lift_Destroy(Actor* thisx, PlayState* play); void ObjY2lift_Update(Actor* thisx, PlayState* play); void ObjY2lift_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Y2lift_InitVars = { +ActorProfile Obj_Y2lift_Profile = { /**/ ACTOR_OBJ_Y2LIFT, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Y2shutter/z_obj_y2shutter.c b/src/overlays/actors/ovl_Obj_Y2shutter/z_obj_y2shutter.c index f3a3787497..6e82ad477e 100644 --- a/src/overlays/actors/ovl_Obj_Y2shutter/z_obj_y2shutter.c +++ b/src/overlays/actors/ovl_Obj_Y2shutter/z_obj_y2shutter.c @@ -29,7 +29,7 @@ typedef struct ShutterInfo { /* 0x1E */ u8 openTimer; } ShutterInfo; // size = 0x20 -ActorInit Obj_Y2shutter_InitVars = { +ActorProfile Obj_Y2shutter_Profile = { /**/ ACTOR_OBJ_Y2SHUTTER, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Yado/z_obj_yado.c b/src/overlays/actors/ovl_Obj_Yado/z_obj_yado.c index d289c13c49..c382bae272 100644 --- a/src/overlays/actors/ovl_Obj_Yado/z_obj_yado.c +++ b/src/overlays/actors/ovl_Obj_Yado/z_obj_yado.c @@ -16,7 +16,7 @@ void ObjYado_Destroy(Actor* thisx, PlayState* play); void ObjYado_Update(Actor* thisx, PlayState* play); void ObjYado_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Yado_InitVars = { +ActorProfile Obj_Yado_Profile = { /**/ ACTOR_OBJ_YADO, /**/ ACTORCAT_BG, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Obj_Yasi/z_obj_yasi.c b/src/overlays/actors/ovl_Obj_Yasi/z_obj_yasi.c index 84c8a54ff9..edfa304e5e 100644 --- a/src/overlays/actors/ovl_Obj_Yasi/z_obj_yasi.c +++ b/src/overlays/actors/ovl_Obj_Yasi/z_obj_yasi.c @@ -18,7 +18,7 @@ void ObjYasi_Destroy(Actor* thisx, PlayState* play); void ObjYasi_Update(Actor* thisx, PlayState* play); void ObjYasi_Draw(Actor* thisx, PlayState* play); -ActorInit Obj_Yasi_InitVars = { +ActorProfile Obj_Yasi_Profile = { /**/ ACTOR_OBJ_YASI, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Object_Kankyo/z_object_kankyo.c b/src/overlays/actors/ovl_Object_Kankyo/z_object_kankyo.c index 208bc79447..1432eb3679 100644 --- a/src/overlays/actors/ovl_Object_Kankyo/z_object_kankyo.c +++ b/src/overlays/actors/ovl_Object_Kankyo/z_object_kankyo.c @@ -27,7 +27,7 @@ void func_808DDE9C(Actor* thisx, PlayState* play2); static f32 D_808DE5B0; -ActorInit Object_Kankyo_InitVars = { +ActorProfile Object_Kankyo_Profile = { /**/ ACTOR_OBJECT_KANKYO, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Spot/z_oceff_spot.c b/src/overlays/actors/ovl_Oceff_Spot/z_oceff_spot.c index e3944c12fb..d36f4d351d 100644 --- a/src/overlays/actors/ovl_Oceff_Spot/z_oceff_spot.c +++ b/src/overlays/actors/ovl_Oceff_Spot/z_oceff_spot.c @@ -21,7 +21,7 @@ void OceffSpot_End(OceffSpot* this, PlayState* play); void OceffSpot_SetupAction(OceffSpot* this, OceffSpotActionFunc actionFunc); -ActorInit Oceff_Spot_InitVars = { +ActorProfile Oceff_Spot_Profile = { /**/ ACTOR_OCEFF_SPOT, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Storm/z_oceff_storm.c b/src/overlays/actors/ovl_Oceff_Storm/z_oceff_storm.c index d72980ec27..b3997454e5 100644 --- a/src/overlays/actors/ovl_Oceff_Storm/z_oceff_storm.c +++ b/src/overlays/actors/ovl_Oceff_Storm/z_oceff_storm.c @@ -19,7 +19,7 @@ void OceffStorm_DefaultAction(OceffStorm* this, PlayState* play); void func_80981B48(OceffStorm* this, PlayState* play); void OceffStorm_Draw2(Actor* thisx, PlayState* play); -ActorInit Oceff_Storm_InitVars = { +ActorProfile Oceff_Storm_Profile = { /**/ ACTOR_OCEFF_STORM, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe/z_oceff_wipe.c b/src/overlays/actors/ovl_Oceff_Wipe/z_oceff_wipe.c index b35c8b6320..05140d631c 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe/z_oceff_wipe.c +++ b/src/overlays/actors/ovl_Oceff_Wipe/z_oceff_wipe.c @@ -15,7 +15,7 @@ void OceffWipe_Destroy(Actor* thisx, PlayState* play); void OceffWipe_Update(Actor* thisx, PlayState* play); void OceffWipe_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe_InitVars = { +ActorProfile Oceff_Wipe_Profile = { /**/ ACTOR_OCEFF_WIPE, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe2/z_oceff_wipe2.c b/src/overlays/actors/ovl_Oceff_Wipe2/z_oceff_wipe2.c index 11b33bd41f..cf4df48502 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe2/z_oceff_wipe2.c +++ b/src/overlays/actors/ovl_Oceff_Wipe2/z_oceff_wipe2.c @@ -15,7 +15,7 @@ void OceffWipe2_Destroy(Actor* thisx, PlayState* play); void OceffWipe2_Update(Actor* thisx, PlayState* play); void OceffWipe2_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe2_InitVars = { +ActorProfile Oceff_Wipe2_Profile = { /**/ ACTOR_OCEFF_WIPE2, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c b/src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c index 4a93ede09c..2e86031432 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c +++ b/src/overlays/actors/ovl_Oceff_Wipe3/z_oceff_wipe3.c @@ -16,7 +16,7 @@ void OceffWipe3_Destroy(Actor* thisx, PlayState* play); void OceffWipe3_Update(Actor* thisx, PlayState* play); void OceffWipe3_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe3_InitVars = { +ActorProfile Oceff_Wipe3_Profile = { /**/ ACTOR_OCEFF_WIPE3, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe4/z_oceff_wipe4.c b/src/overlays/actors/ovl_Oceff_Wipe4/z_oceff_wipe4.c index 5d142c2299..e421afac91 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe4/z_oceff_wipe4.c +++ b/src/overlays/actors/ovl_Oceff_Wipe4/z_oceff_wipe4.c @@ -15,7 +15,7 @@ void OceffWipe4_Destroy(Actor* thisx, PlayState* play); void OceffWipe4_Update(Actor* thisx, PlayState* play); void OceffWipe4_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe4_InitVars = { +ActorProfile Oceff_Wipe4_Profile = { /**/ ACTOR_OCEFF_WIPE4, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe5/z_oceff_wipe5.c b/src/overlays/actors/ovl_Oceff_Wipe5/z_oceff_wipe5.c index 068a7d8f94..5e3f87e30f 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe5/z_oceff_wipe5.c +++ b/src/overlays/actors/ovl_Oceff_Wipe5/z_oceff_wipe5.c @@ -15,7 +15,7 @@ void OceffWipe5_Destroy(Actor* thisx, PlayState* play); void OceffWipe5_Update(Actor* thisx, PlayState* play); void OceffWipe5_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe5_InitVars = { +ActorProfile Oceff_Wipe5_Profile = { /**/ ACTOR_OCEFF_WIPE5, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe6/z_oceff_wipe6.c b/src/overlays/actors/ovl_Oceff_Wipe6/z_oceff_wipe6.c index 1d42dbc448..9c00f4be0e 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe6/z_oceff_wipe6.c +++ b/src/overlays/actors/ovl_Oceff_Wipe6/z_oceff_wipe6.c @@ -15,7 +15,7 @@ void OceffWipe6_Destroy(Actor* thisx, PlayState* play); void OceffWipe6_Update(Actor* thisx, PlayState* play); void OceffWipe6_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe6_InitVars = { +ActorProfile Oceff_Wipe6_Profile = { /**/ ACTOR_OCEFF_WIPE6, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Oceff_Wipe7/z_oceff_wipe7.c b/src/overlays/actors/ovl_Oceff_Wipe7/z_oceff_wipe7.c index 0af01be10b..946f8ccf93 100644 --- a/src/overlays/actors/ovl_Oceff_Wipe7/z_oceff_wipe7.c +++ b/src/overlays/actors/ovl_Oceff_Wipe7/z_oceff_wipe7.c @@ -15,7 +15,7 @@ void OceffWipe7_Destroy(Actor* thisx, PlayState* play); void OceffWipe7_Update(Actor* thisx, PlayState* play); void OceffWipe7_Draw(Actor* thisx, PlayState* play); -ActorInit Oceff_Wipe7_InitVars = { +ActorProfile Oceff_Wipe7_Profile = { /**/ ACTOR_OCEFF_WIPE7, /**/ ACTORCAT_ITEMACTION, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_Shot_Sun/z_shot_sun.c b/src/overlays/actors/ovl_Shot_Sun/z_shot_sun.c index 29bb8662ae..f6f1afe7c1 100644 --- a/src/overlays/actors/ovl_Shot_Sun/z_shot_sun.c +++ b/src/overlays/actors/ovl_Shot_Sun/z_shot_sun.c @@ -19,7 +19,7 @@ void ShotSun_Update(Actor* thisx, PlayState* play); void ShotSun_UpdateForOcarina(ShotSun* this, PlayState* play); void ShotSun_UpdateHyliaSun(ShotSun* this, PlayState* play); -ActorInit Shot_Sun_InitVars = { +ActorProfile Shot_Sun_Profile = { /**/ ACTOR_SHOT_SUN, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_TG_Sw/z_tg_sw.c b/src/overlays/actors/ovl_TG_Sw/z_tg_sw.c index 01a52e8131..971a011ed5 100644 --- a/src/overlays/actors/ovl_TG_Sw/z_tg_sw.c +++ b/src/overlays/actors/ovl_TG_Sw/z_tg_sw.c @@ -21,7 +21,7 @@ void TGSw_Draw(Actor* thisx, PlayState* play); void TGSw_Die(struct TGSw* this, PlayState* play); -ActorInit TG_Sw_InitVars = { +ActorProfile TG_Sw_Profile = { /**/ ACTOR_TG_SW, /**/ ACTORCAT_PROP, /**/ FLAGS, diff --git a/src/overlays/actors/ovl_player_actor/z_player.c b/src/overlays/actors/ovl_player_actor/z_player.c index 9622b93661..cc47c7c6f4 100644 --- a/src/overlays/actors/ovl_player_actor/z_player.c +++ b/src/overlays/actors/ovl_player_actor/z_player.c @@ -10713,7 +10713,7 @@ void Player_Init(Actor* thisx, PlayState* play) { play->unk_18794 = func_8085B854; play->setPlayerTalkAnim = func_8085B930; - gActorOverlayTable[ACTOR_PLAYER].initInfo->objectId = GAMEPLAY_KEEP; + gActorOverlayTable[ACTOR_PLAYER].profile->objectId = GAMEPLAY_KEEP; this->actor.room = -1; this->csId = CS_ID_NONE; diff --git a/src/overlays/effects/ovl_Effect_En_Ice_Block/z_eff_en_ice_block.c b/src/overlays/effects/ovl_Effect_En_Ice_Block/z_eff_en_ice_block.c index 03764cc6ea..48d1918448 100644 --- a/src/overlays/effects/ovl_Effect_En_Ice_Block/z_eff_en_ice_block.c +++ b/src/overlays/effects/ovl_Effect_En_Ice_Block/z_eff_en_ice_block.c @@ -14,7 +14,7 @@ u32 EffectEnIceBlock_Init(PlayState* play, u32 index, EffectSs* this, void* init void EffectEnIceBlock_Update(PlayState* play, u32 index, EffectSs* this); void EffectEnIceBlock_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_En_Ice_Block_InitVars = { +EffectSsProfile Effect_En_Ice_Block_Profile = { EFFECT_EN_ICE_BLOCK, EffectEnIceBlock_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Blast/z_eff_ss_blast.c b/src/overlays/effects/ovl_Effect_Ss_Blast/z_eff_ss_blast.c index bd976d9511..d5cc807c63 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Blast/z_eff_ss_blast.c +++ b/src/overlays/effects/ovl_Effect_Ss_Blast/z_eff_ss_blast.c @@ -26,7 +26,7 @@ u32 EffectSsBlast_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsBlast_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsBlast_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Blast_InitVars = { +EffectSsProfile Effect_Ss_Blast_Profile = { EFFECT_SS_BLAST, EffectSsBlast_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Bomb2/z_eff_ss_bomb2.c b/src/overlays/effects/ovl_Effect_Ss_Bomb2/z_eff_ss_bomb2.c index 5c65001c2a..920f8507a8 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Bomb2/z_eff_ss_bomb2.c +++ b/src/overlays/effects/ovl_Effect_Ss_Bomb2/z_eff_ss_bomb2.c @@ -26,7 +26,7 @@ void EffectSsBomb2_DrawFade(PlayState* play, u32 index, EffectSs* this); void EffectSsBomb2_DrawLayered(PlayState* play, u32 index, EffectSs* this); void EffectSsBomb2_Update(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Bomb2_InitVars = { +EffectSsProfile Effect_Ss_Bomb2_Profile = { EFFECT_SS_BOMB2, EffectSsBomb2_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Bubble/z_eff_ss_bubble.c b/src/overlays/effects/ovl_Effect_Ss_Bubble/z_eff_ss_bubble.c index c544c528ae..1f54f7814f 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Bubble/z_eff_ss_bubble.c +++ b/src/overlays/effects/ovl_Effect_Ss_Bubble/z_eff_ss_bubble.c @@ -17,7 +17,7 @@ u32 EffectSsBubble_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsBubble_Update(PlayState* play2, u32 index, EffectSs* this); void EffectSsBubble_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Bubble_InitVars = { +EffectSsProfile Effect_Ss_Bubble_Profile = { EFFECT_SS_BUBBLE, EffectSsBubble_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_D_Fire/z_eff_ss_d_fire.c b/src/overlays/effects/ovl_Effect_Ss_D_Fire/z_eff_ss_d_fire.c index 8ad5e6dc3f..97e679ef70 100644 --- a/src/overlays/effects/ovl_Effect_Ss_D_Fire/z_eff_ss_d_fire.c +++ b/src/overlays/effects/ovl_Effect_Ss_D_Fire/z_eff_ss_d_fire.c @@ -21,7 +21,7 @@ u32 EffectSsDFire_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsDFire_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsDFire_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_D_Fire_InitVars = { +EffectSsProfile Effect_Ss_D_Fire_Profile = { EFFECT_SS_D_FIRE, EffectSsDFire_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Dead_Db/z_eff_ss_dead_db.c b/src/overlays/effects/ovl_Effect_Ss_Dead_Db/z_eff_ss_dead_db.c index bfa238d152..c269829e69 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Dead_Db/z_eff_ss_dead_db.c +++ b/src/overlays/effects/ovl_Effect_Ss_Dead_Db/z_eff_ss_dead_db.c @@ -25,7 +25,7 @@ u32 EffectSsDeadDb_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsDeadDb_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsDeadDb_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Dead_Db_InitVars = { +EffectSsProfile Effect_Ss_Dead_Db_Profile = { EFFECT_SS_DEAD_DB, EffectSsDeadDb_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Dead_Dd/z_eff_ss_dead_dd.c b/src/overlays/effects/ovl_Effect_Ss_Dead_Dd/z_eff_ss_dead_dd.c index 10f6a9ad01..25bd094d16 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Dead_Dd/z_eff_ss_dead_dd.c +++ b/src/overlays/effects/ovl_Effect_Ss_Dead_Dd/z_eff_ss_dead_dd.c @@ -25,7 +25,7 @@ u32 EffectSsDeadDd_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsDeadDd_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsDeadDd_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Dead_Dd_InitVars = { +EffectSsProfile Effect_Ss_Dead_Dd_Profile = { EFFECT_SS_DEAD_DD, EffectSsDeadDd_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Dead_Ds/z_eff_ss_dead_ds.c b/src/overlays/effects/ovl_Effect_Ss_Dead_Ds/z_eff_ss_dead_ds.c index 5504cc51d7..74f1fb4089 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Dead_Ds/z_eff_ss_dead_ds.c +++ b/src/overlays/effects/ovl_Effect_Ss_Dead_Ds/z_eff_ss_dead_ds.c @@ -23,7 +23,7 @@ u32 EffectSsDeadDs_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsDeadDs_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsDeadDs_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Dead_Ds_InitVars = { +EffectSsProfile Effect_Ss_Dead_Ds_Profile = { EFFECT_SS_DEAD_DS, EffectSsDeadDs_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Dt_Bubble/z_eff_ss_dt_bubble.c b/src/overlays/effects/ovl_Effect_Ss_Dt_Bubble/z_eff_ss_dt_bubble.c index f1c2343f73..11d35e1fd9 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Dt_Bubble/z_eff_ss_dt_bubble.c +++ b/src/overlays/effects/ovl_Effect_Ss_Dt_Bubble/z_eff_ss_dt_bubble.c @@ -39,7 +39,7 @@ static Color_RGBA8 sEnvColors[] = { { 150, 150, 150, 0 }, }; -EffectSsInit Effect_Ss_Dt_Bubble_InitVars = { +EffectSsProfile Effect_Ss_Dt_Bubble_Profile = { EFFECT_SS_DT_BUBBLE, EffectSsDtBubble_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Dust/z_eff_ss_dust.c b/src/overlays/effects/ovl_Effect_Ss_Dust/z_eff_ss_dust.c index 91218e75e5..01b1ddc869 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Dust/z_eff_ss_dust.c +++ b/src/overlays/effects/ovl_Effect_Ss_Dust/z_eff_ss_dust.c @@ -28,7 +28,7 @@ void EffectSsDust_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsDust_UpdateFire(PlayState* play, u32 index, EffectSs* this); void EffectSsDust_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Dust_InitVars = { +EffectSsProfile Effect_Ss_Dust_Profile = { EFFECT_SS_DUST, EffectSsDust_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_En_Fire/z_eff_ss_en_fire.c b/src/overlays/effects/ovl_Effect_Ss_En_Fire/z_eff_ss_en_fire.c index 143af64e0f..c3aff299e7 100644 --- a/src/overlays/effects/ovl_Effect_Ss_En_Fire/z_eff_ss_en_fire.c +++ b/src/overlays/effects/ovl_Effect_Ss_En_Fire/z_eff_ss_en_fire.c @@ -24,7 +24,7 @@ u32 EffectSsEnFire_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsEnFire_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsEnFire_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_En_Fire_InitVars = { +EffectSsProfile Effect_Ss_En_Fire_Profile = { EFFECT_SS_EN_FIRE, EffectSsEnFire_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_En_Ice/z_eff_ss_en_ice.c b/src/overlays/effects/ovl_Effect_Ss_En_Ice/z_eff_ss_en_ice.c index b4620f8651..794d4dacde 100644 --- a/src/overlays/effects/ovl_Effect_Ss_En_Ice/z_eff_ss_en_ice.c +++ b/src/overlays/effects/ovl_Effect_Ss_En_Ice/z_eff_ss_en_ice.c @@ -28,7 +28,7 @@ void EffectSsEnIce_UpdateFlying(PlayState* play, u32 index, EffectSs* this); void EffectSsEnIce_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsEnIce_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_En_Ice_InitVars = { +EffectSsProfile Effect_Ss_En_Ice_Profile = { EFFECT_SS_EN_ICE, EffectSsEnIce_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Extra/z_eff_ss_extra.c b/src/overlays/effects/ovl_Effect_Ss_Extra/z_eff_ss_extra.c index acf4ed5e0e..1af5e796b7 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Extra/z_eff_ss_extra.c +++ b/src/overlays/effects/ovl_Effect_Ss_Extra/z_eff_ss_extra.c @@ -16,7 +16,7 @@ void EffectSsExtra_Draw(PlayState* play, u32 index, EffectSs* this); static s16 sScores[] = { EXTRA_SCORE_30, EXTRA_SCORE_60, EXTRA_SCORE_100 }; -EffectSsInit Effect_Ss_Extra_InitVars = { +EffectSsProfile Effect_Ss_Extra_Profile = { EFFECT_SS_EXTRA, EffectSsExtra_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Fhg_Flash/z_eff_ss_fhg_flash.c b/src/overlays/effects/ovl_Effect_Ss_Fhg_Flash/z_eff_ss_fhg_flash.c index 1d054c7ede..464f6e5646 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Fhg_Flash/z_eff_ss_fhg_flash.c +++ b/src/overlays/effects/ovl_Effect_Ss_Fhg_Flash/z_eff_ss_fhg_flash.c @@ -19,7 +19,7 @@ u32 EffectSsFhgFlash_Init(PlayState* play, u32 index, EffectSs* this, void* init void EffectSsFhgFlash_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsFhgFlash_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Fhg_Flash_InitVars = { +EffectSsProfile Effect_Ss_Fhg_Flash_Profile = { EFFECT_SS_FHG_FLASH, EffectSsFhgFlash_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Fire_Tail/z_eff_ss_fire_tail.c b/src/overlays/effects/ovl_Effect_Ss_Fire_Tail/z_eff_ss_fire_tail.c index 290e20461b..ae843f736a 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Fire_Tail/z_eff_ss_fire_tail.c +++ b/src/overlays/effects/ovl_Effect_Ss_Fire_Tail/z_eff_ss_fire_tail.c @@ -27,7 +27,7 @@ u32 EffectSsFireTail_Init(PlayState* play, u32 index, EffectSs* this, void* init void EffectSsFireTail_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsFireTail_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Fire_Tail_InitVars = { +EffectSsProfile Effect_Ss_Fire_Tail_Profile = { EFFECT_SS_FIRE_TAIL, EffectSsFireTail_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_G_Fire/z_eff_ss_g_fire.c b/src/overlays/effects/ovl_Effect_Ss_G_Fire/z_eff_ss_g_fire.c index b96baed29e..3965d9e6ab 100644 --- a/src/overlays/effects/ovl_Effect_Ss_G_Fire/z_eff_ss_g_fire.c +++ b/src/overlays/effects/ovl_Effect_Ss_G_Fire/z_eff_ss_g_fire.c @@ -13,7 +13,7 @@ u32 EffectSsGFire_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsGFire_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsGFire_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_G_Fire_InitVars = { +EffectSsProfile Effect_Ss_G_Fire_Profile = { EFFECT_SS_G_FIRE, EffectSsGFire_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_G_Ripple/z_eff_ss_g_ripple.c b/src/overlays/effects/ovl_Effect_Ss_G_Ripple/z_eff_ss_g_ripple.c index 7bc85d91d6..918da4a773 100644 --- a/src/overlays/effects/ovl_Effect_Ss_G_Ripple/z_eff_ss_g_ripple.c +++ b/src/overlays/effects/ovl_Effect_Ss_G_Ripple/z_eff_ss_g_ripple.c @@ -27,7 +27,7 @@ u32 EffectSsGRipple_Init(PlayState* play, u32 index, EffectSs* this, void* initP void EffectSsGRipple_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsGRipple_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_G_Ripple_InitVars = { +EffectSsProfile Effect_Ss_G_Ripple_Profile = { EFFECT_SS_G_RIPPLE, EffectSsGRipple_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_G_Spk/z_eff_ss_g_spk.c b/src/overlays/effects/ovl_Effect_Ss_G_Spk/z_eff_ss_g_spk.c index 50a3d0b4d3..2d97eee654 100644 --- a/src/overlays/effects/ovl_Effect_Ss_G_Spk/z_eff_ss_g_spk.c +++ b/src/overlays/effects/ovl_Effect_Ss_G_Spk/z_eff_ss_g_spk.c @@ -26,7 +26,7 @@ void EffectSsGSpk_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsGSpk_UpdateNoAccel(PlayState* play, u32 index, EffectSs* this); void EffectSsGSpk_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_G_Spk_InitVars = { +EffectSsProfile Effect_Ss_G_Spk_Profile = { EFFECT_SS_G_SPK, EffectSsGSpk_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_G_Splash/z_eff_ss_g_splash.c b/src/overlays/effects/ovl_Effect_Ss_G_Splash/z_eff_ss_g_splash.c index cd99ccdf40..4692f855a7 100644 --- a/src/overlays/effects/ovl_Effect_Ss_G_Splash/z_eff_ss_g_splash.c +++ b/src/overlays/effects/ovl_Effect_Ss_G_Splash/z_eff_ss_g_splash.c @@ -17,7 +17,7 @@ u32 EffectSsGSplash_Init(PlayState* play, u32 index, EffectSs* this, void* initP void EffectSsGSplash_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsGSplash_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_G_Splash_InitVars = { +EffectSsProfile Effect_Ss_G_Splash_Profile = { EFFECT_SS_G_SPLASH, EffectSsGSplash_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Hahen/z_eff_ss_hahen.c b/src/overlays/effects/ovl_Effect_Ss_Hahen/z_eff_ss_hahen.c index ce7debca4d..789376c3b5 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Hahen/z_eff_ss_hahen.c +++ b/src/overlays/effects/ovl_Effect_Ss_Hahen/z_eff_ss_hahen.c @@ -21,7 +21,7 @@ u32 EffectSsHahen_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsHahen_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsHahen_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Hahen_InitVars = { +EffectSsProfile Effect_Ss_Hahen_Profile = { EFFECT_SS_HAHEN, EffectSsHahen_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Hitmark/z_eff_ss_hitmark.c b/src/overlays/effects/ovl_Effect_Ss_Hitmark/z_eff_ss_hitmark.c index 122ffbb166..174b86b163 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Hitmark/z_eff_ss_hitmark.c +++ b/src/overlays/effects/ovl_Effect_Ss_Hitmark/z_eff_ss_hitmark.c @@ -73,7 +73,7 @@ static TexturePtr sTextures[] = { gEffHitmarkWhiteMetal8Tex, }; -EffectSsInit Effect_Ss_Hitmark_InitVars = { +EffectSsProfile Effect_Ss_Hitmark_Profile = { EFFECT_SS_HITMARK, EffectSsHitmark_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Ice_Piece/z_eff_ss_ice_piece.c b/src/overlays/effects/ovl_Effect_Ss_Ice_Piece/z_eff_ss_ice_piece.c index 715036d88f..090c06d86e 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Ice_Piece/z_eff_ss_ice_piece.c +++ b/src/overlays/effects/ovl_Effect_Ss_Ice_Piece/z_eff_ss_ice_piece.c @@ -19,7 +19,7 @@ u32 EffectSsIcePiece_Init(PlayState* play, u32 index, EffectSs* this, void* init void EffectSsIcePiece_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsIcePiece_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Ice_Piece_InitVars = { +EffectSsProfile Effect_Ss_Ice_Piece_Profile = { EFFECT_SS_ICE_PIECE, EffectSsIcePiece_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Ice_Smoke/z_eff_ss_ice_smoke.c b/src/overlays/effects/ovl_Effect_Ss_Ice_Smoke/z_eff_ss_ice_smoke.c index c61eb071ef..d5116cc75d 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Ice_Smoke/z_eff_ss_ice_smoke.c +++ b/src/overlays/effects/ovl_Effect_Ss_Ice_Smoke/z_eff_ss_ice_smoke.c @@ -18,7 +18,7 @@ u32 EffectSsIceSmoke_Init(PlayState* play, u32 index, EffectSs* this, void* init void EffectSsIceSmoke_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsIceSmoke_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Ice_Smoke_InitVars = { +EffectSsProfile Effect_Ss_Ice_Smoke_Profile = { EFFECT_SS_ICE_SMOKE, EffectSsIceSmoke_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_K_Fire/z_eff_ss_k_fire.c b/src/overlays/effects/ovl_Effect_Ss_K_Fire/z_eff_ss_k_fire.c index 9f0ff73a55..09c791cbad 100644 --- a/src/overlays/effects/ovl_Effect_Ss_K_Fire/z_eff_ss_k_fire.c +++ b/src/overlays/effects/ovl_Effect_Ss_K_Fire/z_eff_ss_k_fire.c @@ -20,7 +20,7 @@ u32 EffectSsKFire_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsKFire_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsKFire_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_K_Fire_InitVars = { +EffectSsProfile Effect_Ss_K_Fire_Profile = { EFFECT_SS_K_FIRE, EffectSsKFire_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Kakera/z_eff_ss_kakera.c b/src/overlays/effects/ovl_Effect_Ss_Kakera/z_eff_ss_kakera.c index 7c3bcd0adc..54371871ef 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Kakera/z_eff_ss_kakera.c +++ b/src/overlays/effects/ovl_Effect_Ss_Kakera/z_eff_ss_kakera.c @@ -29,7 +29,7 @@ void EffectSsKakera_Draw(PlayState* play, u32 index, EffectSs* this); void EffectSsKakera_CheckForObject(EffectSs* this, PlayState* play); -EffectSsInit Effect_Ss_Kakera_InitVars = { +EffectSsProfile Effect_Ss_Kakera_Profile = { EFFECT_SS_KAKERA, EffectSsKakera_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Kirakira/z_eff_ss_kirakira.c b/src/overlays/effects/ovl_Effect_Ss_Kirakira/z_eff_ss_kirakira.c index 44e0ce714a..30eef4eddb 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Kirakira/z_eff_ss_kirakira.c +++ b/src/overlays/effects/ovl_Effect_Ss_Kirakira/z_eff_ss_kirakira.c @@ -29,7 +29,7 @@ void func_80977E6C(PlayState* play, u32 index, EffectSs* this); void func_80977F28(PlayState* play, u32 index, EffectSs* this); void EffectSsKirakira_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Kirakira_InitVars = { +EffectSsProfile Effect_Ss_Kirakira_Profile = { EFFECT_SS_KIRAKIRA, EffectSsKirakira_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Lightning/z_eff_ss_lightning.c b/src/overlays/effects/ovl_Effect_Ss_Lightning/z_eff_ss_lightning.c index 6b6a378a17..5b387712ca 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Lightning/z_eff_ss_lightning.c +++ b/src/overlays/effects/ovl_Effect_Ss_Lightning/z_eff_ss_lightning.c @@ -31,7 +31,7 @@ static TexturePtr sLightningTextures[] = { gEffLightning5Tex, gEffLightning6Tex, gEffLightning7Tex, gEffLightning8Tex, }; -EffectSsInit Effect_Ss_Lightning_InitVars = { +EffectSsProfile Effect_Ss_Lightning_Profile = { EFFECT_SS_LIGHTNING, EffectSsLightning_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Sbn/z_eff_ss_sbn.c b/src/overlays/effects/ovl_Effect_Ss_Sbn/z_eff_ss_sbn.c index 4b4712128d..811271da83 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Sbn/z_eff_ss_sbn.c +++ b/src/overlays/effects/ovl_Effect_Ss_Sbn/z_eff_ss_sbn.c @@ -27,7 +27,7 @@ void EffectSsSbn_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsSbn_DrawSliding(PlayState* play, u32 index, EffectSs* this); void EffectSsSbn_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Sbn_InitVars = { +EffectSsProfile Effect_Ss_Sbn_Profile = { EFFECT_SS_SBN, EffectSsSbn_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Sibuki/z_eff_ss_sibuki.c b/src/overlays/effects/ovl_Effect_Ss_Sibuki/z_eff_ss_sibuki.c index 26d5d45ef3..12b9bf0d36 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Sibuki/z_eff_ss_sibuki.c +++ b/src/overlays/effects/ovl_Effect_Ss_Sibuki/z_eff_ss_sibuki.c @@ -25,7 +25,7 @@ u32 EffectSsSibuki_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsSibuki_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsSibuki_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Sibuki_InitVars = { +EffectSsProfile Effect_Ss_Sibuki_Profile = { EFFECT_SS_SIBUKI, EffectSsSibuki_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Solder_Srch_Ball/z_eff_ss_solder_srch_ball.c b/src/overlays/effects/ovl_Effect_Ss_Solder_Srch_Ball/z_eff_ss_solder_srch_ball.c index fa2e2849c3..da0a3727e6 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Solder_Srch_Ball/z_eff_ss_solder_srch_ball.c +++ b/src/overlays/effects/ovl_Effect_Ss_Solder_Srch_Ball/z_eff_ss_solder_srch_ball.c @@ -15,7 +15,7 @@ u32 EffectSsSolderSrchBall_Init(PlayState* play, u32 index, EffectSs* this, void void EffectSsSolderSrchBall_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsSolderSrchBall_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Solder_Srch_Ball_InitVars = { +EffectSsProfile Effect_Ss_Solder_Srch_Ball_Profile = { EFFECT_SS_SOLDER_SRCH_BALL, EffectSsSolderSrchBall_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Stick/z_eff_ss_stick.c b/src/overlays/effects/ovl_Effect_Ss_Stick/z_eff_ss_stick.c index a4a5b4c20f..8026ce39d6 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Stick/z_eff_ss_stick.c +++ b/src/overlays/effects/ovl_Effect_Ss_Stick/z_eff_ss_stick.c @@ -16,7 +16,7 @@ u32 EffectSsStick_Init(PlayState* play, u32 index, EffectSs* this, void* initPar void EffectSsStick_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsStick_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Stick_InitVars = { +EffectSsProfile Effect_Ss_Stick_Profile = { EFFECT_SS_STICK, EffectSsStick_Init, }; diff --git a/src/overlays/effects/ovl_Effect_Ss_Stone1/z_eff_ss_stone1.c b/src/overlays/effects/ovl_Effect_Ss_Stone1/z_eff_ss_stone1.c index e46f4203f0..933d5c2806 100644 --- a/src/overlays/effects/ovl_Effect_Ss_Stone1/z_eff_ss_stone1.c +++ b/src/overlays/effects/ovl_Effect_Ss_Stone1/z_eff_ss_stone1.c @@ -15,7 +15,7 @@ u32 EffectSsStone1_Init(PlayState* play, u32 index, EffectSs* this, void* initPa void EffectSsStone1_Update(PlayState* play, u32 index, EffectSs* this); void EffectSsStone1_Draw(PlayState* play, u32 index, EffectSs* this); -EffectSsInit Effect_Ss_Stone1_InitVars = { +EffectSsProfile Effect_Ss_Stone1_Profile = { EFFECT_SS_STONE1, EffectSsStone1_Init, }; diff --git a/src/overlays/fbdemos/ovl_fbdemo_triforce/z_fbdemo_triforce.c b/src/overlays/fbdemos/ovl_fbdemo_triforce/z_fbdemo_triforce.c index cf1000add1..cc734c241a 100644 --- a/src/overlays/fbdemos/ovl_fbdemo_triforce/z_fbdemo_triforce.c +++ b/src/overlays/fbdemos/ovl_fbdemo_triforce/z_fbdemo_triforce.c @@ -17,7 +17,7 @@ void TransitionTriforce_SetType(void* thisx, s32 type); void TransitionTriforce_SetColor(void* thisx, u32 color); s32 TransitionTriforce_IsDone(void* thisx); -TransitionInit TransitionTriforce_InitVars = { +TransitionProfile TransitionTriforce_Profile = { TransitionTriforce_Init, TransitionTriforce_Destroy, TransitionTriforce_Update, TransitionTriforce_Draw, TransitionTriforce_Start, TransitionTriforce_SetType, TransitionTriforce_SetColor, NULL, TransitionTriforce_IsDone, diff --git a/src/overlays/fbdemos/ovl_fbdemo_wipe1/z_fbdemo_wipe1.c b/src/overlays/fbdemos/ovl_fbdemo_wipe1/z_fbdemo_wipe1.c index 9c992a20bb..444a9232bd 100644 --- a/src/overlays/fbdemos/ovl_fbdemo_wipe1/z_fbdemo_wipe1.c +++ b/src/overlays/fbdemos/ovl_fbdemo_wipe1/z_fbdemo_wipe1.c @@ -21,7 +21,7 @@ s32 TransitionWipe1_IsDone(void* thisx); #include "assets/overlays/ovl_fbdemo_wipe1/ovl_fbdemo_wipe1.c" -TransitionInit TransitionWipe1_InitVars = { +TransitionProfile TransitionWipe1_Profile = { TransitionWipe1_Init, TransitionWipe1_Destroy, TransitionWipe1_Update, TransitionWipe1_Draw, TransitionWipe1_Start, TransitionWipe1_SetType, TransitionWipe1_SetColor, TransitionWipe1_SetEnvColor, TransitionWipe1_IsDone, diff --git a/src/overlays/fbdemos/ovl_fbdemo_wipe3/z_fbdemo_wipe3.c b/src/overlays/fbdemos/ovl_fbdemo_wipe3/z_fbdemo_wipe3.c index 543fc6e087..927532fd84 100644 --- a/src/overlays/fbdemos/ovl_fbdemo_wipe3/z_fbdemo_wipe3.c +++ b/src/overlays/fbdemos/ovl_fbdemo_wipe3/z_fbdemo_wipe3.c @@ -26,7 +26,7 @@ TexturePtr sTransWipe3Textures[] = { fbdemo_tex_001520, fbdemo_tex_000520, fbdemo_tex_000520, fbdemo_tex_000520, }; -TransitionInit TransitionWipe3_InitVars = { +TransitionProfile TransitionWipe3_Profile = { TransitionWipe3_Init, TransitionWipe3_Destroy, TransitionWipe3_Update, TransitionWipe3_Draw, TransitionWipe3_Start, TransitionWipe3_SetType, TransitionWipe3_SetColor, TransitionWipe3_SetEnvColor, TransitionWipe3_IsDone, diff --git a/src/overlays/fbdemos/ovl_fbdemo_wipe4/z_fbdemo_wipe4.c b/src/overlays/fbdemos/ovl_fbdemo_wipe4/z_fbdemo_wipe4.c index 562e1920bf..c27f3e590b 100644 --- a/src/overlays/fbdemos/ovl_fbdemo_wipe4/z_fbdemo_wipe4.c +++ b/src/overlays/fbdemos/ovl_fbdemo_wipe4/z_fbdemo_wipe4.c @@ -31,7 +31,7 @@ void TransitionWipe4_SetColor(void* thisx, u32 color); void TransitionWipe4_SetEnvColor(void* thisx, u32 color); s32 TransitionWipe4_IsDone(void* thisx); -TransitionInit TransitionWipe4_InitVars = { +TransitionProfile TransitionWipe4_Profile = { TransitionWipe4_Init, TransitionWipe4_Destroy, TransitionWipe4_Update, TransitionWipe4_Draw, TransitionWipe4_Start, TransitionWipe4_SetType, TransitionWipe4_SetColor, TransitionWipe4_SetEnvColor, TransitionWipe4_IsDone, diff --git a/src/overlays/fbdemos/ovl_fbdemo_wipe5/z_fbdemo_wipe5.c b/src/overlays/fbdemos/ovl_fbdemo_wipe5/z_fbdemo_wipe5.c index f2b591d7b2..81e6a7955a 100644 --- a/src/overlays/fbdemos/ovl_fbdemo_wipe5/z_fbdemo_wipe5.c +++ b/src/overlays/fbdemos/ovl_fbdemo_wipe5/z_fbdemo_wipe5.c @@ -22,7 +22,7 @@ void TransitionWipe5_SetColor(void* thisx, u32 color); void TransitionWipe5_SetEnvColor(void* thisx, u32 color); s32 TransitionWipe5_IsDone(void* thisx); -TransitionInit TransitionWipe5_InitVars = { +TransitionProfile TransitionWipe5_Profile = { TransitionWipe5_Init, TransitionWipe5_Destroy, TransitionWipe5_Update, TransitionWipe5_Draw, TransitionWipe5_Start, TransitionWipe5_SetType, TransitionWipe5_SetColor, TransitionWipe5_SetEnvColor, TransitionWipe5_IsDone, diff --git a/tools/disasm/variables.txt b/tools/disasm/variables.txt index b91abfb6f3..762edb36cb 100644 --- a/tools/disasm/variables.txt +++ b/tools/disasm/variables.txt @@ -366,11 +366,11 @@ 0x801AAAB0:("aspMainTextStart","UNK_TYPE1","",0x1), 0x801ABAB0:("gspS2DEX2_fifoTextStart","UNK_TYPE1","",0x1), 0x801AD370:("njpgdspMainTextStart","UNK_TYPE1","",0x1), - 0x801ADE60:("En_A_Obj_InitVars","ActorInit","",0x20), + 0x801ADE60:("En_A_Obj_Profile","ActorInit","",0x20), 0x801ADE80:("enAObjCylinderInit","ColliderCylinderInit","",0x2c), 0x801ADEAC:("enAObjInitVar","ActorInitVar","",0x4), 0x801ADEB0:("enAObjDisplayLists","u32","[2]",0x8), - 0x801ADEC0:("En_Item00_InitVars","ActorInit","",0x20), + 0x801ADEC0:("En_Item00_Profile","ActorInit","",0x20), 0x801ADEE0:("enItem00CylinderInit","ColliderCylinderInit","",0x2c), 0x801ADF0C:("enItem00InitVars","ActorInitVar","[1]",0x4), 0x801ADF10:("sEffectPrimColor","ColorRGBA8","",0x4), @@ -2032,16 +2032,16 @@ 0x801D08E8:("sMaskCodeTextENG","UNK_TYPE1","",0x1), 0x801D0900:("sMaskCodeTextLengthENG","UNK_TYPE1","",0x1), 0x801D0910:("sCreditsFontWidths","f32","[]",0x1), - 0x801D0B50:("Player_InitVars","ActorInit","",0x20), + 0x801D0B50:("Player_Profile","ActorInit","",0x20), 0x801D0B70:("gKaleidoMgrOverlayTable","KaleidoMgrOverlay","",0x38), 0x801D0BA8:("sKaleidoAreaPtr","void*","",0x4), 0x801D0BAC:("gKaleidoMgrCurOvl","KaleidoMgrOverlay*","",0x4), 0x801D0BB0:("gTransitionOverlayTable","UNK_TYPE4","",0x4), 0x801D0C80:("D_801D0C80","UNK_TYPE1","",0x1), 0x801D0CB0:("D_801D0CB0","UNK_TYPE1","",0x1), - 0x801D0CD8:("TransitionFade_InitVars","UNK_PTR","",0x4), + 0x801D0CD8:("TransitionFade_Profile","UNK_PTR","",0x4), 0x801D0D00:("D_801D0D00","UNK_TYPE1","",0x1), - 0x801D0D28:("TransitionCircle_InitVars","UNK_PTR","",0x4), + 0x801D0D28:("TransitionCircle_Profile","UNK_PTR","",0x4), 0x801D0D50:("gDbgCamEnabled","UNK_TYPE4","",0x4), 0x801D0D54:("D_801D0D54","UNK_TYPE1","",0x1), 0x801D0D58:("sQuakeIndex","UNK_TYPE2","",0x2), @@ -5263,7 +5263,7 @@ 0x80862B4C:("sPlayerHeldItemButtonIsHeldDown","UNK_TYPE1","",0x1), 0x80862B50:("D_80862B50","UNK_TYPE1","",0x1), 0x80862B6C:("D_80862B6C","UNK_TYPE1","",0x1), - 0x808637B0:("En_Test_InitVars","ActorInit","",0x20), + 0x808637B0:("En_Test_Profile","ActorInit","",0x20), 0x808637D0:("D_808637D0","f32","",0x4), 0x808637D4:("D_808637D4","f32","",0x4), 0x808637D8:("D_808637D8","f32","",0x4), @@ -5271,16 +5271,16 @@ 0x808637E0:("D_808637E0","f32","",0x4), 0x808637E4:("D_808637E4","f32","",0x4), 0x808637E8:("D_808637E8","f32","",0x4), - 0x80864A30:("En_GirlA_InitVars","UNK_TYPE1","",0x1), + 0x80864A30:("En_GirlA_Profile","UNK_TYPE1","",0x1), 0x80864A50:("D_80864A50","UNK_TYPE1","",0x1), 0x80864FB0:("jtbl_80864FB0","UNK_PTR","",0x4), - 0x808658E0:("En_Part_InitVars","UNK_TYPE1","",0x1), + 0x808658E0:("En_Part_Profile","UNK_TYPE1","",0x1), 0x80865900:("D_80865900","UNK_TYPE4","",0x4), 0x8086590C:("D_8086590C","UNK_TYPE1","",0x1), 0x80865920:("D_80865920","f32","",0x4), 0x80865924:("D_80865924","f32","",0x4), 0x80865928:("D_80865928","f32","",0x4), - 0x808666B0:("En_Light_InitVars","UNK_TYPE1","",0x1), + 0x808666B0:("En_Light_Profile","UNK_TYPE1","",0x1), 0x808666D0:("D_808666D0","UNK_TYPE1","",0x1), 0x808666D6:("D_808666D6","UNK_TYPE1","",0x1), 0x808666D7:("D_808666D7","UNK_TYPE1","",0x1), @@ -5323,7 +5323,7 @@ 0x80867780:("D_80867780","UNK_TYPE1","",0x1), 0x80867784:("sDoorSch_SwampShootingGallery","UNK_TYPE1","",0x1), 0x8086778C:("sDoorSchedules","UNK_PTR","",0x4), - 0x8086780C:("En_Door_InitVars","UNK_TYPE1","",0x1), + 0x8086780C:("En_Door_Profile","UNK_TYPE1","",0x1), 0x8086782C:("sObjectInfo","UNK_TYPE2","",0x126), 0x80867954:("sInitChain","UNK_TYPE1","",0x1), 0x80867964:("sAnimations","AnimationHeader","[10]",0x28), @@ -5332,7 +5332,7 @@ 0x808679A4:("sDoorDLists","UNK_TYPE1","",0x1), 0x80867A20:("D_80867A20","f32","",0x4), 0x80867BC0:("sDoorIsMilkBarMember","UNK_TYPE1","",0x1), - 0x80869B30:("En_Box_InitVars","UNK_TYPE1","",0x1), + 0x80869B30:("En_Box_Profile","UNK_TYPE1","",0x1), 0x80869B50:("D_80869B50","UNK_TYPE1","",0x1), 0x80869B54:("D_80869B54","UNK_TYPE4","",0x4), 0x80869B68:("D_80869B68","UNK_TYPE1","",0x1), @@ -5351,7 +5351,7 @@ 0x80869BC8:("D_80869BC8","f32","",0x4), 0x80869BCC:("D_80869BCC","f32","",0x4), 0x80869BD0:("D_80869BD0","f32","",0x4), - 0x8086D940:("En_Pametfrog_InitVars","UNK_TYPE1","",0x1), + 0x8086D940:("En_Pametfrog_Profile","UNK_TYPE1","",0x1), 0x8086D960:("D_8086D960","UNK_TYPE1","",0x1), 0x8086D980:("D_8086D980","UNK_TYPE1","",0x1), 0x8086D9C8:("D_8086D9C8","UNK_TYPE1","",0x1), @@ -5387,7 +5387,7 @@ 0x8086DA98:("D_8086DA98","f32","",0x4), 0x8086DA9C:("D_8086DA9C","f32","",0x4), 0x80870870:("gOctorokBlueMaterialDL","Gfx","[2]",0x10), - 0x80870880:("En_Okuta_InitVars","ActorInit","",0x20), + 0x80870880:("En_Okuta_Profile","ActorInit","",0x20), 0x808708A0:("sProjectileCylinderInit","ColliderCylinderInit","",0x2C), 0x808708CC:("sOctorokCylinderInit","ColliderCylinderInit","",0x2C), 0x808708F8:("sColChkInfoInit","CollisionCheckInfoInit","",0x4), @@ -5443,7 +5443,7 @@ 0x80870A20:("D_80870A20","f32","",0x4), 0x80870A24:("D_80870A24","f32","",0x4), 0x80870A28:("D_80870A28","f32","",0x4), - 0x80872DA0:("En_Bom_InitVars","ActorInit","",0x20), + 0x80872DA0:("En_Bom_Profile","ActorInit","",0x20), 0x80872DC0:("enBomScales","f32","[2]",0x8), 0x80872DC8:("D_80872DC8","ColliderCylinderInit","",0x2c), 0x80872DF4:("D_80872DF4","ColliderJntSphElementInit","[1]",0x24), @@ -5502,7 +5502,7 @@ 0x80874668:("D_80874668","UNK_TYPE1","",0x1), 0x8087466A:("D_8087466A","UNK_TYPE1","",0x1), 0x8087466C:("D_8087466C","UNK_TYPE1","",0x1), - 0x80876340:("En_Wallmas_InitVars","UNK_TYPE1","",0x1), + 0x80876340:("En_Wallmas_Profile","UNK_TYPE1","",0x1), 0x80876360:("D_80876360","UNK_TYPE1","",0x1), 0x8087638C:("D_8087638C","UNK_TYPE1","",0x1), 0x808763AC:("D_808763AC","UNK_TYPE1","",0x1), @@ -5521,7 +5521,7 @@ 0x80876414:("D_80876414","f32","",0x4), 0x80876418:("D_80876418","f32","",0x4), 0x8087641C:("D_8087641C","f32","",0x4), - 0x808790B0:("En_Dodongo_InitVars","UNK_TYPE1","",0x1), + 0x808790B0:("En_Dodongo_Profile","UNK_TYPE1","",0x1), 0x808790D0:("D_808790D0","UNK_TYPE1","",0x1), 0x80879238:("D_80879238","UNK_TYPE1","",0x1), 0x80879248:("D_80879248","UNK_TYPE1","",0x1), @@ -5571,7 +5571,7 @@ 0x808793F0:("D_808793F0","f32","",0x4), 0x808793F4:("D_808793F4","f32","",0x4), 0x808793F8:("D_808793F8","f32","",0x4), - 0x8087B450:("En_Firefly_InitVars","ActorInit","",0x20), + 0x8087B450:("En_Firefly_Profile","ActorInit","",0x20), 0x8087B470:("enFireflyCollisionInit","ColliderSphereInit","",0x2c), 0x8087B498:("D_8087B498","UNK_TYPE1","",0x1), 0x8087B49C:("D_8087B49C","UNK_TYPE1","",0x1), @@ -5604,7 +5604,7 @@ 0x80888F1C:("D_80888F1C","UNK_TYPE1","",0x1), 0x80888F34:("D_80888F34","UNK_TYPE4","",0x4), 0x80888F40:("sSkeletonHeaders","UNK_TYPE1","",0x1), - 0x80888F54:("En_Horse_InitVars","UNK_TYPE1","",0x1), + 0x80888F54:("En_Horse_Profile","UNK_TYPE1","",0x1), 0x80888F74:("sCylinderInit1","UNK_TYPE1","",0x1), 0x80888FA0:("sCylinderInit2","UNK_TYPE1","",0x1), 0x80888FCC:("D_80888FCC","UNK_TYPE1","",0x1), @@ -5751,7 +5751,7 @@ 0x808893E4:("D_808893E4","f32","",0x4), 0x808893E8:("D_808893E8","f32","",0x4), 0x808893EC:("D_808893EC","f32","",0x4), - 0x8088C1C0:("En_Arrow_InitVars","UNK_TYPE1","",0x1), + 0x8088C1C0:("En_Arrow_Profile","UNK_TYPE1","",0x1), 0x8088C1E0:("D_8088C1E0","UNK_TYPE1","",0x1), 0x8088C230:("D_8088C230","UNK_TYPE1","",0x1), 0x8088C234:("D_8088C234","EffectBlureInit2","",0x24), @@ -5770,7 +5770,7 @@ 0x8088C3C4:("D_8088C3C4","f32","",0x4), 0x8088C3C8:("D_8088C3C8","f32","",0x4), 0x8088C3CC:("D_8088C3CC","f32","",0x4), - 0x808909C0:("En_Elf_InitVars","UNK_TYPE1","",0x1), + 0x808909C0:("En_Elf_Profile","UNK_TYPE1","",0x1), 0x808909E0:("D_808909E0","UNK_TYPE1","",0x1), 0x808909E4:("D_808909E4","UNK_TYPE4","",0x4), 0x80890A14:("D_80890A14","UNK_TYPE1","",0x1), @@ -5826,7 +5826,7 @@ 0x80890BC0:("D_80890BC0","f32","",0x4), 0x80890BC4:("D_80890BC4","f32","",0x4), 0x80893460:("D_80893460","UNK_TYPE2","",0x2), - 0x80893464:("En_Niw_InitVars","UNK_TYPE1","",0x1), + 0x80893464:("En_Niw_Profile","UNK_TYPE1","",0x1), 0x80893484:("D_80893484","UNK_TYPE1","",0x1), 0x8089348C:("D_8089348C","UNK_TYPE1","",0x1), 0x80893490:("D_80893490","UNK_TYPE1","",0x1), @@ -5865,7 +5865,7 @@ 0x80893580:("D_80893580","f32","",0x4), 0x80893584:("D_80893584","f32","",0x4), 0x80893588:("D_80893588","f32","",0x4), - 0x80896AB0:("En_Tite_InitVars","UNK_TYPE1","",0x1), + 0x80896AB0:("En_Tite_Profile","UNK_TYPE1","",0x1), 0x80896AD0:("D_80896AD0","UNK_TYPE1","",0x1), 0x80896AFC:("D_80896AFC","UNK_TYPE1","",0x1), 0x80896B1C:("D_80896B1C","UNK_TYPE1","",0x1), @@ -5888,7 +5888,7 @@ 0x80896BC8:("D_80896BC8","f32","",0x4), 0x80896BCC:("D_80896BCC","f32","",0x4), 0x80896BD0:("D_80896BD0","f32","",0x4), - 0x80899410:("En_Peehat_InitVars","UNK_TYPE1","",0x1), + 0x80899410:("En_Peehat_Profile","UNK_TYPE1","",0x1), 0x80899430:("D_80899430","UNK_TYPE1","",0x1), 0x8089945C:("D_8089945C","UNK_TYPE1","",0x1), 0x80899488:("D_80899488","UNK_TYPE1","",0x1), @@ -5943,7 +5943,7 @@ 0x8089964C:("D_8089964C","f32","",0x4), 0x80899650:("D_80899650","f32","",0x4), 0x80899654:("D_80899654","f32","",0x4), - 0x8089A530:("En_Holl_InitVars","UNK_TYPE1","",0x1), + 0x8089A530:("En_Holl_Profile","UNK_TYPE1","",0x1), 0x8089A550:("gEnHollCentralPlaneVtx","UNK_TYPE1","",0x1), 0x8089A590:("gEnHollCentralPlaneDL","UNK_TYPE1","",0x1), 0x8089A5B8:("sInstancePlayingSound","UNK_TYPE4","",0x4), @@ -5955,7 +5955,7 @@ 0x8089A5E8:("sTransparencyPlaneDistance","f32","",0x4), 0x8089A5F0:("D_8089A5F0","f32","",0x4), 0x8089A5F4:("D_8089A5F4","f32","",0x4), - 0x8089E150:("En_Dinofos_InitVars","UNK_TYPE1","",0x1), + 0x8089E150:("En_Dinofos_Profile","UNK_TYPE1","",0x1), 0x8089E170:("D_8089E170","UNK_TYPE1","",0x1), 0x8089E2B4:("D_8089E2B4","UNK_TYPE1","",0x1), 0x8089E2C4:("D_8089E2C4","UNK_TYPE1","",0x1), @@ -6011,17 +6011,17 @@ 0x8089E450:("D_8089E450","f32","",0x4), 0x8089E454:("D_8089E454","f32","",0x4), 0x8089E458:("D_8089E458","f32","",0x4), - 0x8089ED10:("En_Hata_InitVars","UNK_TYPE1","",0x1), + 0x8089ED10:("En_Hata_Profile","UNK_TYPE1","",0x1), 0x8089ED30:("D_8089ED30","f32","",0x4), 0x8089ED34:("D_8089ED34","f32","",0x4), 0x8089ED38:("D_8089ED38","f32","",0x4), - 0x8089EDD0:("En_Zl1_InitVars","ActorInit","",0x20), + 0x8089EDD0:("En_Zl1_Profile","ActorInit","",0x20), 0x8089F3E0:("D_8089F3E0","UNK_TYPE1","",0x1), 0x8089F3E4:("D_8089F3E4","UNK_TYPE1","",0x1), - 0x8089F3E8:("En_Viewer_InitVars","UNK_TYPE1","",0x1), + 0x8089F3E8:("En_Viewer_Profile","UNK_TYPE1","",0x1), 0x8089F410:("D_8089F410","f32","",0x4), 0x8089F4D0:("D_8089F4D0","UNK_TYPE1","",0x1), - 0x808A06E0:("En_Bubble_InitVars","UNK_TYPE1","",0x1), + 0x808A06E0:("En_Bubble_Profile","UNK_TYPE1","",0x1), 0x808A0700:("D_808A0700","UNK_TYPE1","",0x1), 0x808A0748:("D_808A0748","UNK_TYPE1","",0x1), 0x808A0758:("D_808A0758","UNK_TYPE1","",0x1), @@ -6041,7 +6041,7 @@ 0x808A07A8:("D_808A07A8","f32","",0x4), 0x808A07AC:("D_808A07AC","f32","",0x4), 0x808A07B0:("D_808A07B0","f32","",0x4), - 0x808A2160:("Door_Shutter_InitVars","UNK_TYPE1","",0x1), + 0x808A2160:("Door_Shutter_Profile","UNK_TYPE1","",0x1), 0x808A2180:("D_808A2180","UNK_TYPE1","",0x1), 0x808A21B0:("D_808A21B0","UNK_PTR","",0x4), 0x808A2240:("D_808A2240","UNK_TYPE1","",0x1), @@ -6057,7 +6057,7 @@ 0x808A22FC:("D_808A22FC","f32","",0x4), 0x808A2300:("D_808A2300","f32","",0x4), 0x808A2304:("D_808A2304","f32","",0x4), - 0x808A2FF0:("En_Boom_InitVars","UNK_TYPE1","",0x1), + 0x808A2FF0:("En_Boom_Profile","UNK_TYPE1","",0x1), 0x808A3010:("sQuadInit","UNK_TYPE1","",0x1), 0x808A3060:("sInitChain","UNK_TYPE1","",0x1), 0x808A3068:("D_808A3068","Color_RGBA8","",0x4), @@ -6069,11 +6069,11 @@ 0x808A30B4:("D_808A30B4","f32","",0x4), 0x808A30B8:("D_808A30B8","f32","",0x4), 0x808A30BC:("D_808A30BC","f32","",0x4), - 0x808A35B0:("En_Torch2_InitVars","UNK_TYPE1","",0x1), + 0x808A35B0:("En_Torch2_Profile","UNK_TYPE1","",0x1), 0x808A35D0:("D_808A35D0","UNK_TYPE1","",0x1), 0x808A35FC:("D_808A35FC","UNK_TYPE1","",0x1), 0x808A3600:("D_808A3600","UNK_TYPE1","",0x1), - 0x808A4D20:("En_Minifrog_InitVars","UNK_TYPE1","",0x1), + 0x808A4D20:("En_Minifrog_Profile","UNK_TYPE1","",0x1), 0x808A4D40:("D_808A4D40","UNK_TYPE1","",0x1), 0x808A4D6C:("D_808A4D6C","UNK_TYPE1","",0x1), 0x808A4D74:("D_808A4D74","UNK_PTR","",0x4), @@ -6088,7 +6088,7 @@ 0x808A4DD0:("D_808A4DD0","f32","",0x4), 0x808A4DD4:("D_808A4DD4","f32","",0x4), 0x808A4DD8:("jtbl_808A4DD8","UNK_PTR","",0x4), - 0x808A7590:("En_St_InitVars","UNK_TYPE1","",0x1), + 0x808A7590:("En_St_Profile","UNK_TYPE1","",0x1), 0x808A75B0:("D_808A75B0","UNK_TYPE1","",0x1), 0x808A75DC:("D_808A75DC","UNK_PTR","",0x4), 0x808A7608:("D_808A7608","UNK_TYPE1","",0x1), @@ -6111,11 +6111,11 @@ 0x808A7740:("D_808A7740","f32","",0x4), 0x808A7744:("D_808A7744","f32","",0x4), 0x808A7748:("D_808A7748","f32","",0x4), - 0x808A7DA0:("Obj_Wturn_InitVars","UNK_TYPE1","",0x1), + 0x808A7DA0:("Obj_Wturn_Profile","UNK_TYPE1","",0x1), 0x808A7DC0:("D_808A7DC0","UNK_TYPE1","",0x1), - 0x808A8040:("En_River_Sound_InitVars","UNK_TYPE1","",0x1), + 0x808A8040:("En_River_Sound_Profile","UNK_TYPE1","",0x1), 0x808A8060:("D_808A8060","UNK_TYPE1","",0x1), - 0x808AC010:("En_Ossan_InitVars","UNK_TYPE1","",0x1), + 0x808AC010:("En_Ossan_Profile","UNK_TYPE1","",0x1), 0x808AC030:("sAnimationsCuriosityShopMan","UNK_TYPE1","",0x1), 0x808AC100:("sAnimationsPartTimer","UNK_TYPE1","",0x1), 0x808AC1C0:("sObjectIds","UNK_TYPE1","",0x1), @@ -6153,7 +6153,7 @@ 0x808AC360:("D_808AC360","f32","",0x4), 0x808AC364:("D_808AC364","f32","",0x4), 0x808AC368:("jtbl_808AC368","UNK_PTR","",0x4), - 0x808AE5E0:("En_Famos_InitVars","UNK_TYPE1","",0x1), + 0x808AE5E0:("En_Famos_Profile","UNK_TYPE1","",0x1), 0x808AE600:("D_808AE600","UNK_TYPE1","",0x1), 0x808AE62C:("D_808AE62C","UNK_TYPE1","",0x1), 0x808AE658:("D_808AE658","UNK_TYPE1","",0x1), @@ -6166,7 +6166,7 @@ 0x808AE6D8:("D_808AE6D8","f32","",0x4), 0x808AE6DC:("D_808AE6DC","f32","",0x4), 0x808AE6E0:("D_808AE6E0","f32","",0x4), - 0x808AFB00:("En_Bombf_InitVars","UNK_TYPE1","",0x1), + 0x808AFB00:("En_Bombf_Profile","UNK_TYPE1","",0x1), 0x808AFB20:("D_808AFB20","UNK_TYPE1","",0x1), 0x808AFB4C:("D_808AFB4C","UNK_TYPE1","",0x1), 0x808AFB70:("D_808AFB70","UNK_TYPE1","",0x1), @@ -6182,7 +6182,7 @@ 0x808AFBD0:("D_808AFBD0","f32","",0x4), 0x808AFBD4:("D_808AFBD4","f32","",0x4), 0x808AFBD8:("D_808AFBD8","f32","",0x4), - 0x808B1050:("En_Am_InitVars","UNK_TYPE1","",0x1), + 0x808B1050:("En_Am_Profile","UNK_TYPE1","",0x1), 0x808B1070:("D_808B1070","UNK_TYPE1","",0x1), 0x808B109C:("D_808B109C","UNK_TYPE1","",0x1), 0x808B10C8:("D_808B10C8","UNK_TYPE1","",0x1), @@ -6200,7 +6200,7 @@ 0x808B11B0:("D_808B11B0","f32","",0x4), 0x808B11B4:("D_808B11B4","f32","",0x4), 0x808B11B8:("D_808B11B8","f32","",0x4), - 0x808B4D40:("En_Dekubaba_InitVars","ActorInit","",0x20), + 0x808B4D40:("En_Dekubaba_Profile","ActorInit","",0x20), 0x808B4D60:("sJntSphElementsInit","ColliderJntSphElementInit","[7]",0xFC), 0x808B4E5C:("sJntSphInit","ColliderJntSphInit","",0x10), 0x808B4E6C:("sColChkInfoInit","CollisionCheckInfoInit","",0x4), @@ -6234,9 +6234,9 @@ 0x808B4F08:("D_808B4F08","f32","",0x4), 0x808B4F0C:("D_808B4F0C","f32","",0x4), 0x808B4F10:("D_808B4F10","f32","",0x4), - 0x808B5340:("En_M_Fire1_InitVars","UNK_TYPE1","",0x1), + 0x808B5340:("En_M_Fire1_Profile","UNK_TYPE1","",0x1), 0x808B5360:("D_808B5360","UNK_TYPE1","",0x1), - 0x808B7100:("En_M_Thunder_InitVars","UNK_TYPE1","",0x1), + 0x808B7100:("En_M_Thunder_Profile","UNK_TYPE1","",0x1), 0x808B7120:("D_808B7120","UNK_TYPE1","",0x1), 0x808B714C:("D_808B714C","UNK_TYPE1","",0x1), 0x808B7150:("D_808B7150","UNK_TYPE1","",0x1), @@ -6265,7 +6265,7 @@ 0x808B71D0:("D_808B71D0","f32","",0x4), 0x808B71D4:("D_808B71D4","f32","",0x4), 0x808B71D8:("D_808B71D8","f32","",0x4), - 0x808B8120:("Bg_Breakwall_InitVars","UNK_TYPE1","",0x1), + 0x808B8120:("Bg_Breakwall_Profile","UNK_TYPE1","",0x1), 0x808B8140:("D_808B8140","UNK_TYPE1","",0x1), 0x808B82E0:("D_808B82E0","UNK_TYPE1","",0x1), 0x808B82F0:("D_808B82F0","UNK_TYPE1","",0x1), @@ -6277,7 +6277,7 @@ 0x808B8350:("D_808B8350","f32","",0x4), 0x808B8354:("D_808B8354","f32","",0x4), 0x808B8358:("D_808B8358","f32","",0x4), - 0x808BBB20:("Door_Warp1_InitVars","UNK_TYPE1","",0x1), + 0x808BBB20:("Door_Warp1_Profile","UNK_TYPE1","",0x1), 0x808BBB40:("D_808BBB40","UNK_TYPE1","",0x1), 0x808BBB50:("D_808BBB50","UNK_TYPE4","",0x4), 0x808BBB5C:("D_808BBB5C","Vec3f","",0xC), @@ -6315,7 +6315,7 @@ 0x808BBC4C:("D_808BBC4C","f32","",0x4), 0x808BC000:("D_808BC000","UNK_TYPE1","",0x1), 0x808BC004:("D_808BC004","UNK_TYPE1","",0x1), - 0x808BCCA0:("Obj_Syokudai_InitVars","UNK_TYPE1","",0x1), + 0x808BCCA0:("Obj_Syokudai_Profile","UNK_TYPE1","",0x1), 0x808BCCC0:("sStandColliderInit","UNK_TYPE1","",0x1), 0x808BCCEC:("sFlameColliderInit","UNK_TYPE1","",0x1), 0x808BCD18:("sInitChain","UNK_TYPE1","",0x1), @@ -6324,10 +6324,10 @@ 0x808BCD40:("D_808BCD40","f32","",0x4), 0x808BCD44:("D_808BCD44","f32","",0x4), 0x808BCDE0:("sNumLitTorchesInGroup","UNK_TYPE1","",0x1), - 0x808BD160:("Item_B_Heart_InitVars","UNK_TYPE1","",0x1), + 0x808BD160:("Item_B_Heart_Profile","UNK_TYPE1","",0x1), 0x808BD180:("sInitChain","UNK_TYPE1","",0x1), 0x808BD190:("D_808BD190","f32","",0x4), - 0x808BEF10:("En_Dekunuts_InitVars","UNK_TYPE1","",0x1), + 0x808BEF10:("En_Dekunuts_Profile","UNK_TYPE1","",0x1), 0x808BEF30:("D_808BEF30","UNK_TYPE1","",0x1), 0x808BEF5C:("D_808BEF5C","UNK_TYPE1","",0x1), 0x808BEF64:("D_808BEF64","UNK_TYPE1","",0x1), @@ -6352,7 +6352,7 @@ 0x808BF010:("D_808BF010","f32","",0x4), 0x808BF014:("D_808BF014","f32","",0x4), 0x808BF018:("D_808BF018","f32","",0x4), - 0x808C0D10:("En_Bbfall_InitVars","UNK_TYPE1","",0x1), + 0x808C0D10:("En_Bbfall_Profile","UNK_TYPE1","",0x1), 0x808C0D30:("D_808C0D30","UNK_TYPE1","",0x1), 0x808C0D9C:("D_808C0D9C","UNK_TYPE1","",0x1), 0x808C0DAC:("D_808C0DAC","UNK_TYPE1","",0x1), @@ -6379,7 +6379,7 @@ 0x808C0E38:("D_808C0E38","f32","",0x4), 0x808C0E3C:("D_808C0E3C","f32","",0x4), 0x808C0E40:("D_808C0E40","f32","",0x4), - 0x808C1BA0:("Arms_Hook_InitVars","UNK_TYPE1","",0x1), + 0x808C1BA0:("Arms_Hook_Profile","UNK_TYPE1","",0x1), 0x808C1BC0:("D_808C1BC0","UNK_TYPE1","",0x1), 0x808C1C10:("D_808C1C10","UNK_TYPE1","",0x1), 0x808C1C1C:("D_808C1C1C","UNK_TYPE1","",0x1), @@ -6390,7 +6390,7 @@ 0x808C1C60:("D_808C1C60","f32","",0x4), 0x808C1C64:("D_808C1C64","f32","",0x4), 0x808C1C68:("D_808C1C68","f32","",0x4), - 0x808C3780:("En_Bb_InitVars","UNK_TYPE1","",0x1), + 0x808C3780:("En_Bb_Profile","UNK_TYPE1","",0x1), 0x808C37A0:("D_808C37A0","UNK_TYPE1","",0x1), 0x808C37CC:("D_808C37CC","UNK_TYPE1","",0x1), 0x808C37EC:("D_808C37EC","UNK_TYPE1","",0x1), @@ -6416,9 +6416,9 @@ 0x808C3858:("D_808C3858","f32","",0x4), 0x808C385C:("D_808C385C","f32","",0x4), 0x808C3860:("D_808C3860","f32","",0x4), - 0x808C3BA0:("Bg_Keikoku_Spr_InitVars","UNK_TYPE1","",0x1), + 0x808C3BA0:("Bg_Keikoku_Spr_Profile","UNK_TYPE1","",0x1), 0x808C3BC0:("D_808C3BC0","UNK_TYPE1","",0x1), - 0x808C4CE0:("En_Wood02_InitVars","UNK_TYPE1","",0x1), + 0x808C4CE0:("En_Wood02_Profile","UNK_TYPE1","",0x1), 0x808C4D00:("D_808C4D00","UNK_TYPE1","",0x1), 0x808C4D2C:("sWood02SpawnDistance","f32","",0x1), 0x808C4D44:("sWood02SpawnAngle","UNK_TYPE1","",0x1), @@ -6433,7 +6433,7 @@ 0x808C4E18:("D_808C4E18","UNK_TYPE1","",0x1), 0x808C4F70:("sWood02SpawnCos","f32","",0x4), 0x808C4F74:("sWood02SpawnSin","UNK_TYPE1","",0x4), - 0x808C98C0:("En_Death_InitVars","UNK_TYPE1","",0x1), + 0x808C98C0:("En_Death_Profile","UNK_TYPE1","",0x1), 0x808C98E0:("D_808C98E0","UNK_TYPE1","",0x1), 0x808C990C:("D_808C990C","UNK_TYPE1","",0x1), 0x808C9938:("D_808C9938","UNK_TYPE1","",0x1), @@ -6500,7 +6500,7 @@ 0x808C9C00:("D_808C9C00","f32","",0x4), 0x808C9C04:("D_808C9C04","f32","",0x4), 0x808C9C08:("D_808C9C08","f32","",0x4), - 0x808CBF30:("En_Minideath_InitVars","UNK_TYPE1","",0x1), + 0x808CBF30:("En_Minideath_Profile","UNK_TYPE1","",0x1), 0x808CBF50:("D_808CBF50","UNK_TYPE1","",0x1), 0x808CBFBC:("D_808CBFBC","UNK_TYPE1","",0x1), 0x808CBFCC:("D_808CBFCC","UNK_TYPE1","",0x1), @@ -6512,7 +6512,7 @@ 0x808CC254:("D_808CC254","UNK_TYPE1","",0x1), 0x808CC258:("D_808CC258","UNK_TYPE1","",0x1), 0x808CC25C:("D_808CC25C","UNK_TYPE1","",0x1), - 0x808CD4A0:("En_Vm_InitVars","UNK_TYPE1","",0x1), + 0x808CD4A0:("En_Vm_Profile","UNK_TYPE1","",0x1), 0x808CD4C0:("D_808CD4C0","UNK_TYPE1","",0x1), 0x808CD508:("D_808CD508","UNK_TYPE1","",0x1), 0x808CD518:("D_808CD518","UNK_TYPE1","",0x1), @@ -6531,7 +6531,7 @@ 0x808CD5E0:("D_808CD5E0","f32","",0x4), 0x808CD5E4:("D_808CD5E4","f32","",0x4), 0x808CD5E8:("D_808CD5E8","f32","",0x4), - 0x808CE290:("Demo_Effect_InitVars","UNK_TYPE1","",0x1), + 0x808CE290:("Demo_Effect_Profile","UNK_TYPE1","",0x1), 0x808CE2B0:("D_808CE2B0","UNK_TYPE4","",0x4), 0x808CE2C0:("sEffectTypeObjectIds","s16","",0x12), 0x808CE2D4:("sAlphaTypes","u8","",0x15), @@ -6547,7 +6547,7 @@ 0x808CE334:("D_808CE334","f32","",0x4), 0x808D03C0:("D_808D03C0","UNK_TYPE1","",0x1), 0x808D03C4:("D_808D03C4","UNK_TYPE2","",0x2), - 0x808D03C8:("Demo_Kankyo_InitVars","UNK_TYPE1","",0x1), + 0x808D03C8:("Demo_Kankyo_Profile","UNK_TYPE1","",0x1), 0x808D03E8:("D_808D03E8","UNK_TYPE2","",0x2), 0x808D03EA:("D_808D03EA","UNK_TYPE2","",0x2), 0x808D03F0:("D_808D03F0","f32","",0x4), @@ -6593,7 +6593,7 @@ 0x808D0490:("D_808D0490","f32","",0x4), 0x808D0494:("D_808D0494","f32","",0x4), 0x808D0498:("D_808D0498","f32","",0x4), - 0x808D3880:("En_Floormas_InitVars","UNK_TYPE1","",0x1), + 0x808D3880:("En_Floormas_Profile","UNK_TYPE1","",0x1), 0x808D38A0:("D_808D38A0","UNK_TYPE1","",0x1), 0x808D38CC:("D_808D38CC","UNK_TYPE1","",0x1), 0x808D38D4:("D_808D38D4","UNK_TYPE1","",0x1), @@ -6637,7 +6637,7 @@ 0x808D39D8:("D_808D39D8","f32","",0x4), 0x808D39DC:("D_808D39DC","f32","",0x4), 0x808D39E0:("D_808D39E0","f32","",0x4), - 0x808D70C0:("En_Rd_InitVars","UNK_TYPE1","",0x1), + 0x808D70C0:("En_Rd_Profile","UNK_TYPE1","",0x1), 0x808D70E0:("D_808D70E0","UNK_TYPE1","",0x1), 0x808D710C:("D_808D710C","UNK_TYPE1","",0x1), 0x808D712C:("D_808D712C","UNK_TYPE1","",0x1), @@ -6655,15 +6655,15 @@ 0x808D7198:("D_808D7198","f32","",0x4), 0x808D719C:("jtbl_808D719C","UNK_PTR","",0x4), 0x808D71D8:("D_808D71D8","f32","",0x4), - 0x808D7810:("Bg_F40_Flift_InitVars","UNK_TYPE1","",0x1), + 0x808D7810:("Bg_F40_Flift_Profile","UNK_TYPE1","",0x1), 0x808D7830:("D_808D7830","UNK_TYPE1","",0x1), 0x808D7840:("D_808D7840","f32","",0x4), 0x808D7844:("D_808D7844","f32","",0x4), 0x808D7848:("D_808D7848","f32","",0x4), 0x808D784C:("D_808D784C","f32","",0x4), 0x808D7850:("D_808D7850","f32","",0x4), - 0x808D8760:("Obj_Mure_InitVars","UNK_TYPE1","",0x1), - 0x808DB9C0:("En_Sw_InitVars","UNK_TYPE1","",0x1), + 0x808D8760:("Obj_Mure_Profile","UNK_TYPE1","",0x1), + 0x808DB9C0:("En_Sw_Profile","UNK_TYPE1","",0x1), 0x808DB9E0:("D_808DB9E0","UNK_TYPE1","",0x1), 0x808DBA0C:("D_808DBA0C","UNK_PTR","",0x4), 0x808DBA18:("D_808DBA18","UNK_TYPE1","",0x1), @@ -6695,7 +6695,7 @@ 0x808DBB0C:("D_808DBB0C","f32","",0x4), 0x808DBB10:("D_808DBB10","f32","",0x4), 0x808DBB14:("jtbl_808DBB14","UNK_PTR","",0x4), - 0x808DE320:("Object_Kankyo_InitVars","UNK_TYPE1","",0x1), + 0x808DE320:("Object_Kankyo_Profile","UNK_TYPE1","",0x1), 0x808DE340:("D_808DE340","UNK_TYPE2","",0x2), 0x808DE350:("jtbl_808DE350","UNK_PTR","",0x4), 0x808DE364:("D_808DE364","f32","",0x4), @@ -6728,7 +6728,7 @@ 0x808DE3E0:("D_808DE3E0","f32","",0x4), 0x808DE3E4:("D_808DE3E4","f32","",0x4), 0x808DE5B0:("D_808DE5B0","UNK_TYPE1","",0x1), - 0x808DFEA0:("En_Horse_Link_Child_InitVars","UNK_TYPE1","",0x1), + 0x808DFEA0:("En_Horse_Link_Child_Profile","UNK_TYPE1","",0x1), 0x808DFEC0:("D_808DFEC0","UNK_TYPE4","",0x14), 0x808DFED4:("D_808DFED4","UNK_TYPE1","",0x1), 0x808DFEF8:("D_808DFEF8","UNK_TYPE1","",0x1), @@ -6743,32 +6743,32 @@ 0x808DFF64:("D_808DFF64","f32","",0x4), 0x808DFF68:("D_808DFF68","f32","",0x4), 0x808DFF6C:("D_808DFF6C","f32","",0x4), - 0x808E0740:("Door_Ana_InitVars","UNK_TYPE1","",0x1), + 0x808E0740:("Door_Ana_Profile","UNK_TYPE1","",0x1), 0x808E0760:("D_808E0760","UNK_TYPE1","",0x1), 0x808E078C:("D_808E078C","UNK_TYPE1","",0x1), 0x808E07B0:("D_808E07B0","f32","",0x4), - 0x808E0DD0:("En_Encount1_InitVars","UNK_TYPE1","",0x1), + 0x808E0DD0:("En_Encount1_Profile","UNK_TYPE1","",0x1), 0x808E0DF0:("D_808E0DF0","UNK_TYPE1","",0x1), 0x808E0DF8:("D_808E0DF8","UNK_TYPE1","",0x1), 0x808E1490:("D_808E1490","UNK_TYPE1","",0x1), - 0x808E14B0:("Demo_Tre_Lgt_InitVars","UNK_TYPE1","",0x1), + 0x808E14B0:("Demo_Tre_Lgt_Profile","UNK_TYPE1","",0x1), 0x808E14D0:("sBoxLightAnimations","UNK_TYPE4","[2]",0x8), 0x808E14D8:("sActionFuncs","UNK_TYPE4","[2]",0x8), - 0x808E1ED0:("En_Encount2_InitVars","UNK_TYPE1","",0x1), + 0x808E1ED0:("En_Encount2_Profile","UNK_TYPE1","",0x1), 0x808E1EF0:("D_808E1EF0","UNK_TYPE1","",0x1), 0x808E1F14:("D_808E1F14","UNK_TYPE1","",0x1), 0x808E1F24:("D_808E1F24","UNK_TYPE1","",0x1), 0x808E1F50:("D_808E1F50","f32","",0x4), 0x808E1F54:("D_808E1F54","f32","",0x4), 0x808E1F58:("D_808E1F58","f32","",0x4), - 0x808E2020:("En_Fire_Rock_InitVars","UNK_TYPE1","",0x1), - 0x808E2540:("Bg_Ctower_Rot_InitVars","UNK_TYPE1","",0x1), + 0x808E2020:("En_Fire_Rock_Profile","UNK_TYPE1","",0x1), + 0x808E2540:("Bg_Ctower_Rot_Profile","UNK_TYPE1","",0x1), 0x808E2560:("D_808E2560","UNK_TYPE1","",0x1), 0x808E2564:("D_808E2564","UNK_TYPE1","",0x1), 0x808E2570:("D_808E2570","f32","",0x4), 0x808E2574:("D_808E2574","f32","",0x4), 0x808E2578:("D_808E2578","f32","",0x4), - 0x808E3BD0:("Mir_Ray_InitVars","UNK_TYPE1","",0x1), + 0x808E3BD0:("Mir_Ray_Profile","UNK_TYPE1","",0x1), 0x808E3BF0:("D_808E3BF0","UNK_TYPE1","",0x1), 0x808E3BF4:("D_808E3BF4","UNK_TYPE1","",0x1), 0x808E3C44:("D_808E3C44","UNK_TYPE1","",0x1), @@ -6786,7 +6786,7 @@ 0x808E3DF4:("D_808E3DF4","f32","",0x4), 0x808E3DF8:("D_808E3DF8","f32","",0x4), 0x808E3DFC:("D_808E3DFC","f32","",0x4), - 0x808E4DF0:("En_Sb_InitVars","UNK_TYPE1","",0x1), + 0x808E4DF0:("En_Sb_Profile","UNK_TYPE1","",0x1), 0x808E4E10:("D_808E4E10","UNK_TYPE1","",0x1), 0x808E4E3C:("D_808E4E3C","UNK_TYPE1","",0x1), 0x808E4E5C:("D_808E4E5C","UNK_TYPE1","",0x1), @@ -6829,7 +6829,7 @@ 0x808EFEB2:("D_808EFEB2","UNK_TYPE2","",0x2), 0x808EFEB4:("D_808EFEB4","UNK_TYPE2","",0x2), 0x808EFEC0:("D_808EFEC0","UNK_TYPE1","",0x1), - 0x808F0280:("En_Bigslime_InitVars","UNK_TYPE1","",0x1), + 0x808F0280:("En_Bigslime_Profile","UNK_TYPE1","",0x1), 0x808F02A0:("D_808F02A0","UNK_TYPE1","",0x1), 0x808F02CC:("D_808F02CC","UNK_TYPE1","",0x1), 0x808F02D4:("D_808F02D4","UNK_TYPE1","",0x1), @@ -6958,7 +6958,7 @@ 0x808F0668:("D_808F0668","f32","",0x4), 0x808F066C:("D_808F066C","f32","",0x4), 0x808F0670:("D_808F0670","f32","",0x4), - 0x808F2D80:("En_Karebaba_InitVars","UNK_TYPE1","",0x1), + 0x808F2D80:("En_Karebaba_Profile","UNK_TYPE1","",0x1), 0x808F2DA0:("D_808F2DA0","UNK_TYPE1","",0x1), 0x808F2DCC:("D_808F2DCC","UNK_TYPE1","",0x1), 0x808F2DEC:("D_808F2DEC","UNK_TYPE2","",0x2), @@ -6981,7 +6981,7 @@ 0x808F2E6C:("D_808F2E6C","f32","",0x4), 0x808F2E70:("D_808F2E70","f32","",0x4), 0x808F2E74:("D_808F2E74","f32","",0x4), - 0x808F6A40:("En_In_InitVars","UNK_TYPE1","",0x1), + 0x808F6A40:("En_In_Profile","UNK_TYPE1","",0x1), 0x808F6A60:("D_808F6A60","UNK_TYPE1","",0x1), 0x808F6A8C:("D_808F6A8C","UNK_TYPE1","",0x1), 0x808F6AB0:("D_808F6AB0","UNK_TYPE1","",0x1), @@ -7011,7 +7011,7 @@ 0x808F6EF8:("D_808F6EF8","f32","",0x4), 0x808F6EFC:("D_808F6EFC","f32","",0x4), 0x808F6F00:("D_808F6F00","f32","",0x4), - 0x808F88C0:("En_Bom_Chu_InitVars","UNK_TYPE1","",0x1), + 0x808F88C0:("En_Bom_Chu_Profile","UNK_TYPE1","",0x1), 0x808F88E0:("D_808F88E0","UNK_TYPE1","",0x1), 0x808F8908:("D_808F8908","UNK_TYPE2","",0x2), 0x808F8914:("D_808F8914","EffectBlureInit2","",0x24), @@ -7023,7 +7023,7 @@ 0x808F8968:("D_808F8968","f32","",0x4), 0x808F896C:("D_808F896C","f32","",0x4), 0x808F8970:("D_808F8970","f32","",0x4), - 0x808F9B00:("En_Horse_Game_Check_InitVars","UNK_TYPE1","",0x1), + 0x808F9B00:("En_Horse_Game_Check_Profile","UNK_TYPE1","",0x1), 0x808F9B20:("D_808F9B20","UNK_TYPE1","",0x1), 0x808F9B28:("D_808F9B28","UNK_TYPE1","",0x1), 0x808F9B30:("D_808F9B30","UNK_TYPE1","",0x1), @@ -7043,7 +7043,7 @@ 0x808F9CAC:("D_808F9CAC","char","[]",0x1c), 0x808F9CC8:("D_808F9CC8","f32","",0x4), 0x808F9CCC:("D_808F9CCC","f32","",0x4), - 0x808FC130:("En_Rr_InitVars","UNK_TYPE1","",0x1), + 0x808FC130:("En_Rr_Profile","UNK_TYPE1","",0x1), 0x808FC150:("D_808FC150","UNK_TYPE1","",0x1), 0x808FC17C:("D_808FC17C","UNK_TYPE1","",0x1), 0x808FC1A8:("D_808FC1A8","UNK_TYPE1","",0x1), @@ -7087,8 +7087,8 @@ 0x808FC2A4:("D_808FC2A4","f32","",0x4), 0x808FC2A8:("D_808FC2A8","f32","",0x4), 0x808FC2AC:("D_808FC2AC","f32","",0x4), - 0x808FC670:("En_Fr_InitVars","UNK_TYPE1","",0x1), - 0x8090CCB0:("En_Fishing_InitVars","UNK_TYPE1","",0x1), + 0x808FC670:("En_Fr_Profile","UNK_TYPE1","",0x1), + 0x8090CCB0:("En_Fishing_Profile","UNK_TYPE1","",0x1), 0x8090CCD0:("D_8090CCD0","f32","",0x4), 0x8090CCD4:("D_8090CCD4","u8","",0x1), 0x8090CCD8:("D_8090CCD8","f32","",0x4), @@ -7504,7 +7504,7 @@ 0x80917272:("D_80917272","UNK_TYPE1","",0x1), 0x80917274:("D_80917274","UNK_TYPE1","",0x1), 0x80917278:("D_80917278","Vec3f","",0xC), - 0x80918830:("Obj_Oshihiki_InitVars","UNK_TYPE1","",0x1), + 0x80918830:("Obj_Oshihiki_Profile","UNK_TYPE1","",0x1), 0x80918850:("D_80918850","UNK_TYPE1","",0x1), 0x80918868:("D_80918868","UNK_TYPE1","",0x1), 0x80918898:("D_80918898","UNK_TYPE1","",0x1), @@ -7524,7 +7524,7 @@ 0x80918988:("D_80918988","f32","",0x4), 0x8091898C:("D_8091898C","f32","",0x4), 0x80918990:("D_80918990","f32","",0x4), - 0x80919D90:("Eff_Dust_InitVars","UNK_TYPE1","",0x1), + 0x80919D90:("Eff_Dust_Profile","UNK_TYPE1","",0x1), 0x80919DB0:("D_80919DB0","UNK_TYPE1","",0x1), 0x80919DC0:("jtbl_80919DC0","UNK_PTR","",0x4), 0x80919DD8:("D_80919DD8","f32","",0x4), @@ -7540,10 +7540,10 @@ 0x80919E00:("D_80919E00","f32","",0x4), 0x80919E04:("D_80919E04","f32","",0x4), 0x80919E08:("D_80919E08","f32","",0x4), - 0x8091A7F0:("Bg_Umajump_InitVars","UNK_TYPE1","",0x1), + 0x8091A7F0:("Bg_Umajump_Profile","UNK_TYPE1","",0x1), 0x8091A810:("D_8091A810","UNK_TYPE1","",0x1), 0x8091BD60:("D_8091BD60","UNK_TYPE2","",0x2), - 0x8091BD64:("En_Insect_InitVars","UNK_TYPE1","",0x1), + 0x8091BD64:("En_Insect_Profile","UNK_TYPE1","",0x1), 0x8091BD84:("D_8091BD84","UNK_TYPE1","",0x1), 0x8091BDA8:("D_8091BDA8","UNK_TYPE1","",0x1), 0x8091BDB8:("D_8091BDB8","UNK_TYPE1","",0x1), @@ -7587,7 +7587,7 @@ 0x8091BE6C:("D_8091BE6C","f32","",0x4), 0x8091D2D0:("D_8091D2D0","UNK_TYPE1","",0x1), 0x8091D2F4:("D_8091D2F4","UNK_TYPE1","",0x1), - 0x8091D304:("En_Butte_InitVars","UNK_TYPE1","",0x1), + 0x8091D304:("En_Butte_Profile","UNK_TYPE1","",0x1), 0x8091D324:("D_8091D324","UNK_TYPE1","",0x1), 0x8091D360:("D_8091D360","UNK_TYPE1","",0x1), 0x8091D39C:("D_8091D39C","f32","",0x4), @@ -7620,7 +7620,7 @@ 0x8091FA60:("D_8091FA60","UNK_TYPE1","",0x1), 0x8091FA84:("D_8091FA84","UNK_TYPE1","",0x1), 0x8091FA94:("D_8091FA94","UNK_TYPE1","",0x1), - 0x8091FAA0:("En_Fish_InitVars","UNK_TYPE1","",0x1), + 0x8091FAA0:("En_Fish_Profile","UNK_TYPE1","",0x1), 0x8091FAC0:("D_8091FAC0","UNK_TYPE1","",0x1), 0x8091FACC:("D_8091FACC","UNK_TYPE1","",0x1), 0x8091FAD4:("D_8091FAD4","UNK_TYPE1","",0x1), @@ -7672,7 +7672,7 @@ 0x8091FBAC:("D_8091FBAC","f32","",0x4), 0x8091FBB0:("D_8091FBB0","f32","",0x4), 0x8091FBB4:("D_8091FBB4","f32","",0x4), - 0x80920210:("Item_Etcetera_InitVars","UNK_TYPE1","",0x1), + 0x80920210:("Item_Etcetera_Profile","UNK_TYPE1","",0x1), 0x80920230:("D_80920230","UNK_TYPE1","",0x1), 0x8092024C:("D_8092024C","UNK_TYPE1","",0x1), 0x80920268:("D_80920268","UNK_TYPE1","",0x1), @@ -7682,7 +7682,7 @@ 0x80921DF0:("gFireArrowVtx","Vtx","[43]",0x2b0), 0x809220A0:("gIceArrowMaterialDL","Gfx","[22]",0xb0), 0x80922150:("gIceArrowModelDL","Gfx","[24]",0xc0), - 0x80922210:("Arrow_Fire_InitVars","ActorInit","",0x20), + 0x80922210:("Arrow_Fire_Profile","ActorInit","",0x20), 0x80922230:("sQuadInit","UNK_TYPE1","",0x1), 0x80922280:("sInitChain","ActorInitVar","[1]",0x4), 0x80922284:("D_80922284","Vec3f","",0xc), @@ -7707,7 +7707,7 @@ 0x80923FB0:("D_80923FB0","UNK_TYPE1","",0x1), 0x80924060:("D_80924060","UNK_TYPE1","",0x1), 0x80924110:("D_80924110","UNK_TYPE1","",0x1), - 0x809241D0:("Arrow_Ice_InitVars","UNK_TYPE1","",0x1), + 0x809241D0:("Arrow_Ice_Profile","UNK_TYPE1","",0x1), 0x809241F0:("D_809241F0","UNK_TYPE1","",0x1), 0x80924200:("D_80924200","char","[]",0x1), 0x80924208:("D_80924208","f32","",0x4), @@ -7724,7 +7724,7 @@ 0x80925E60:("D_80925E60","UNK_TYPE1","",0x1), 0x80925F10:("D_80925F10","UNK_TYPE1","",0x1), 0x80925FC0:("D_80925FC0","UNK_TYPE1","",0x1), - 0x80926080:("Arrow_Light_InitVars","UNK_TYPE1","",0x1), + 0x80926080:("Arrow_Light_Profile","UNK_TYPE1","",0x1), 0x809260A0:("sInitChain","UNK_TYPE1","",0x1), 0x809260B0:("D_809260B0","char","[]",0x1), 0x809260B8:("D_809260B8","f32","",0x4), @@ -7739,7 +7739,7 @@ 0x80927384:("D_80927384","UNK_TYPE2","",0x2), 0x80927388:("D_80927388","UNK_TYPE2","",0x2), 0x8092738C:("D_8092738C","UNK_TYPE2","",0x2), - 0x80927390:("Obj_Kibako_InitVars","UNK_TYPE1","",0x1), + 0x80927390:("Obj_Kibako_Profile","UNK_TYPE1","",0x1), 0x809273B0:("D_809273B0","UNK_TYPE1","",0x1), 0x809273DC:("D_809273DC","UNK_TYPE1","",0x1), 0x809273E0:("D_809273E0","UNK_TYPE1","",0x1), @@ -7761,7 +7761,7 @@ 0x80929504:("D_80929504","UNK_TYPE2","",0x2), 0x80929508:("D_80929508","UNK_TYPE2","",0x2), 0x8092950C:("D_8092950C","UNK_TYPE2","",0x2), - 0x80929510:("Obj_Tsubo_InitVars","UNK_TYPE1","",0x1), + 0x80929510:("Obj_Tsubo_Profile","UNK_TYPE1","",0x1), 0x80929530:("D_80929530","UNK_TYPE1","",0x1), 0x80929534:("D_80929534","f32","",0x4), 0x80929538:("D_80929538","UNK_TYPE1","",0x1), @@ -7796,7 +7796,7 @@ 0x8092BFA0:("D_8092BFA0","UNK_TYPE4","",0x4), 0x8092BFA4:("D_8092BFA4","UNK_TYPE1","",0x1), 0x8092BFD8:("D_8092BFD8","UNK_TYPE4","",0x4), - 0x8092BFFC:("En_Ik_InitVars","UNK_TYPE1","",0x1), + 0x8092BFFC:("En_Ik_Profile","UNK_TYPE1","",0x1), 0x8092C01C:("D_8092C01C","UNK_TYPE1","",0x1), 0x8092C048:("D_8092C048","UNK_TYPE1","",0x1), 0x8092C0C0:("D_8092C0C0","UNK_TYPE1","",0x1), @@ -7830,14 +7830,14 @@ 0x8092C248:("D_8092C248","f32","",0x4), 0x8092C24C:("D_8092C24C","f32","",0x4), 0x8092C250:("D_8092C250","f32","",0x4), - 0x8092C570:("Demo_Shd_InitVars","UNK_TYPE1","",0x1), + 0x8092C570:("Demo_Shd_Profile","UNK_TYPE1","",0x1), 0x8092DCB0:("D_8092DCB0","UNK_TYPE1","",0x1), 0x8092DCC0:("D_8092DCC0","UNK_TYPE1","",0x1), 0x8092DCD0:("D_8092DCD0","UNK_TYPE1","",0x1), 0x8092DCE0:("D_8092DCE0","UNK_TYPE1","",0x1), 0x8092DCF0:("D_8092DCF0","UNK_TYPE1","",0x1), 0x8092DD00:("D_8092DD00","UNK_TYPE1","",0x1), - 0x8092DD08:("En_Dns_InitVars","UNK_TYPE1","",0x1), + 0x8092DD08:("En_Dns_Profile","UNK_TYPE1","",0x1), 0x8092DD28:("D_8092DD28","UNK_TYPE1","",0x1), 0x8092DD54:("D_8092DD54","UNK_PTR","",0x4), 0x8092DD60:("sAnimations","UNK_TYPE1","",0x1), @@ -7847,7 +7847,7 @@ 0x8092DE30:("D_8092DE30","f32","",0x4), 0x8092DE34:("D_8092DE34","f32","",0x4), 0x8092DE38:("D_8092DE38","f32","",0x4), - 0x8092E450:("Elf_Msg_InitVars","UNK_TYPE1","",0x1), + 0x8092E450:("Elf_Msg_Profile","UNK_TYPE1","",0x1), 0x8092E470:("D_8092E470","UNK_TYPE1","",0x1), 0x8092E480:("D_8092E480","char","[]",0x1), 0x8092E488:("D_8092E488","char","[]",0x1), @@ -7857,7 +7857,7 @@ 0x8092E49C:("D_8092E49C","f32","",0x4), 0x809303F0:("D_809303F0","UNK_TYPE4","",0x4), 0x80930400:("D_80930400","UNK_TYPE4","",0x4), - 0x80930404:("En_Honotrap_InitVars","UNK_TYPE1","",0x1), + 0x80930404:("En_Honotrap_Profile","UNK_TYPE1","",0x1), 0x80930424:("D_80930424","UNK_TYPE1","",0x1), 0x8093049C:("D_8093049C","UNK_TYPE1","",0x1), 0x809304AC:("D_809304AC","UNK_TYPE1","",0x1), @@ -7892,7 +7892,7 @@ 0x80930570:("D_80930570","f32","",0x4), 0x80930574:("D_80930574","f32","",0x4), 0x80931410:("D_80931410","UNK_TYPE1","",0x1), - 0x8093143C:("En_Tubo_Trap_InitVars","UNK_TYPE1","",0x1), + 0x8093143C:("En_Tubo_Trap_Profile","UNK_TYPE1","",0x1), 0x8093145C:("D_8093145C","UNK_TYPE1","",0x1), 0x8093146C:("D_8093146C","UNK_TYPE1","",0x1), 0x80931480:("D_80931480","f32","",0x4), @@ -7901,7 +7901,7 @@ 0x8093148C:("D_8093148C","f32","",0x4), 0x80931490:("D_80931490","f32","",0x4), 0x80931494:("D_80931494","f32","",0x4), - 0x80932300:("Obj_Ice_Poly_InitVars","UNK_TYPE1","",0x1), + 0x80932300:("Obj_Ice_Poly_Profile","UNK_TYPE1","",0x1), 0x80932320:("D_80932320","UNK_TYPE1","",0x1), 0x8093234C:("D_8093234C","UNK_TYPE1","",0x1), 0x80932378:("D_80932378","UNK_TYPE1","",0x1), @@ -7916,7 +7916,7 @@ 0x809323B0:("D_809323B0","f32","",0x4), 0x809323B4:("D_809323B4","f32","",0x4), 0x809323B8:("D_809323B8","f32","",0x4), - 0x809346D0:("En_Fz_InitVars","UNK_TYPE1","",0x1), + 0x809346D0:("En_Fz_Profile","UNK_TYPE1","",0x1), 0x809346F0:("D_809346F0","UNK_TYPE1","",0x1), 0x809346F8:("D_809346F8","UNK_TYPE1","",0x1), 0x80934724:("D_80934724","UNK_TYPE1","",0x1), @@ -7943,7 +7943,7 @@ 0x809366AC:("D_809366AC","UNK_TYPE2","",0x2), 0x809366B0:("D_809366B0","UNK_TYPE2","",0x2), 0x809366B4:("D_809366B4","UNK_PTR","",0x4), - 0x809366B8:("En_Kusa_InitVars","UNK_TYPE1","",0x1), + 0x809366B8:("En_Kusa_Profile","UNK_TYPE1","",0x1), 0x809366D8:("D_809366D8","UNK_TYPE1","",0x1), 0x809366E0:("D_809366E0","UNK_TYPE1","",0x1), 0x8093670C:("D_8093670C","UNK_TYPE1","",0x1), @@ -7976,7 +7976,7 @@ 0x80936CDC:("D_80936CDC","UNK_TYPE2","",0x2), 0x80936CDE:("D_80936CDE","UNK_TYPE2","",0x2), 0x80936CE0:("D_80936CE0","UNK_TYPE2","",0x2), - 0x80938F80:("Obj_Bean_InitVars","UNK_TYPE1","",0x1), + 0x80938F80:("Obj_Bean_Profile","UNK_TYPE1","",0x1), 0x80938FA0:("D_80938FA0","UNK_TYPE1","",0x1), 0x80938FCC:("D_80938FCC","UNK_TYPE1","",0x1), 0x80938FF8:("D_80938FF8","UNK_TYPE1","",0x1), @@ -8010,7 +8010,7 @@ 0x809390A0:("D_809390A0","f32","",0x4), 0x809390A4:("D_809390A4","f32","",0x4), 0x809390A8:("D_809390A8","f32","",0x4), - 0x8093A920:("Obj_Bombiwa_InitVars","UNK_TYPE1","",0x1), + 0x8093A920:("Obj_Bombiwa_Profile","UNK_TYPE1","",0x1), 0x8093A940:("D_8093A940","UNK_TYPE1","",0x1), 0x8093A96C:("D_8093A96C","UNK_TYPE1","",0x1), 0x8093A998:("D_8093A998","UNK_PTR","",0x4), @@ -8042,7 +8042,7 @@ 0x8093AA40:("D_8093AA40","f32","",0x4), 0x8093CC60:("D_8093CC60","UNK_TYPE4","",0x4), 0x8093CC80:("D_8093CC80","UNK_TYPE4","",0x4), - 0x8093CC84:("Obj_Switch_InitVars","UNK_TYPE1","",0x1), + 0x8093CC84:("Obj_Switch_Profile","UNK_TYPE1","",0x1), 0x8093CCA4:("D_8093CCA4","UNK_TYPE1","",0x1), 0x8093CCA8:("D_8093CCA8","UNK_TYPE1","",0x1), 0x8093CCAC:("D_8093CCAC","UNK_TYPE1","",0x1), @@ -8082,7 +8082,7 @@ 0x8093CEC0:("D_8093CEC0","f32","",0x4), 0x8093CEC4:("jtbl_8093CEC4","UNK_PTR","",0x4), 0x8093D3B0:("D_8093D3B0","UNK_TYPE1","",0x1), - 0x8093DD30:("Obj_Lift_InitVars","UNK_TYPE1","",0x1), + 0x8093DD30:("Obj_Lift_Profile","UNK_TYPE1","",0x1), 0x8093DD50:("D_8093DD50","UNK_TYPE1","",0x1), 0x8093DD60:("D_8093DD60","UNK_TYPE2","",0x2), 0x8093DD84:("D_8093DD84","UNK_TYPE1","",0x1), @@ -8091,7 +8091,7 @@ 0x8093DDB0:("D_8093DDB0","f32","",0x4), 0x8093DDB4:("D_8093DDB4","f32","",0x4), 0x8093DDB8:("D_8093DDB8","f32","",0x4), - 0x8093E310:("Obj_Hsblock_InitVars","UNK_TYPE1","",0x1), + 0x8093E310:("Obj_Hsblock_Profile","UNK_TYPE1","",0x1), 0x8093E330:("D_8093E330","UNK_TYPE1","",0x1), 0x8093E33C:("D_8093E33C","UNK_TYPE1","",0x1), 0x8093E34C:("D_8093E34C","UNK_TYPE1","",0x1), @@ -8099,10 +8099,10 @@ 0x8093E364:("D_8093E364","UNK_TYPE1","",0x1), 0x8093E370:("D_8093E370","f32","",0x4), 0x8093E374:("D_8093E374","f32","",0x4), - 0x8093E810:("En_Okarina_Tag_InitVars","UNK_TYPE1","",0x1), + 0x8093E810:("En_Okarina_Tag_Profile","UNK_TYPE1","",0x1), 0x8093E830:("D_8093E830","f32","",0x4), 0x8093E834:("D_8093E834","f32","",0x4), - 0x80942DA0:("En_Goroiwa_InitVars","UNK_TYPE1","",0x1), + 0x80942DA0:("En_Goroiwa_Profile","UNK_TYPE1","",0x1), 0x80942DC0:("D_80942DC0","UNK_TYPE1","",0x1), 0x80942DE4:("D_80942DE4","UNK_TYPE1","",0x1), 0x80942DF4:("D_80942DF4","UNK_TYPE1","",0x1), @@ -8183,7 +8183,7 @@ 0x80942FA8:("D_80942FA8","f32","",0x4), 0x80942FAC:("D_80942FAC","f32","",0x4), 0x80942FB0:("D_80942FB0","f32","",0x4), - 0x80944040:("En_Daiku_InitVars","UNK_TYPE1","",0x1), + 0x80944040:("En_Daiku_Profile","UNK_TYPE1","",0x1), 0x80944060:("sTextIds","UNK_TYPE1","",0x1), 0x80944078:("D_80944078","UNK_TYPE1","",0x1), 0x809440A4:("D_809440A4","UNK_TYPE1","",0x1), @@ -8191,7 +8191,7 @@ 0x809440D4:("D_809440D4","UNK_TYPE1","",0x1), 0x809440F0:("D_809440F0","f32","",0x4), 0x809440F4:("jtbl_809440F4","UNK_PTR","",0x4), - 0x80945370:("En_Nwc_InitVars","UNK_TYPE1","",0x1), + 0x80945370:("En_Nwc_Profile","UNK_TYPE1","",0x1), 0x80945390:("D_80945390","UNK_TYPE1","",0x1), 0x80945394:("D_80945394","UNK_TYPE1","",0x1), 0x80945398:("D_80945398","UNK_TYPE4","",0x4), @@ -8201,8 +8201,8 @@ 0x809453BC:("D_809453BC","f32","",0x4), 0x809453C0:("D_809453C0","f32","",0x4), 0x809453C4:("D_809453C4","f32","",0x4), - 0x80945600:("Item_Inbox_InitVars","UNK_TYPE1","",0x1), - 0x809464B0:("En_Ge1_InitVars","UNK_TYPE1","",0x1), + 0x80945600:("Item_Inbox_Profile","UNK_TYPE1","",0x1), + 0x809464B0:("En_Ge1_Profile","UNK_TYPE1","",0x1), 0x809464D0:("sCylinderInit","ColliderCylinderInit","",0x1), 0x809464FC:("sAnimations","AnimationHeader","10",0x28), 0x80946524:("sHairstyleDLs","Gfx*","3",0xC), @@ -8210,8 +8210,8 @@ 0x8094653C:("sZeroVec","Vec3f","",0xC), 0x80946548:("sEyeTextures","TexturePtr","3",0xC), 0x80946560:("jtbl_80946560","UNK_PTR","",0x4), - 0x80946880:("Obj_Blockstop_InitVars","UNK_TYPE1","",0x1), - 0x80947A40:("En_Sda_InitVars","UNK_TYPE1","",0x1), + 0x80946880:("Obj_Blockstop_Profile","UNK_TYPE1","",0x1), + 0x80947A40:("En_Sda_Profile","UNK_TYPE1","",0x1), 0x80947A60:("D_80947A60","UNK_TYPE1","",0x1), 0x80947A6C:("D_80947A6C","UNK_TYPE2","",0x2), 0x80947A78:("D_80947A78","UNK_TYPE2","",0x2), @@ -8229,7 +8229,7 @@ 0x80947DC4:("D_80947DC4","f32","",0x4), 0x80947DC8:("D_80947DC8","f32","",0x4), 0x80947EA0:("D_80947EA0","UNK_TYPE1","",0x1), - 0x8094AD40:("En_Clear_Tag_InitVars","UNK_TYPE1","",0x1), + 0x8094AD40:("En_Clear_Tag_Profile","UNK_TYPE1","",0x1), 0x8094AD60:("D_8094AD60","UNK_TYPE4","",0x4), 0x8094AD6C:("D_8094AD6C","UNK_TYPE4","",0x4), 0x8094AD9C:("D_8094AD9C","UNK_TYPE4","",0x4), @@ -8291,7 +8291,7 @@ 0x80951BE8:("D_80951BE8","UNK_TYPE1","",0x1), 0x80951C2C:("D_80951C2C","UNK_TYPE1","",0x1), 0x80951C34:("D_80951C34","UNK_TYPE1","",0x1), - 0x80951C3C:("En_Gm_InitVars","UNK_TYPE1","",0x1), + 0x80951C3C:("En_Gm_Profile","UNK_TYPE1","",0x1), 0x80951C5C:("D_80951C5C","UNK_TYPE1","",0x1), 0x80951C88:("D_80951C88","UNK_TYPE1","",0x1), 0x80951CB4:("D_80951CB4","UNK_TYPE1","",0x1), @@ -8317,16 +8317,16 @@ 0x80951FBC:("jtbl_80951FBC","UNK_PTR","",0x4), 0x80952034:("D_80952034","f32","",0x4), 0x80952038:("jtbl_80952038","UNK_PTR","",0x4), - 0x80952B80:("En_Ms_InitVars","UNK_TYPE1","",0x1), + 0x80952B80:("En_Ms_Profile","UNK_TYPE1","",0x1), 0x80952BA0:("D_80952BA0","UNK_TYPE1","",0x1), 0x80952BCC:("D_80952BCC","UNK_TYPE1","",0x1), - 0x809538F0:("En_Hs_InitVars","UNK_TYPE1","",0x1), + 0x809538F0:("En_Hs_Profile","UNK_TYPE1","",0x1), 0x80953910:("D_80953910","UNK_TYPE1","",0x1), 0x8095393C:("D_8095393C","UNK_TYPE1","",0x1), 0x80953950:("jtbl_80953950","UNK_PTR","",0x4), 0x80953968:("jtbl_80953968","UNK_PTR","",0x4), - 0x809548A0:("Bg_Ingate_InitVars","UNK_TYPE1","",0x1), - 0x809572E0:("En_Kanban_InitVars","UNK_TYPE1","",0x1), + 0x809548A0:("Bg_Ingate_Profile","UNK_TYPE1","",0x1), + 0x809572E0:("En_Kanban_Profile","UNK_TYPE1","",0x1), 0x80957300:("D_80957300","UNK_TYPE1","",0x1), 0x8095732C:("sPartFlags","UNK_TYPE2","",0x2), 0x8095732E:("D_8095732E","UNK_TYPE2","",0x2), @@ -8367,7 +8367,7 @@ 0x80957EBC:("D_80957EBC","f32","",0x4), 0x80957EC0:("D_80957EC0","f32","",0x4), 0x80957EC4:("D_80957EC4","f32","",0x4), - 0x80959100:("En_Attack_Niw_InitVars","UNK_TYPE1","",0x1), + 0x80959100:("En_Attack_Niw_Profile","UNK_TYPE1","",0x1), 0x80959120:("D_80959120","UNK_TYPE1","",0x1), 0x80959130:("D_80959130","f32","",0x4), 0x80959134:("D_80959134","f32","",0x4), @@ -8390,13 +8390,13 @@ 0x8095918C:("D_8095918C","f32","",0x4), 0x80959190:("D_80959190","f32","",0x4), 0x80959194:("D_80959194","f32","",0x4), - 0x8095A240:("En_Mk_InitVars","UNK_TYPE1","",0x1), + 0x8095A240:("En_Mk_Profile","UNK_TYPE1","",0x1), 0x8095A260:("D_8095A260","UNK_TYPE1","",0x1), 0x8095A28C:("D_8095A28C","UNK_TYPE4","",0x4), 0x8095A2A0:("D_8095A2A0","UNK_TYPE1","",0x1), 0x8095A2B0:("jtbl_8095A2B0","UNK_PTR","",0x4), 0x8095A2C4:("jtbl_8095A2C4","UNK_PTR","",0x4), - 0x8095D2D0:("En_Owl_InitVars","UNK_TYPE1","",0x1), + 0x8095D2D0:("En_Owl_Profile","UNK_TYPE1","",0x1), 0x8095D2F0:("D_8095D2F0","UNK_TYPE1","",0x1), 0x8095D31C:("D_8095D31C","UNK_TYPE1","",0x1), 0x8095D32C:("D_8095D32C","UNK_TYPE1","",0x1), @@ -8412,7 +8412,7 @@ 0x8095D390:("D_8095D390","f32","",0x4), 0x8095F690:("D_8095F690","UNK_TYPE2","",0x2), 0x8095F694:("D_8095F694","UNK_TYPE2","",0x2), - 0x8095F698:("En_Ishi_InitVars","UNK_TYPE1","",0x1), + 0x8095F698:("En_Ishi_Profile","UNK_TYPE1","",0x1), 0x8095F6B8:("D_8095F6B8","UNK_TYPE1","",0x1), 0x8095F6BC:("D_8095F6BC","UNK_TYPE1","",0x1), 0x8095F6C0:("D_8095F6C0","UNK_TYPE1","",0x1), @@ -8460,9 +8460,9 @@ 0x8095F824:("D_8095F824","f32","",0x4), 0x8095F828:("D_8095F828","f32","",0x4), 0x8095F82C:("D_8095F82C","f32","",0x4), - 0x8095FB90:("Obj_Hana_InitVars","UNK_TYPE1","",0x1), + 0x8095FB90:("Obj_Hana_Profile","UNK_TYPE1","",0x1), 0x8095FBB0:("D_8095FBB0","UNK_TYPE1","",0x1), - 0x80960B70:("Obj_Lightswitch_InitVars","UNK_TYPE1","",0x1), + 0x80960B70:("Obj_Lightswitch_Profile","UNK_TYPE1","",0x1), 0x80960B90:("D_80960B90","UNK_TYPE1","",0x1), 0x80960BB4:("D_80960BB4","UNK_TYPE1","",0x1), 0x80960BC4:("sLightswitchFaceGfx","UNK_TYPE1","",0x1), @@ -8470,7 +8470,7 @@ 0x80960BD4:("sLightswitchEffectEnvColor","UNK_TYPE1","",0x1), 0x80960BD8:("D_80960BD8","UNK_TYPE1","",0x1), 0x80960BF0:("D_80960BF0","f32","",0x4), - 0x80961570:("Obj_Mure2_InitVars","UNK_TYPE1","",0x1), + 0x80961570:("Obj_Mure2_Profile","UNK_TYPE1","",0x1), 0x80961590:("D_80961590","UNK_TYPE1","",0x1), 0x8096159C:("D_8096159C","UNK_TYPE1","",0x1), 0x809615A8:("D_809615A8","UNK_TYPE1","",0x1), @@ -8478,7 +8478,7 @@ 0x809615B8:("D_809615B8","UNK_TYPE2","",0x2), 0x809615E8:("D_809615E8","UNK_TYPE1","",0x1), 0x809615F4:("D_809615F4","UNK_TYPE1","",0x1), - 0x80964AE0:("En_Fu_InitVars","UNK_TYPE1","",0x1), + 0x80964AE0:("En_Fu_Profile","UNK_TYPE1","",0x1), 0x80964B00:("D_80964B00","UNK_TYPE1","",0x1), 0x80964B0C:("D_80964B0C","UNK_TYPE4","",0x4), 0x80964B18:("D_80964B18","UNK_TYPE4","",0x4), @@ -8504,14 +8504,14 @@ 0x80964E00:("jtbl_80964E00","UNK_PTR","",0x4), 0x80964F10:("jtbl_80964F10","UNK_PTR","",0x4), 0x80965008:("D_80965008","f32","",0x4), - 0x80965B00:("En_Stream_InitVars","UNK_TYPE1","",0x1), + 0x80965B00:("En_Stream_Profile","UNK_TYPE1","",0x1), 0x80965B20:("D_80965B20","UNK_TYPE1","",0x1), 0x80965B30:("D_80965B30","f32","",0x4), - 0x80966320:("En_Mm_InitVars","UNK_TYPE1","",0x1), + 0x80966320:("En_Mm_Profile","UNK_TYPE1","",0x1), 0x80966340:("D_80966340","UNK_TYPE1","",0x1), 0x8096636C:("D_8096636C","UNK_TYPE1","",0x1), 0x80966380:("D_80966380","f32","",0x4), - 0x809677A0:("En_Weather_Tag_InitVars","UNK_TYPE1","",0x1), + 0x809677A0:("En_Weather_Tag_Profile","UNK_TYPE1","",0x1), 0x809677C0:("jtbl_809677C0","UNK_PTR","",0x4), 0x809677E0:("D_809677E0","f32","",0x4), 0x809677E4:("D_809677E4","f32","",0x4), @@ -8520,13 +8520,13 @@ 0x809677F0:("D_809677F0","f32","",0x4), 0x809677F4:("D_809677F4","f32","",0x4), 0x809677F8:("D_809677F8","f32","",0x4), - 0x80968650:("En_Ani_InitVars","UNK_TYPE1","",0x1), + 0x80968650:("En_Ani_Profile","UNK_TYPE1","",0x1), 0x80968670:("D_80968670","UNK_TYPE1","",0x1), 0x8096869C:("D_8096869C","UNK_TYPE1","",0x1), 0x809686A4:("D_809686A4","UNK_TYPE1","",0x1), 0x809686B0:("D_809686B0","UNK_TYPE1","",0x1), 0x809686C0:("D_809686C0","f32","",0x4), - 0x8096AB80:("En_Js_InitVars","UNK_TYPE1","",0x1), + 0x8096AB80:("En_Js_Profile","UNK_TYPE1","",0x1), 0x8096ABA0:("D_8096ABA0","UNK_TYPE1","",0x1), 0x8096ABCC:("D_8096ABCC","UNK_TYPE1","",0x1), 0x8096ABE0:("D_8096ABE0","UNK_TYPE1","",0x1), @@ -8541,14 +8541,14 @@ 0x8096ACC8:("jtbl_8096ACC8","UNK_PTR","",0x4), 0x8096ACF8:("jtbl_8096ACF8","UNK_PTR","",0x4), 0x8096AD3C:("jtbl_8096AD3C","UNK_PTR","",0x4), - 0x8096B290:("En_Okarina_Effect_InitVars","UNK_TYPE1","",0x1), + 0x8096B290:("En_Okarina_Effect_Profile","UNK_TYPE1","",0x1), 0x8096B2B0:("D_8096B2B0","f32","",0x4), 0x8096E910:("sInputDelayTimer","s16","",0x2), 0x8096E914:("sZeldaEffectColorTimer","s16","",0x2), 0x8096E918:("sZeldaEffectColorTargetIndex","s16","",0x2), 0x8096E91C:("sTextAlphaTargetIndex","s16","",0x2), 0x8096E920:("sTextAlphaTimer","s16","",0x2), - 0x8096E924:("En_Mag_InitVars","UNK_TYPE1","",0x1), + 0x8096E924:("En_Mag_Profile","UNK_TYPE1","",0x1), 0x8096E944:("sDisplayEffectPrimRedTargets","s16","[2]",0x4), 0x8096E948:("sDisplayEffectPrimGreenTargets","s16","[2]",0x4), 0x8096E94C:("sDisplayEffectPrimBlueTargets","s16","[2]",0x4), @@ -8566,20 +8566,20 @@ 0x8096E9D0:("sTextAlpha","s16","",0x2), 0x8096E9D4:("sTextAlphaTargets","s16","[2]",0x4), 0x8096E9E0:("jtbl_8096E9E0","UNK_PTR","",0x4), - 0x8096F090:("Elf_Msg2_InitVars","UNK_TYPE1","",0x1), + 0x8096F090:("Elf_Msg2_Profile","UNK_TYPE1","",0x1), 0x8096F0B0:("D_8096F0B0","UNK_TYPE1","",0x1), 0x8096F0C0:("D_8096F0C0","char","[]",0x1), 0x8096F0C8:("D_8096F0C8","char","[]",0x1), 0x8096F0D4:("D_8096F0D4","char","[]",0x1), 0x8096F510:("D_8096F510","UNK_TYPE1","",0x1), 0x8096F514:("D_8096F514","UNK_TYPE4","",0x4), - 0x8096F520:("Bg_F40_Swlift_InitVars","UNK_TYPE1","",0x1), + 0x8096F520:("Bg_F40_Swlift_Profile","UNK_TYPE1","",0x1), 0x8096F540:("D_8096F540","UNK_TYPE1","",0x1), 0x8096F550:("D_8096F550","f32","",0x4), 0x8096F554:("D_8096F554","f32","",0x4), 0x8096F5D0:("D_8096F5D0","UNK_TYPE1","",0x1), 0x80971D80:("D_80971D80","UNK_TYPE1","",0x1), - 0x80971DAC:("En_Kakasi_InitVars","UNK_TYPE1","",0x1), + 0x80971DAC:("En_Kakasi_Profile","UNK_TYPE1","",0x1), 0x80971DCC:("D_80971DCC","UNK_TYPE4","",0x4), 0x80971E38:("D_80971E38","UNK_TYPE4","",0x4), 0x80971EEC:("D_80971EEC","UNK_TYPE4","",0x4), @@ -8594,8 +8594,8 @@ 0x80972088:("jtbl_80972088","UNK_PTR","",0x4), 0x809720C4:("D_809720C4","f32","",0x4), 0x809720C8:("D_809720C8","f32","",0x4), - 0x80972630:("Obj_Makeoshihiki_InitVars","UNK_TYPE1","",0x1), - 0x80972D80:("Oceff_Spot_InitVars","UNK_TYPE1","",0x1), + 0x80972630:("Obj_Makeoshihiki_Profile","UNK_TYPE1","",0x1), + 0x80972D80:("Oceff_Spot_Profile","UNK_TYPE1","",0x1), 0x80972DA0:("D_80972DA0","UNK_TYPE1","",0x1), 0x809731A0:("D_809731A0","UNK_TYPE1","",0x1), 0x80973350:("D_80973350","UNK_TYPE1","",0x1), @@ -8609,15 +8609,15 @@ 0x80973494:("D_80973494","f32","",0x4), 0x80973498:("D_80973498","f32","",0x4), 0x8097349C:("D_8097349C","f32","",0x4), - 0x809735E0:("En_Torch_InitVars","UNK_TYPE1","",0x1), + 0x809735E0:("En_Torch_Profile","UNK_TYPE1","",0x1), 0x80973600:("D_80973600","UNK_TYPE1","",0x1), - 0x80973B80:("Shot_Sun_InitVars","UNK_TYPE1","",0x1), + 0x80973B80:("Shot_Sun_Profile","UNK_TYPE1","",0x1), 0x80973BA0:("D_80973BA0","UNK_TYPE1","",0x1), 0x80973BD0:("D_80973BD0","f32","",0x4), 0x80973BD4:("D_80973BD4","f32","",0x4), 0x80973BD8:("D_80973BD8","f32","",0x4), - 0x80973E90:("Obj_Roomtimer_InitVars","UNK_TYPE1","",0x1), - 0x80976010:("En_Ssh_InitVars","UNK_TYPE1","",0x1), + 0x80973E90:("Obj_Roomtimer_Profile","UNK_TYPE1","",0x1), + 0x80976010:("En_Ssh_Profile","UNK_TYPE1","",0x1), 0x80976030:("D_80976030","UNK_TYPE1","",0x1), 0x8097605C:("D_8097605C","UNK_PTR","",0x4), 0x80976068:("D_80976068","UNK_TYPE1","",0x1), @@ -8643,7 +8643,7 @@ 0x809761A0:("D_809761A0","f32","",0x4), 0x809761A4:("D_809761A4","f32","",0x4), 0x809761A8:("jtbl_809761A8","UNK_PTR","",0x4), - 0x80976980:("Oceff_Wipe_InitVars","UNK_TYPE1","",0x1), + 0x80976980:("Oceff_Wipe_Profile","UNK_TYPE1","",0x1), 0x809769A0:("D_809769A0","UNK_TYPE1","",0x1), 0x80976DA0:("D_80976DA0","UNK_TYPE1","",0x1), 0x80976FA0:("D_80976FA0","UNK_TYPE1","",0x1), @@ -8652,7 +8652,7 @@ 0x80977160:("D_80977160","UNK_TYPE1","",0x1), 0x80977174:("D_80977174","UNK_TYPE1","",0x1), 0x80977180:("D_80977180","f32","",0x4), - 0x80977910:("Effect_Ss_Dust_InitVars","UNK_TYPE1","",0x1), + 0x80977910:("Effect_Ss_Dust_Profile","UNK_TYPE1","",0x1), 0x80977918:("effectDustUpdateFuncs","EffectSsUpdateFunc","[2]",0x8), 0x80977920:("effectDustTextureAddrs","UNK_TYPE1","",0x1), 0x80977940:("D_80977940","f32","",0x4), @@ -8664,7 +8664,7 @@ 0x80977958:("D_80977958","f32","",0x4), 0x8097795C:("D_8097795C","f32","",0x4), 0x80977960:("D_80977960","f32","",0x4), - 0x80977FC0:("Effect_Ss_Kirakira_InitVars","UNK_TYPE1","",0x1), + 0x80977FC0:("Effect_Ss_Kirakira_Profile","UNK_TYPE1","",0x1), 0x80977FD0:("D_80977FD0","f32","",0x4), 0x80977FD4:("D_80977FD4","f32","",0x4), 0x80977FD8:("D_80977FD8","f32","",0x4), @@ -8673,7 +8673,7 @@ 0x80977FE4:("D_80977FE4","f32","",0x4), 0x80977FE8:("D_80977FE8","f32","",0x4), 0x80977FEC:("D_80977FEC","f32","",0x4), - 0x809787F0:("Effect_Ss_Bomb2_InitVars","UNK_TYPE1","",0x1), + 0x809787F0:("Effect_Ss_Bomb2_Profile","UNK_TYPE1","",0x1), 0x809787F8:("D_809787F8","UNK_TYPE1","",0x1), 0x80978800:("D_80978800","UNK_TYPE1","",0x1), 0x80978820:("D_80978820","UNK_TYPE1","",0x1), @@ -8682,26 +8682,26 @@ 0x80978848:("D_80978848","f32","",0x4), 0x8097884C:("D_8097884C","f32","",0x4), 0x80978850:("D_80978850","f32","",0x4), - 0x80978BD0:("Effect_Ss_Blast_InitVars","UNK_TYPE1","",0x1), + 0x80978BD0:("Effect_Ss_Blast_Profile","UNK_TYPE1","",0x1), 0x80978BE0:("D_80978BE0","f32","",0x4), - 0x80979130:("Effect_Ss_G_Spk_InitVars","UNK_TYPE1","",0x1), + 0x80979130:("Effect_Ss_G_Spk_Profile","UNK_TYPE1","",0x1), 0x80979138:("D_80979138","UNK_TYPE1","",0x1), 0x80979150:("D_80979150","f32","",0x4), - 0x80979560:("Effect_Ss_D_Fire_InitVars","UNK_TYPE1","",0x1), + 0x80979560:("Effect_Ss_D_Fire_Profile","UNK_TYPE1","",0x1), 0x80979568:("D_80979568","UNK_TYPE1","",0x1), - 0x80979AB0:("Effect_Ss_Bubble_InitVars","UNK_TYPE1","",0x8), + 0x80979AB0:("Effect_Ss_Bubble_Profile","UNK_TYPE1","",0x8), 0x80979AB8:("D_80979AB8","f32","[3]",0xC), 0x80979AD0:("D_80979AD0","f32","",0x4), 0x80979AD4:("D_80979AD4","f32","",0x4), - 0x80979FF0:("Effect_Ss_G_Ripple_InitVars","UNK_TYPE1","",0x1), + 0x80979FF0:("Effect_Ss_G_Ripple_Profile","UNK_TYPE1","",0x1), 0x8097A000:("D_8097A000","f32","",0x4), - 0x8097A3E0:("Effect_Ss_G_Splash_InitVars","UNK_TYPE1","",0x1), + 0x8097A3E0:("Effect_Ss_G_Splash_Profile","UNK_TYPE1","",0x1), 0x8097A3E8:("D_8097A3E8","UNK_TYPE1","",0x1), 0x8097A410:("D_8097A410","f32","",0x4), - 0x8097A610:("Effect_Ss_G_Fire_InitVars","UNK_TYPE1","",0x1), + 0x8097A610:("Effect_Ss_G_Fire_Profile","UNK_TYPE1","",0x1), 0x8097A618:("D_8097A618","UNK_TYPE4","",0x4), 0x8097AC80:("D_8097AC80","UNK_TYPE4","",0x4), - 0x8097ACA0:("Effect_Ss_Lightning_InitVars","UNK_TYPE1","",0x1), + 0x8097ACA0:("Effect_Ss_Lightning_Profile","UNK_TYPE1","",0x1), 0x8097ACA8:("D_8097ACA8","UNK_TYPE4","",0x4), 0x8097ACB0:("D_8097ACB0","f32","",0x4), 0x8097ACB4:("D_8097ACB4","f32","",0x4), @@ -8710,17 +8710,17 @@ 0x8097ACC0:("D_8097ACC0","f32","",0x4), 0x8097B1E0:("D_8097B1E0","UNK_TYPE1","",0x1), 0x8097B1F0:("D_8097B1F0","UNK_TYPE1","",0x1), - 0x8097B200:("Effect_Ss_Dt_Bubble_InitVars","UNK_TYPE1","",0x1), + 0x8097B200:("Effect_Ss_Dt_Bubble_Profile","UNK_TYPE1","",0x1), 0x8097B210:("D_8097B210","f32","",0x4), - 0x8097B790:("Effect_Ss_Hahen_InitVars","UNK_TYPE1","",0x1), + 0x8097B790:("Effect_Ss_Hahen_Profile","UNK_TYPE1","",0x1), 0x8097B7A0:("D_8097B7A0","UNK_TYPE4","",0x4), # float but gnu assembler doesn't convert it properly 0x8097B7A4:("D_8097B7A4","f32","",0x4), 0x8097B7A8:("D_8097B7A8","f32","",0x4), 0x8097B7AC:("D_8097B7AC","f32","",0x4), - 0x8097BA70:("Effect_Ss_Stick_InitVars","UNK_TYPE1","",0x1), + 0x8097BA70:("Effect_Ss_Stick_Profile","UNK_TYPE1","",0x1), 0x8097BA80:("D_8097BA80","f32","",0x4), 0x8097BA84:("D_8097BA84","f32","",0x4), - 0x8097C080:("Effect_Ss_Sibuki_InitVars","UNK_TYPE1","",0x1), + 0x8097C080:("Effect_Ss_Sibuki_Profile","UNK_TYPE1","",0x1), 0x8097C090:("D_8097C090","f32","",0x4), 0x8097C094:("D_8097C094","f32","",0x4), 0x8097C098:("D_8097C098","f32","",0x4), @@ -8728,25 +8728,25 @@ 0x8097C0A8:("D_8097C0A8","f32","",0x4), 0x8097C0AC:("D_8097C0AC","f32","",0x4), 0x8097C0B0:("D_8097C0B0","f32","",0x4), - 0x8097C3D0:("Effect_Ss_Stone1_InitVars","UNK_TYPE1","",0x1), + 0x8097C3D0:("Effect_Ss_Stone1_Profile","UNK_TYPE1","",0x1), 0x8097C3D8:("D_8097C3D8","UNK_TYPE4","",0x4), 0x8097C440:("D_8097C440","f32","",0x4), 0x8097C880:("D_8097C880","UNK_TYPE1","",0x1), 0x8097C8B0:("D_8097C8B0","UNK_TYPE1","",0x1), - 0x8097C930:("Effect_Ss_Hitmark_InitVars","UNK_TYPE1","",0x1), - 0x8097CEC0:("Effect_Ss_Fhg_Flash_InitVars","UNK_TYPE1","",0x1), + 0x8097C930:("Effect_Ss_Hitmark_Profile","UNK_TYPE1","",0x1), + 0x8097CEC0:("Effect_Ss_Fhg_Flash_Profile","UNK_TYPE1","",0x1), 0x8097CEC8:("D_8097CEC8","UNK_TYPE4","",0x4), 0x8097CEE0:("D_8097CEE0","UNK_TYPE1","",0x1), 0x8097CF20:("D_8097CF20","UNK_TYPE1","",0x1), 0x8097CF98:("D_8097CF98","UNK_TYPE1","",0x1), 0x8097D3A0:("D_8097D3A0","f32","",0x4), 0x8097D3A4:("D_8097D3A4","f32","",0x4), - 0x8097D7F0:("Effect_Ss_K_Fire_InitVars","UNK_TYPE1","",0x1), + 0x8097D7F0:("Effect_Ss_K_Fire_Profile","UNK_TYPE1","",0x1), 0x8097D800:("D_8097D800","f32","",0x4), 0x8097D804:("D_8097D804","f32","",0x4), - 0x8097DC40:("Effect_Ss_Solder_Srch_Ball_InitVars","UNK_TYPE1","",0x1), + 0x8097DC40:("Effect_Ss_Solder_Srch_Ball_Profile","UNK_TYPE1","",0x1), 0x8097DC50:("D_8097DC50","f32","",0x4), - 0x8097EAD0:("Effect_Ss_Kakera_InitVars","UNK_TYPE1","",0x1), + 0x8097EAD0:("Effect_Ss_Kakera_Profile","UNK_TYPE1","",0x1), 0x8097EAD8:("D_8097EAD8","UNK_TYPE1","",0x1), 0x8097EAE4:("D_8097EAE4","UNK_TYPE1","",0x1), 0x8097EB0C:("D_8097EB0C","UNK_TYPE1","",0x1), @@ -8761,34 +8761,34 @@ 0x8097EB90:("D_8097EB90","f32","",0x4), 0x8097EB94:("D_8097EB94","f32","",0x4), 0x8097EB98:("D_8097EB98","f32","",0x4), - 0x8097F070:("Effect_Ss_Ice_Piece_InitVars","UNK_TYPE1","",0x1), + 0x8097F070:("Effect_Ss_Ice_Piece_Profile","UNK_TYPE1","",0x1), 0x8097F080:("D_8097F080","f32","",0x4), 0x8097F084:("D_8097F084","f32","",0x4), - 0x8097F810:("Effect_Ss_En_Ice_InitVars","UNK_TYPE1","",0x1), + 0x8097F810:("Effect_Ss_En_Ice_Profile","UNK_TYPE1","",0x1), 0x8097F820:("D_8097F820","f32","",0x4), 0x8097F824:("D_8097F824","f32","",0x4), - 0x8097FED0:("Effect_Ss_Fire_Tail_InitVars","UNK_TYPE1","",0x1), + 0x8097FED0:("Effect_Ss_Fire_Tail_Profile","UNK_TYPE1","",0x1), 0x8097FEE0:("D_8097FEE0","f32","",0x4), 0x8097FEE4:("D_8097FEE4","f32","",0x4), 0x8097FEE8:("D_8097FEE8","f32","",0x4), 0x8097FEEC:("D_8097FEEC","f32","",0x4), 0x8097FEF0:("D_8097FEF0","f32","",0x4), 0x8097FEF4:("D_8097FEF4","f32","",0x4), - 0x80980570:("Effect_Ss_En_Fire_InitVars","UNK_TYPE1","",0x1), + 0x80980570:("Effect_Ss_En_Fire_Profile","UNK_TYPE1","",0x1), 0x80980580:("D_80980580","f32","",0x4), 0x80980584:("D_80980584","f32","",0x4), 0x809808E0:("D_809808E0","UNK_TYPE1","",0x1), - 0x809808E8:("Effect_Ss_Extra_InitVars","UNK_TYPE1","",0x1), + 0x809808E8:("Effect_Ss_Extra_Profile","UNK_TYPE1","",0x1), 0x809808F0:("D_809808F0","UNK_TYPE1","",0x1), - 0x80980CD0:("Effect_Ss_Dead_Db_InitVars","UNK_TYPE1","",0x1), + 0x80980CD0:("Effect_Ss_Dead_Db_Profile","UNK_TYPE1","",0x1), 0x80980CD8:("D_80980CD8","UNK_TYPE1","",0x1), 0x80980D00:("D_80980D00","f32","",0x4), - 0x80981270:("Effect_Ss_Dead_Dd_InitVars","UNK_TYPE1","",0x1), + 0x80981270:("Effect_Ss_Dead_Dd_Profile","UNK_TYPE1","",0x1), 0x80981280:("D_80981280","f32","",0x4), - 0x80981700:("Effect_Ss_Dead_Ds_InitVars","UNK_TYPE1","",0x1), + 0x80981700:("Effect_Ss_Dead_Ds_Profile","UNK_TYPE1","",0x1), 0x80981710:("D_80981710","f32","",0x4), 0x80981714:("D_80981714","f32","",0x4), - 0x80981F70:("Oceff_Storm_InitVars","UNK_TYPE1","",0x1), + 0x80981F70:("Oceff_Storm_Profile","UNK_TYPE1","",0x1), 0x80981F90:("D_80981F90","UNK_TYPE1","",0x1), 0x80982F90:("D_80982F90","UNK_TYPE1","",0x1), 0x80983038:("D_80983038","UNK_TYPE1","",0x1), @@ -8813,8 +8813,8 @@ 0x809833A8:("D_809833A8","f32","",0x4), 0x809833AC:("D_809833AC","f32","",0x4), 0x809833B0:("D_809833B0","f32","",0x4), - 0x80983890:("Obj_Demo_InitVars","UNK_TYPE1","",0x1), - 0x809857C0:("En_Minislime_InitVars","UNK_TYPE1","",0x1), + 0x80983890:("Obj_Demo_Profile","UNK_TYPE1","",0x1), + 0x809857C0:("En_Minislime_Profile","UNK_TYPE1","",0x1), 0x809857E0:("D_809857E0","UNK_TYPE1","",0x1), 0x8098580C:("D_8098580C","UNK_TYPE1","",0x1), 0x80985814:("D_80985814","UNK_TYPE1","",0x1), @@ -8868,10 +8868,10 @@ 0x809858FC:("D_809858FC","f32","",0x4), 0x80985900:("D_80985900","f32","",0x4), 0x80985904:("D_80985904","f32","",0x4), - 0x809861D0:("En_Nutsball_InitVars","UNK_TYPE1","",0x1), + 0x809861D0:("En_Nutsball_Profile","UNK_TYPE1","",0x1), 0x809861F0:("D_809861F0","UNK_TYPE1","",0x1), 0x80986220:("D_80986220","f32","",0x4), - 0x80986670:("Oceff_Wipe2_InitVars","UNK_TYPE1","",0x1), + 0x80986670:("Oceff_Wipe2_Profile","UNK_TYPE1","",0x1), 0x80986690:("D_80986690","UNK_TYPE1","",0x1), 0x80986E90:("D_80986E90","UNK_TYPE1","",0x1), 0x80987690:("D_80987690","UNK_TYPE1","",0x1), @@ -8902,7 +8902,7 @@ 0x80987900:("D_80987900","f32","",0x4), 0x80987904:("D_80987904","f32","",0x4), 0x80987908:("D_80987908","f32","",0x4), - 0x80987DF0:("Oceff_Wipe3_InitVars","UNK_TYPE1","",0x1), + 0x80987DF0:("Oceff_Wipe3_Profile","UNK_TYPE1","",0x1), 0x80987E10:("D_80987E10","UNK_TYPE1","",0x1), 0x80988E10:("D_80988E10","UNK_TYPE1","",0x1), 0x80988E2E:("D_80988E2E","UNK_TYPE1","",0x1), @@ -8932,7 +8932,7 @@ 0x80989060:("D_80989060","f32","",0x4), 0x80989064:("D_80989064","f32","",0x4), 0x80989068:("D_80989068","f32","",0x4), - 0x8098C280:("En_Dg_InitVars","UNK_TYPE1","",0x1), + 0x8098C280:("En_Dg_Profile","UNK_TYPE1","",0x1), 0x8098C2A0:("sIsAnyDogHeld","UNK_TYPE1","",0x1), 0x8098C2A4:("sBremenMaskFollower","UNK_TYPE2","",0x2), 0x8098C2A8:("D_8098C2A8","UNK_TYPE2","",0x2), @@ -8956,11 +8956,11 @@ 0x8098C494:("D_8098C494","f32","",0x4), 0x8098C498:("D_8098C498","f32","",0x4), 0x8098C49C:("jtbl_8098C49C","UNK_PTR","",0x4), - 0x8098CD60:("En_Si_InitVars","UNK_TYPE1","",0x1), + 0x8098CD60:("En_Si_Profile","UNK_TYPE1","",0x1), 0x8098CD80:("sSphereInit","UNK_TYPE1","",0x1), 0x8098CDAC:("sColChkInfoInit","UNK_PTR","",0x4), 0x8098CDB8:("sDamageTable","UNK_TYPE1","",0x1), - 0x8098E420:("Obj_Comb_InitVars","UNK_TYPE1","",0x1), + 0x8098E420:("Obj_Comb_Profile","UNK_TYPE1","",0x1), 0x8098E440:("D_8098E440","UNK_TYPE1","",0x1), 0x8098E464:("D_8098E464","UNK_TYPE1","",0x1), 0x8098E474:("D_8098E474","UNK_TYPE1","",0x1), @@ -8976,7 +8976,7 @@ 0x8098E4B4:("D_8098E4B4","f32","",0x4), 0x8098E4B8:("D_8098E4B8","f32","",0x4), 0x8098E4BC:("D_8098E4BC","f32","",0x4), - 0x8098EE40:("Obj_Kibako2_InitVars","UNK_TYPE1","",0x1), + 0x8098EE40:("Obj_Kibako2_Profile","UNK_TYPE1","",0x1), 0x8098EE60:("D_8098EE60","UNK_TYPE1","",0x1), 0x8098EE8C:("D_8098EE8C","UNK_TYPE1","",0x1), 0x8098EEA0:("D_8098EEA0","f32","",0x4), @@ -8985,14 +8985,14 @@ 0x8098EEAC:("D_8098EEAC","f32","",0x4), 0x8098EEB0:("D_8098EEB0","f32","",0x4), 0x8098EEB4:("D_8098EEB4","UNK_TYPE1","",0x1), - 0x8098EFF0:("En_Hs2_InitVars","UNK_TYPE1","",0x1), - 0x8098F720:("Obj_Mure3_InitVars","UNK_TYPE1","",0x1), + 0x8098EFF0:("En_Hs2_Profile","UNK_TYPE1","",0x1), + 0x8098F720:("Obj_Mure3_Profile","UNK_TYPE1","",0x1), 0x8098F740:("D_8098F740","UNK_TYPE1","",0x1), 0x8098F748:("D_8098F748","UNK_TYPE1","",0x1), 0x8098F754:("D_8098F754","UNK_TYPE1","",0x1), 0x8098F760:("D_8098F760","f32","",0x4), 0x8098F764:("D_8098F764","f32","",0x4), - 0x809901A0:("En_Tg_InitVars","UNK_TYPE1","",0x1), + 0x809901A0:("En_Tg_Profile","UNK_TYPE1","",0x1), 0x809901C0:("D_809901C0","UNK_TYPE1","",0x1), 0x809901EC:("D_809901EC","UNK_TYPE1","",0x1), 0x809901F8:("D_809901F8","UNK_TYPE1","",0x1), @@ -9002,7 +9002,7 @@ 0x80990240:("D_80990240","UNK_TYPE4","",0x4), 0x8099024C:("D_8099024C","UNK_TYPE4","",0x4), 0x80990260:("D_80990260","f32","",0x4), - 0x80994150:("En_Wf_InitVars","UNK_TYPE1","",0x1), + 0x80994150:("En_Wf_Profile","UNK_TYPE1","",0x1), 0x80994170:("D_80994170","UNK_TYPE1","",0x1), 0x80994200:("D_80994200","UNK_TYPE1","",0x1), 0x80994210:("D_80994210","UNK_TYPE1","",0x1), @@ -9045,7 +9045,7 @@ 0x80997498:("D_80997498","UNK_TYPE1","",0x1), 0x809974E0:("D_809974E0","UNK_TYPE1","",0x1), 0x809974F0:("D_809974F0","UNK_TYPE1","",0x1), - 0x80997510:("En_Skb_InitVars","UNK_TYPE1","",0x1), + 0x80997510:("En_Skb_Profile","UNK_TYPE1","",0x1), 0x80997530:("D_80997530","UNK_TYPE4","",0x4), 0x8099753C:("D_8099753C","UNK_TYPE4","",0x4), 0x80997548:("D_80997548","UNK_TYPE1","",0x1), @@ -9068,7 +9068,7 @@ 0x809975E8:("jtbl_809975E8","UNK_PTR","",0x4), 0x80997624:("D_80997624","f32","",0x4), 0x80997628:("D_80997628","f32","",0x4), - 0x8099A380:("En_Gs_InitVars","UNK_TYPE1","",0x1), + 0x8099A380:("En_Gs_Profile","UNK_TYPE1","",0x1), 0x8099A3A0:("D_8099A3A0","UNK_TYPE1","",0x1), 0x8099A3CC:("D_8099A3CC","UNK_TYPE1","",0x1), 0x8099A3D8:("D_8099A3D8","UNK_TYPE1","",0x1), @@ -9130,8 +9130,8 @@ 0x8099A578:("D_8099A578","f32","",0x4), 0x8099A57C:("D_8099A57C","f32","",0x4), 0x8099A580:("D_8099A580","f32","",0x4), - 0x8099AAE0:("Obj_Sound_InitVars","UNK_TYPE1","",0x1), - 0x8099C050:("En_Crow_InitVars","UNK_TYPE1","",0x1), + 0x8099AAE0:("Obj_Sound_Profile","UNK_TYPE1","",0x1), + 0x8099C050:("En_Crow_Profile","UNK_TYPE1","",0x1), 0x8099C070:("D_8099C070","UNK_TYPE1","",0x1), 0x8099C094:("D_8099C094","UNK_TYPE1","",0x1), 0x8099C0A0:("D_8099C0A0","UNK_PTR","",0x4), @@ -9152,7 +9152,7 @@ 0x8099C108:("D_8099C108","f32","",0x4), 0x8099C10C:("D_8099C10C","f32","",0x4), 0x8099C110:("D_8099C110","f32","",0x4), - 0x8099D5F0:("En_Cow_InitVars","UNK_TYPE1","",0x1), + 0x8099D5F0:("En_Cow_Profile","UNK_TYPE1","",0x1), 0x8099D610:("D_8099D610","UNK_TYPE1","",0x1), 0x8099D63C:("D_8099D63C","UNK_TYPE1","",0x1), 0x8099D650:("D_8099D650","f32","",0x4), @@ -9160,7 +9160,7 @@ 0x8099D658:("D_8099D658","f32","",0x4), 0x8099D65C:("D_8099D65C","f32","",0x4), 0x8099D660:("D_8099D660","f32","",0x4), - 0x8099DB90:("Oceff_Wipe4_InitVars","UNK_TYPE1","",0x1), + 0x8099DB90:("Oceff_Wipe4_Profile","UNK_TYPE1","",0x1), 0x8099DBB0:("D_8099DBB0","UNK_TYPE1","",0x1), 0x8099E3B0:("D_8099E3B0","UNK_TYPE1","",0x1), 0x8099E3CE:("D_8099E3CE","UNK_TYPE1","",0x1), @@ -9192,7 +9192,7 @@ 0x8099E6A0:("D_8099E6A0","f32","",0x4), 0x8099E6A4:("D_8099E6A4","f32","",0x4), 0x8099E6A8:("D_8099E6A8","f32","",0x4), - 0x8099F490:("En_Zo_InitVars","UNK_TYPE1","",0x1), + 0x8099F490:("En_Zo_Profile","UNK_TYPE1","",0x1), 0x8099F4B0:("D_8099F4B0","UNK_TYPE1","",0x1), 0x8099F4DC:("D_8099F4DC","UNK_TYPE1","",0x1), 0x8099F4E8:("D_8099F4E8","UNK_TYPE1","",0x1), @@ -9213,19 +9213,19 @@ 0x8099F610:("D_8099F610","f32","",0x4), 0x8099F614:("D_8099F614","f32","",0x4), 0x8099F618:("D_8099F618","f32","",0x4), - 0x8099F9E0:("Effect_Ss_Ice_Smoke_InitVars","UNK_TYPE1","",0x1), + 0x8099F9E0:("Effect_Ss_Ice_Smoke_Profile","UNK_TYPE1","",0x1), 0x8099F9F0:("D_8099F9F0","f32","",0x4), - 0x8099FE10:("Obj_Makekinsuta_InitVars","UNK_TYPE1","",0x1), + 0x8099FE10:("Obj_Makekinsuta_Profile","UNK_TYPE1","",0x1), 0x8099FE30:("D_8099FE30","UNK_TYPE1","",0x1), 0x8099FE3C:("D_8099FE3C","UNK_TYPE1","",0x1), 0x8099FE50:("D_8099FE50","UNK_TYPE1","",0x1), - 0x809A0D80:("En_Ge3_InitVars","UNK_TYPE1","",0x1), + 0x809A0D80:("En_Ge3_Profile","UNK_TYPE1","",0x1), 0x809A0DA0:("sCylinderInit","ColliderCylinderInit","",0x2C), 0x809A0DCC:("sAnimations","AnimationHeader*","[9]",0x24), 0x809A0DF0:("sFocusOffset","Vec3f","",0xC), 0x809A0DFC:("sEyeTextures","TexturePtr","[3]",0xC), 0x809A0E10:("jtbl_809A0E10","UNK_PTR","",0x4), - 0x809A1A80:("Obj_Hamishi_InitVars","UNK_TYPE1","",0x1), + 0x809A1A80:("Obj_Hamishi_Profile","UNK_TYPE1","",0x1), 0x809A1AA0:("D_809A1AA0","UNK_TYPE1","",0x1), 0x809A1ACC:("D_809A1ACC","UNK_TYPE1","",0x1), 0x809A1AD4:("D_809A1AD4","UNK_TYPE2","",0x2), @@ -9235,23 +9235,23 @@ 0x809A1B08:("D_809A1B08","f32","",0x4), 0x809A1B0C:("D_809A1B0C","f32","",0x4), 0x809A1B10:("D_809A1B10","f32","",0x4), - 0x809A1F60:("En_Zl4_InitVars","UNK_TYPE1","",0x1), + 0x809A1F60:("En_Zl4_Profile","UNK_TYPE1","",0x1), 0x809A1F80:("sAnimationInfo","UNK_TYPE1","",0x1), 0x809A1F98:("D_809A1F98","UNK_TYPE4","",0x4), 0x809A1FB0:("D_809A1FB0","f32","",0x4), - 0x809A2250:("En_Mm2_InitVars","UNK_TYPE1","",0x1), + 0x809A2250:("En_Mm2_Profile","UNK_TYPE1","",0x1), 0x809A2270:("D_809A2270","UNK_TYPE1","",0x1), 0x809A2670:("D_809A2670","UNK_TYPE1","",0x1), 0x809A2870:("D_809A2870","UNK_TYPE1","",0x1), 0x809A2910:("D_809A2910","UNK_TYPE1","",0x1), 0x809A29D8:("D_809A29D8","UNK_TYPE1","",0x1), - 0x809A3230:("Door_Spiral_InitVars","UNK_TYPE1","",0x1), + 0x809A3230:("Door_Spiral_Profile","UNK_TYPE1","",0x1), 0x809A3250:("D_809A3250","UNK_TYPE1","",0x1), 0x809A32D0:("D_809A32D0","UNK_TYPE1","",0x1), 0x809A32EC:("D_809A32EC","UNK_TYPE2","",0x2), 0x809A3308:("D_809A3308","UNK_TYPE1","",0x1), 0x809A3320:("D_809A3320","f32","",0x4), - 0x809A4030:("Obj_Pzlblock_InitVars","UNK_TYPE1","",0x1), + 0x809A4030:("Obj_Pzlblock_Profile","UNK_TYPE1","",0x1), 0x809A4050:("D_809A4050","UNK_TYPE1","",0x1), 0x809A4058:("D_809A4058","UNK_TYPE1","",0x1), 0x809A4060:("D_809A4060","UNK_TYPE2","",0x2), @@ -9259,7 +9259,7 @@ 0x809A4088:("D_809A4088","UNK_TYPE1","",0x1), 0x809A40A0:("D_809A40A0","f32","",0x4), 0x809A40A4:("D_809A40A4","f32","",0x4), - 0x809A4C90:("Obj_Toge_InitVars","UNK_TYPE1","",0x1), + 0x809A4C90:("Obj_Toge_Profile","UNK_TYPE1","",0x1), 0x809A4CB0:("D_809A4CB0","UNK_TYPE1","",0x1), 0x809A4CDC:("D_809A4CDC","UNK_TYPE1","",0x1), 0x809A4CFC:("D_809A4CFC","UNK_TYPE1","",0x1), @@ -9269,7 +9269,7 @@ 0x809A4D30:("D_809A4D30","f32","",0x4), 0x809A4D34:("D_809A4D34","f32","",0x4), 0x809A4D38:("D_809A4D38","f32","",0x4), - 0x809A5B90:("Obj_Armos_InitVars","UNK_TYPE1","",0x1), + 0x809A5B90:("Obj_Armos_Profile","UNK_TYPE1","",0x1), 0x809A5BB0:("D_809A5BB0","UNK_TYPE1","",0x1), 0x809A5BB8:("D_809A5BB8","UNK_TYPE1","",0x1), 0x809A5BC0:("D_809A5BC0","UNK_TYPE1","",0x1), @@ -9279,7 +9279,7 @@ 0x809A5BEC:("D_809A5BEC","f32","",0x4), 0x809A5BF0:("D_809A5BF0","f32","",0x4), 0x809A5BF4:("D_809A5BF4","f32","",0x4), - 0x809A6150:("Obj_Boyo_InitVars","UNK_TYPE1","",0x1), + 0x809A6150:("Obj_Boyo_Profile","UNK_TYPE1","",0x1), 0x809A6170:("sCylinderInit","ColliderCylinderInit","",0x1), 0x809A619C:("sInitChain","InitChainEntry","[]",0x4), 0x809A61AC:("gCollisionHandling","ObjBoyoUnkStruct","[]",0x20), @@ -9295,7 +9295,7 @@ 0x809A8CAC:("sParentShadowBodyParts","UNK_TYPE1","",0x1), 0x809A8CC4:("sShadowSizes","UNK_TYPE1","",0x1), 0x809A8CDC:("sDamageTable","UNK_TYPE1","",0x1), - 0x809A8CFC:("En_Grasshopper_InitVars","UNK_TYPE1","",0x1), + 0x809A8CFC:("En_Grasshopper_Profile","UNK_TYPE1","",0x1), 0x809A8D1C:("sJntSphElementsInit","UNK_TYPE1","",0x1), 0x809A8D64:("sJntSphInit","UNK_TYPE1","",0x1), 0x809A8D74:("sAnimations","UNK_TYPE1","",0x1), @@ -9333,7 +9333,7 @@ 0x809AA9F0:("D_809AA9F0","UNK_TYPE1","",0x1), 0x809AAA68:("D_809AAA68","UNK_TYPE1","",0x1), 0x809AAAE0:("D_809AAAE0","UNK_TYPE1","",0x1), - 0x809AAB00:("Obj_Grass_InitVars","UNK_TYPE1","",0x1), + 0x809AAB00:("Obj_Grass_Profile","UNK_TYPE1","",0x1), 0x809AAB20:("D_809AAB20","UNK_TYPE1","",0x1), 0x809AAB4C:("D_809AAB4C","UNK_TYPE4","",0x4), 0x809AAB7C:("D_809AAB7C","UNK_TYPE1","",0x1), @@ -9358,7 +9358,7 @@ 0x809AADB0:("D_809AADB0","UNK_TYPE1","",0x1), 0x809AADC0:("D_809AADC0","UNK_TYPE1","",0x1), 0x809AAE10:("D_809AAE10","UNK_TYPE1","",0x1), - 0x809ABBB0:("Obj_Grass_Carry_InitVars","UNK_TYPE1","",0x1), + 0x809ABBB0:("Obj_Grass_Carry_Profile","UNK_TYPE1","",0x1), 0x809ABBD0:("D_809ABBD0","UNK_TYPE1","",0x1), 0x809ABBFC:("D_809ABBFC","UNK_TYPE2","",0x2), 0x809ABC00:("D_809ABC00","UNK_TYPE2","",0x2), @@ -9374,7 +9374,7 @@ 0x809ABC70:("D_809ABC70","f32","",0x4), 0x809ABC74:("D_809ABC74","f32","",0x4), 0x809ABC78:("D_809ABC78","f32","",0x4), - 0x809AC340:("Obj_Grass_Unit_InitVars","UNK_TYPE1","",0x1), + 0x809AC340:("Obj_Grass_Unit_Profile","UNK_TYPE1","",0x1), 0x809AC360:("D_809AC360","UNK_TYPE1","",0x1), 0x809AC3A8:("D_809AC3A8","UNK_TYPE1","",0x1), 0x809AC408:("D_809AC408","UNK_TYPE1","",0x1), @@ -9382,7 +9382,7 @@ 0x809AC41C:("D_809AC41C","UNK_TYPE4","",0x4), 0x809AC420:("D_809AC420","UNK_TYPE4","",0x4), 0x809AC424:("D_809AC424","UNK_TYPE4","",0x4), - 0x809ACC40:("Bg_Fire_Wall_InitVars","UNK_TYPE1","",0x1), + 0x809ACC40:("Bg_Fire_Wall_Profile","UNK_TYPE1","",0x1), 0x809ACC60:("D_809ACC60","UNK_TYPE1","",0x1), 0x809ACC8C:("D_809ACC8C","UNK_TYPE1","",0x1), 0x809ACC94:("D_809ACC94","UNK_TYPE1","",0x1), @@ -9391,9 +9391,9 @@ 0x809ACCC8:("D_809ACCC8","f32","",0x4), 0x809ACCCC:("D_809ACCCC","f32","",0x4), 0x809ACCD0:("D_809ACCD0","f32","",0x4), - 0x809ACED0:("En_Bu_InitVars","UNK_TYPE1","",0x1), + 0x809ACED0:("En_Bu_Profile","UNK_TYPE1","",0x1), 0x809ACEF0:("D_809ACEF0","f32","",0x4), - 0x809AD7F0:("En_Encount3_InitVars","UNK_TYPE1","",0x1), + 0x809AD7F0:("En_Encount3_Profile","UNK_TYPE1","",0x1), 0x809AD810:("D_809AD810","UNK_TYPE4","",0x4), 0x809AD820:("D_809AD820","f32","",0x4), 0x809AD824:("D_809AD824","f32","",0x4), @@ -9404,7 +9404,7 @@ 0x809B0F40:("sIsAttacking","s32","",0x4), 0x809B0F44:("sIsPlayerLockedOn","s32","",0x4), 0x809B0F48:("sDamageTable","DamageTable","",0x20), - 0x809B0F68:("En_Jso_InitVars","ActorInit","",0x20), + 0x809B0F68:("En_Jso_Profile","ActorInit","",0x20), 0x809B0F88:("sCylinderInit","ColliderCylinderInit","",0x2C), 0x809B0FB4:("sQuadInit","ColliderQuadInit","",0x50), 0x809B1004:("sTextIds","u16","[4]",0x8), @@ -9435,7 +9435,7 @@ 0x809B11A8:("D_809B11A8","f32","",0x4), 0x809B11AC:("D_809B11AC","f32","",0x4), 0x809B11B0:("D_809B11B0","f32","",0x4), - 0x809B1FA0:("Obj_Chikuwa_InitVars","UNK_TYPE1","",0x1), + 0x809B1FA0:("Obj_Chikuwa_Profile","UNK_TYPE1","",0x1), 0x809B1FC0:("D_809B1FC0","UNK_TYPE1","",0x1), 0x809B1FD0:("D_809B1FD0","UNK_TYPE1","",0x1), 0x809B1FDC:("D_809B1FDC","UNK_TYPE1","",0x1), @@ -9470,7 +9470,7 @@ 0x809BDC64:("sHeadColliderCylinderInit","UNK_TYPE1","",0x1), 0x809BDC90:("sDustPrimColor","UNK_TYPE1","",0x1), 0x809BDC94:("sDustEnvColor","UNK_TYPE1","",0x1), - 0x809BDC98:("En_Knight_InitVars","UNK_TYPE1","",0x1), + 0x809BDC98:("En_Knight_Profile","UNK_TYPE1","",0x1), 0x809BDCB8:("sKnightWalkSfx","UNK_TYPE1","",0x1), 0x809BDCC0:("sKnightPauseSfx","UNK_TYPE1","",0x1), 0x809BDCC8:("sKnightLaughSfx","UNK_TYPE1","",0x1), @@ -9628,11 +9628,11 @@ 0x809BEFE8:("D_809BEFE8","UNK_TYPE1","",0x1), 0x809C014A:("D_809C014A","UNK_TYPE1","",0x1), 0x809C0758:("D_809C0758","UNK_TYPE1","",0x1), - 0x809C0FE0:("En_Warp_tag_InitVars","UNK_TYPE1","",0x1), + 0x809C0FE0:("En_Warp_tag_Profile","UNK_TYPE1","",0x1), 0x809C1000:("D_809C1000","UNK_TYPE1","",0x1), 0x809C1008:("D_809C1008","UNK_TYPE1","",0x1), 0x809C1010:("D_809C1010","f32","",0x4), - 0x809C3770:("En_Aob_01_InitVars","UNK_TYPE1","",0x1), + 0x809C3770:("En_Aob_01_Profile","UNK_TYPE1","",0x1), 0x809C3790:("sAnimationInfo","UNK_TYPE4","",0x4), 0x809C3820:("D_809C3820","UNK_TYPE1","",0x1), 0x809C384C:("sDogInfo","UNK_TYPE4","",0x4), @@ -9650,15 +9650,15 @@ 0x809C3A54:("D_809C3A54","f32","",0x4), 0x809C3A58:("D_809C3A58","f32","",0x4), 0x809C3A5C:("D_809C3A5C","f32","",0x4), - 0x809C3DC0:("En_Boj_01_InitVars","UNK_TYPE1","",0x1), - 0x809C3E50:("En_Boj_02_InitVars","UNK_TYPE1","",0x1), - 0x809C3EE0:("En_Boj_03_InitVars","UNK_TYPE1","",0x1), - 0x809C46B0:("En_Encount4_InitVars","UNK_TYPE1","",0x1), + 0x809C3DC0:("En_Boj_01_Profile","UNK_TYPE1","",0x1), + 0x809C3E50:("En_Boj_02_Profile","UNK_TYPE1","",0x1), + 0x809C3EE0:("En_Boj_03_Profile","UNK_TYPE1","",0x1), + 0x809C46B0:("En_Encount4_Profile","UNK_TYPE1","",0x1), 0x809C46D0:("D_809C46D0","UNK_TYPE1","",0x1), 0x809C46DC:("D_809C46DC","UNK_TYPE1","",0x1), 0x809C6100:("D_809C6100","UNK_TYPE4","",0x4), 0x809C6104:("D_809C6104","UNK_TYPE4","",0x4), - 0x809C6108:("En_Bom_Bowl_Man_InitVars","UNK_TYPE1","",0x1), + 0x809C6108:("En_Bom_Bowl_Man_Profile","UNK_TYPE1","",0x1), 0x809C6128:("D_809C6128","UNK_TYPE1","",0x1), 0x809C6178:("sAnimationModes","UNK_TYPE1","",0x1), 0x809C618C:("D_809C618C","UNK_TYPE2","",0x2), @@ -9677,7 +9677,7 @@ 0x809C6260:("D_809C6260","f32","",0x4), 0x809C6264:("D_809C6264","f32","",0x4), 0x809C6268:("D_809C6268","f32","",0x4), - 0x809C9160:("En_Syateki_Man_InitVars","UNK_TYPE1","",0x1), + 0x809C9160:("En_Syateki_Man_Profile","UNK_TYPE1","",0x1), 0x809C9180:("sAnimations","UNK_TYPE1","",0x1), 0x809C91C8:("sGuayFlagsPerWave","UNK_TYPE1","",0x1), 0x809C91D0:("sNormalSwampTargetActorList","UNK_TYPE1","",0x1), @@ -9703,7 +9703,7 @@ 0x809C9620:("D_809C9620","f32","",0x4), 0x809C9624:("D_809C9624","f32","",0x4), 0x809CA2B0:("D_809CA2B0","UNK_TYPE1","",0x1), - 0x809CA2DC:("Bg_Icicle_InitVars","UNK_TYPE1","",0x1), + 0x809CA2DC:("Bg_Icicle_Profile","UNK_TYPE1","",0x1), 0x809CA2FC:("D_809CA2FC","UNK_TYPE1","",0x1), 0x809CA30C:("D_809CA30C","UNK_TYPE1","",0x1), 0x809CA318:("D_809CA318","UNK_TYPE1","",0x1), @@ -9711,7 +9711,7 @@ 0x809CA320:("D_809CA320","f32","",0x4), 0x809CA324:("D_809CA324","f32","",0x4), 0x809CB050:("sZeroVec","UNK_TYPE1","",0x1), - 0x809CB05C:("En_Syateki_Crow_InitVars","UNK_TYPE1","",0x1), + 0x809CB05C:("En_Syateki_Crow_Profile","UNK_TYPE1","",0x1), 0x809CB07C:("D_809CB07C","UNK_TYPE1","",0x1), 0x809CB0A0:("D_809CB0A0","UNK_TYPE1","",0x1), 0x809CB0AC:("D_809CB0AC","UNK_PTR","",0x4), @@ -9723,8 +9723,8 @@ 0x809CB0F4:("D_809CB0F4","f32","",0x4), 0x809CB0F8:("D_809CB0F8","f32","",0x4), 0x809CB0FC:("D_809CB0FC","f32","",0x4), - 0x809CB240:("En_Boj_04_InitVars","UNK_TYPE1","",0x1), - 0x809CBEE0:("En_Cne_01_InitVars","UNK_TYPE1","",0x1), + 0x809CB240:("En_Boj_04_Profile","UNK_TYPE1","",0x1), + 0x809CBEE0:("En_Cne_01_Profile","UNK_TYPE1","",0x1), 0x809CBF00:("D_809CBF00","UNK_TYPE1","",0x1), 0x809CBF2C:("D_809CBF2C","UNK_TYPE1","",0x1), 0x809CBF38:("D_809CBF38","UNK_TYPE1","",0x1), @@ -9733,7 +9733,7 @@ 0x809CBF84:("D_809CBF84","UNK_TYPE4","",0x4), 0x809CBF90:("D_809CBF90","f32","",0x4), 0x809CBF94:("D_809CBF94","f32","",0x4), - 0x809CCC60:("En_Bba_01_InitVars","UNK_TYPE1","",0x1), + 0x809CCC60:("En_Bba_01_Profile","UNK_TYPE1","",0x1), 0x809CCC80:("D_809CCC80","UNK_TYPE1","",0x1), 0x809CCCAC:("D_809CCCAC","UNK_TYPE1","",0x1), 0x809CCCB8:("D_809CCCB8","UNK_TYPE1","",0x1), @@ -9742,7 +9742,7 @@ 0x809CCD04:("D_809CCD04","UNK_TYPE4","",0x4), 0x809CCD10:("D_809CCD10","f32","",0x4), 0x809CCD14:("D_809CCD14","f32","",0x4), - 0x809CDC30:("En_Bji_01_InitVars","ActorInit","",0x20), + 0x809CDC30:("En_Bji_01_Profile","ActorInit","",0x20), 0x809CDC50:("D_809CDC50","UNK_TYPE1","",0x1), 0x809CDC7C:("sAnimationInfo","UNK_TYPE1","",0x1), 0x809CDCBC:("D_809CDCBC","UNK_TYPE1","",0x1), @@ -9751,7 +9751,7 @@ 0x809CDCE0:("D_809CDCE0","f32","",0x4), 0x809CDCE4:("jtbl_809CDCE4","UNK_PTR","",0x4), 0x809CDD58:("D_809CDD58","f32","",0x4), - 0x809CF060:("Bg_Spdweb_InitVars","UNK_TYPE1","",0x1), + 0x809CF060:("Bg_Spdweb_Profile","UNK_TYPE1","",0x1), 0x809CF080:("D_809CF080","UNK_TYPE1","",0x1), 0x809CF0F8:("D_809CF0F8","UNK_TYPE1","",0x1), 0x809CF108:("D_809CF108","UNK_TYPE1","",0x1), @@ -9769,7 +9769,7 @@ 0x809CF23C:("D_809CF23C","f32","",0x4), 0x809CF240:("D_809CF240","f32","",0x4), 0x809CF244:("D_809CF244","f32","",0x4), - 0x809D0190:("En_Mt_tag_InitVars","UNK_TYPE1","",0x1), + 0x809D0190:("En_Mt_tag_Profile","UNK_TYPE1","",0x1), 0x809D01B0:("D_809D01B0","UNK_TYPE1","",0x1), 0x809D01FC:("D_809D01FC","UNK_TYPE4","",0x4), 0x809D0430:("D_809D0430","f32","",0x4), @@ -9790,7 +9790,7 @@ 0x809D7C64:("sKickAndShieldBashColliderJntSphInit","ColliderJntSphInit","",0x10), 0x809D7C74:("sBugACColliderCylinderInit","ColliderCylinderInit","",0x2C), 0x809D7CA0:("sBugATColliderCylinderInit","ColliderCylinderInit","",0x2C), - 0x809D7CCC:("Boss_01_InitVars","ActorInit","",0x20), + 0x809D7CCC:("Boss_01_Profile","ActorInit","",0x20), 0x809D7CEC:("sDustPrimColor","Color_RGBA8","",0x4), 0x809D7CF0:("sDustEnvColor","Color_RGBA8","",0x4), 0x809D7CF4:("sWaitAnimations","AnimationHeader*","[12]",0x30), @@ -9890,7 +9890,7 @@ 0x809D8A58:("sOdolwaEffects","OdolwaEffect","[100]",0x1770), 0x809DF550:("D_809DF550","UNK_TYPE1","",0x1), 0x809DF570:("D_809DF570","UNK_TYPE1","",0x1), - 0x809DF590:("Boss_02_InitVars","UNK_TYPE1","",0x1), + 0x809DF590:("Boss_02_Profile","UNK_TYPE1","",0x1), 0x809DF5B0:("sGiantModeScaleFactor","f32","",0x4), 0x809DF5B4:("D_809DF5B4","UNK_TYPE2","[24]",0x30), 0x809DF5E4:("D_809DF5E4","UNK_TYPE2","[24]",0x30), @@ -9986,7 +9986,7 @@ 0x809E0434:("sBlueWarp","UNK_TYPE4","",0x4), 0x809E0438:("sTwinmoldEffects","UNK_TYPE1","",0x1), 0x809E8EA0:("D_809E8EA0","UNK_TYPE4","",0x4), - 0x809E8EAC:("Boss_03_InitVars","UNK_TYPE1","",0x1), + 0x809E8EAC:("Boss_03_Profile","UNK_TYPE1","",0x1), 0x809E8ECC:("D_809E8ECC","UNK_TYPE1","",0x1), 0x809E8F14:("D_809E8F14","UNK_TYPE1","",0x1), 0x809E8F24:("D_809E8F24","UNK_TYPE1","",0x1), @@ -10070,7 +10070,7 @@ 0x809EC038:("sGyorgRandSeed2","UNK_TYPE4","",0x4), 0x809EC03C:("sGyorgRandSeed3","UNK_TYPE4","",0x4), 0x809EE150:("D_809EE150","UNK_TYPE1","",0x1), - 0x809EE170:("Boss_04_InitVars","UNK_TYPE1","",0x1), + 0x809EE170:("Boss_04_Profile","UNK_TYPE1","",0x1), 0x809EE190:("D_809EE190","UNK_TYPE1","",0x1), 0x809EE1B4:("D_809EE1B4","UNK_TYPE1","",0x1), 0x809EE1C4:("D_809EE1C4","UNK_TYPE1","",0x1), @@ -10121,7 +10121,7 @@ 0x809F1BF4:("sIceAccel","Vec3f","",0xC), 0x809F1C00:("sLilyPadWithHeadDamageTable","DamageTable","",0x20), 0x809F1C20:("sWalkingHeadDamageTable","DamageTable","",0x20), - 0x809F1C40:("Boss_05_InitVars","ActorInit","",0x20), + 0x809F1C40:("Boss_05_Profile","ActorInit","",0x20), 0x809F1C60:("sWindUpLimbRot","Vec3s","[7]",0x2A), 0x809F1C8C:("sLungeAttackLimbRot","Vec3s","[7]",0x2A), 0x809F1CB8:("sLimbIndexToLimbRotIndex","s8","[12]",0xC), @@ -10146,7 +10146,7 @@ 0x809F1DAC:("D_809F1DAC","f32","",0x4), 0x809F2110:("sBioDekuBabaHeadColliderPos","Vec3f","",0xC), 0x809F4080:("D_809F4080","UNK_TYPE1","",0x1), - 0x809F40A0:("Boss_06_InitVars","UNK_TYPE1","",0x1), + 0x809F40A0:("Boss_06_Profile","UNK_TYPE1","",0x1), 0x809F40C0:("D_809F40C0","UNK_TYPE1","",0x1), 0x809F40EC:("D_809F40EC","UNK_TYPE1","",0x1), 0x809F4110:("D_809F4110","f32","",0x4), @@ -10189,7 +10189,7 @@ 0x80A079C0:("D_80A079C0","UNK_TYPE1","",0x1), 0x80A079E0:("D_80A079E0","UNK_TYPE1","",0x1), 0x80A07A00:("D_80A07A00","UNK_TYPE1","",0x1), - 0x80A07A20:("Boss_07_InitVars","UNK_TYPE1","",0x1), + 0x80A07A20:("Boss_07_Profile","UNK_TYPE1","",0x1), 0x80A07A40:("D_80A07A40","UNK_TYPE1","",0x1), 0x80A07A8C:("D_80A07A8C","UNK_TYPE2","",0x2), 0x80A07A90:("D_80A07A90","UNK_TYPE2","",0x2), @@ -10444,15 +10444,15 @@ 0x80A0A888:("D_80A0A888","UNK_TYPE4","",0x4), 0x80A0A88C:("D_80A0A88C","UNK_TYPE4","",0x4), 0x80A0A890:("D_80A0A890","UNK_TYPE4","",0x4), - 0x80A0C4A0:("Bg_Dy_Yoseizo_InitVars","UNK_TYPE1","",0x1), + 0x80A0C4A0:("Bg_Dy_Yoseizo_Profile","UNK_TYPE1","",0x1), 0x80A0C4C0:("sAnimations","AnimationHeader*","9",0x24), 0x80A0C4E4:("sEffectPrimColors","Color_RGB8","6",0x12), 0x80A0C4F8:("sEffectEnvColors","Color_RGB8","6",0x12), 0x80A0C50C:("sMouthTextures","UNK_TYPE1","2",0x8), 0x80A0C514:("sStretchFactors","f32","8",0x20), - 0x80A0C7C0:("En_Boj_05_InitVars","UNK_TYPE1","",0x1), + 0x80A0C7C0:("En_Boj_05_Profile","UNK_TYPE1","",0x1), 0x80A10860:("sAnimationsBombShopkeeper","UNK_PTR","",0x4), - 0x80A10890:("En_Sob1_InitVars","UNK_TYPE1","",0x1), + 0x80A10890:("En_Sob1_Profile","UNK_TYPE1","",0x1), 0x80A108B0:("sObjectIds","UNK_TYPE2","",0x2), 0x80A108C8:("sFacingShopkeeperTextIds","UNK_TYPE1","",0x1), 0x80A108D0:("sNoRoomTextIds","UNK_TYPE1","",0x1), @@ -10502,7 +10502,7 @@ 0x80A163EC:("D_80A163EC","UNK_TYPE1","",0x1), 0x80A163FC:("D_80A163FC","UNK_TYPE1","",0x1), 0x80A1640C:("D_80A1640C","UNK_TYPE1","",0x1), - 0x80A16414:("En_Go_InitVars","UNK_TYPE1","",0x1), + 0x80A16414:("En_Go_Profile","UNK_TYPE1","",0x1), 0x80A16434:("D_80A16434","UNK_TYPE1","",0x1), 0x80A16460:("D_80A16460","UNK_TYPE1","",0x1), 0x80A1648C:("D_80A1648C","UNK_TYPE1","",0x1), @@ -10552,7 +10552,7 @@ 0x80A167FC:("D_80A167FC","f32","",0x4), 0x80A16800:("jtbl_80A16800","UNK_PTR","",0x4), 0x80A16818:("jtbl_80A16818","UNK_PTR","",0x4), - 0x80A18EC0:("En_Raf_InitVars","UNK_TYPE1","",0x1), + 0x80A18EC0:("En_Raf_Profile","UNK_TYPE1","",0x1), 0x80A18EE0:("D_80A18EE0","UNK_TYPE1","",0x1), 0x80A18F0C:("D_80A18F0C","u8","[0x40]",0x40), 0x80A18F4C:("D_80A18F4C","u8","[0x40]",0x40), @@ -10586,9 +10586,9 @@ 0x80A1951C:("D_80A1951C","f32","",0x4), 0x80A19520:("D_80A19520","f32","",0x4), 0x80A19524:("D_80A19524","f32","",0x4), - 0x80A198B0:("Obj_Funen_InitVars","UNK_TYPE1","",0x1), + 0x80A198B0:("Obj_Funen_Profile","UNK_TYPE1","",0x1), 0x80A198D0:("D_80A198D0","UNK_TYPE1","",0x1), - 0x80A1A390:("Obj_Raillift_InitVars","UNK_TYPE1","",0x1), + 0x80A1A390:("Obj_Raillift_Profile","UNK_TYPE1","",0x1), 0x80A1A3B0:("D_80A1A3B0","UNK_TYPE1","",0x1), 0x80A1A3C0:("sColHeaders","UNK_TYPE1","",0x1), 0x80A1A3C4:("D_80A1A3C4","UNK_TYPE1","",0x1), @@ -10601,7 +10601,7 @@ 0x80A1A3E8:("D_80A1A3E8","f32","",0x4), 0x80A1A3EC:("D_80A1A3EC","f32","",0x4), 0x80A1A3F0:("D_80A1A3F0","f32","",0x4), - 0x80A1B240:("Bg_Numa_Hana_InitVars","UNK_TYPE1","",0x1), + 0x80A1B240:("Bg_Numa_Hana_Profile","UNK_TYPE1","",0x1), 0x80A1B260:("D_80A1B260","UNK_TYPE1","",0x1), 0x80A1B28C:("D_80A1B28C","FireObjInitParams","",0xd), 0x80A1B29C:("D_80A1B29C","UNK_TYPE2","",0x2), @@ -10611,7 +10611,7 @@ 0x80A1B2C8:("D_80A1B2C8","f32","",0x4), 0x80A1B2CC:("D_80A1B2CC","f32","",0x4), 0x80A1B2D0:("D_80A1B2D0","f32","",0x4), - 0x80A1D380:("Obj_Flowerpot_InitVars","UNK_TYPE1","",0x1), + 0x80A1D380:("Obj_Flowerpot_Profile","UNK_TYPE1","",0x1), 0x80A1D3A0:("D_80A1D3A0","UNK_TYPE1","",0x1), 0x80A1D3E8:("D_80A1D3E8","UNK_TYPE1","",0x1), 0x80A1D3F8:("D_80A1D3F8","UNK_TYPE2","",0x2), @@ -10665,7 +10665,7 @@ 0x80A1DA3C:("D_80A1DA3C","UNK_TYPE2","",0x2), 0x80A1DA3E:("D_80A1DA3E","UNK_TYPE2","",0x2), 0x80A1DA40:("D_80A1DA40","UNK_TYPE2","",0x2), - 0x80A1F020:("Obj_Spinyroll_InitVars","UNK_TYPE1","",0x1), + 0x80A1F020:("Obj_Spinyroll_Profile","UNK_TYPE1","",0x1), 0x80A1F040:("D_80A1F040","UNK_TYPE1","",0x1), 0x80A1F1A8:("D_80A1F1A8","UNK_TYPE1","",0x1), 0x80A1F1B8:("D_80A1F1B8","UNK_TYPE1","",0x1), @@ -10686,7 +10686,7 @@ 0x80A1F230:("D_80A1F230","f32","",0x4), 0x80A1F234:("D_80A1F234","f32","",0x4), 0x80A1F238:("D_80A1F238","f32","",0x4), - 0x80A1FDB0:("Dm_Hina_InitVars","UNK_TYPE1","",0x1), + 0x80A1FDB0:("Dm_Hina_Profile","UNK_TYPE1","",0x1), 0x80A1FDD0:("D_80A1FDD0","f32","",0x4), 0x80A1FDD4:("D_80A1FDD4","f32","",0x4), 0x80A1FDD8:("D_80A1FDD8","f32","",0x4), @@ -10698,14 +10698,14 @@ 0x80A20EB0:("D_80A20EB0","UNK_TYPE1","",0x1), 0x80A20EDC:("sVelocity","UNK_TYPE1","",0x1), 0x80A20EE8:("sAccel","UNK_TYPE1","",0x1), - 0x80A20EF4:("En_Syateki_Wf_InitVars","UNK_TYPE1","",0x1), + 0x80A20EF4:("En_Syateki_Wf_Profile","UNK_TYPE1","",0x1), 0x80A20F14:("D_80A20F14","UNK_PTR","",0x4), 0x80A20FBC:("D_80A20FBC","UNK_TYPE1","",0x1), 0x80A20FC4:("sFireVelocityAndAccel","UNK_TYPE4","",0x4), 0x80A20FD0:("sTailColliderOffset","UNK_TYPE1","",0x1), 0x80A20FDC:("D_80A20FDC","UNK_TYPE1","",0x1), 0x80A20FF0:("D_80A20FF0","f32","",0x4), - 0x80A229F0:("Obj_Skateblock_InitVars","UNK_TYPE1","",0x1), + 0x80A229F0:("Obj_Skateblock_Profile","UNK_TYPE1","",0x1), 0x80A22A10:("D_80A22A10","UNK_TYPE4","",0x4), 0x80A22A14:("D_80A22A14","UNK_TYPE4","",0x4), 0x80A22A18:("D_80A22A18","UNK_TYPE4","",0x4), @@ -10729,11 +10729,11 @@ 0x80A22B54:("D_80A22B54","f32","",0x4), 0x80A22B58:("D_80A22B58","f32","",0x4), 0x80A22B5C:("D_80A22B5C","f32","",0x4), - 0x80A23020:("Effect_En_Ice_Block_InitVars","UNK_TYPE1","",0x1), + 0x80A23020:("Effect_En_Ice_Block_Profile","UNK_TYPE1","",0x1), 0x80A23030:("D_80A23030","f32","",0x4), 0x80A23034:("D_80A23034","f32","",0x4), 0x80A23038:("D_80A23038","f32","",0x4), - 0x80A26E30:("Obj_Iceblock_InitVars","UNK_TYPE1","",0x1), + 0x80A26E30:("Obj_Iceblock_Profile","UNK_TYPE1","",0x1), 0x80A26E50:("D_80A26E50","UNK_TYPE1","",0x1), 0x80A26E7C:("D_80A26E7C","UNK_TYPE4","",0x4), 0x80A26E80:("D_80A26E80","UNK_TYPE1","",0x1), @@ -10801,7 +10801,7 @@ 0x80A2708C:("D_80A2708C","f32","",0x4), 0x80A27090:("D_80A27090","f32","",0x4), 0x80A27094:("D_80A27094","f32","",0x4), - 0x80A296E0:("En_Bigpamet_InitVars","UNK_TYPE1","",0x1), + 0x80A296E0:("En_Bigpamet_Profile","UNK_TYPE1","",0x1), 0x80A29700:("D_80A29700","UNK_TYPE1","",0x1), 0x80A2972C:("D_80A2972C","UNK_TYPE1","",0x1), 0x80A29734:("D_80A29734","UNK_TYPE1","",0x1), @@ -10829,7 +10829,7 @@ 0x80A297CC:("D_80A297CC","f32","",0x4), 0x80A297D0:("D_80A297D0","f32","",0x4), 0x80A2B870:("D_80A2B870","UNK_TYPE1","",0x1), - 0x80A2B88C:("Bg_Dblue_Movebg_InitVars","UNK_TYPE1","",0x1), + 0x80A2B88C:("Bg_Dblue_Movebg_Profile","UNK_TYPE1","",0x1), 0x80A2B8AC:("sOpaDLists","UNK_TYPE1","",0x1), 0x80A2B8DC:("sXluDLists","UNK_TYPE1","",0x1), 0x80A2B90C:("sColHeaders","UNK_TYPE1","",0x1), @@ -10851,7 +10851,7 @@ 0x80A2BBF0:("D_80A2BBF0","UNK_TYPE1","",0x1), 0x80A2BBF4:("D_80A2BBF4","UNK_TYPE1","",0x1), 0x80A2BBF5:("D_80A2BBF5","UNK_TYPE1","",0x1), - 0x80A2CA90:("En_Syateki_Dekunuts_InitVars","UNK_TYPE1","",0x1), + 0x80A2CA90:("En_Syateki_Dekunuts_Profile","UNK_TYPE1","",0x1), 0x80A2CAB0:("sCylinderInit","UNK_TYPE1","",0x1), 0x80A2CADC:("sBonusDekuScrubColliderDimensions","UNK_TYPE4","",0x4), 0x80A2CAE8:("sAnimationInfo","UNK_PTR","",0x4), @@ -10862,7 +10862,7 @@ 0x80A2CBB8:("sPrimColor","UNK_TYPE1","",0x1), 0x80A2CBBC:("sEnvColor","UNK_TYPE1","",0x1), 0x80A2CBC0:("D_80A2CBC0","f32","",0x4), - 0x80A2D1C0:("Elf_Msg3_InitVars","UNK_TYPE1","",0x1), + 0x80A2D1C0:("Elf_Msg3_Profile","UNK_TYPE1","",0x1), 0x80A2D1E0:("D_80A2D1E0","UNK_TYPE1","",0x1), 0x80A2D1F0:("D_80A2D1F0","char","[]",0x1), 0x80A2D1F8:("D_80A2D1F8","char","[]",0x1), @@ -10870,7 +10870,7 @@ 0x80A2D204:("D_80A2D204","f32","",0x4), 0x80A2D208:("D_80A2D208","f32","",0x4), 0x80A2D20C:("D_80A2D20C","f32","",0x4), - 0x80A2E4E0:("En_Fg_InitVars","UNK_TYPE1","",0x1), + 0x80A2E4E0:("En_Fg_Profile","UNK_TYPE1","",0x1), 0x80A2E500:("D_80A2E500","UNK_TYPE1","",0x1), 0x80A2E52C:("D_80A2E52C","UNK_PTR","",0x4), 0x80A2E538:("D_80A2E538","UNK_TYPE1","",0x1), @@ -10893,11 +10893,11 @@ 0x80A2E628:("D_80A2E628","f32","",0x4), 0x80A2E62C:("D_80A2E62C","f32","",0x4), 0x80A2E630:("D_80A2E630","f32","",0x4), - 0x80A2E910:("Dm_Ravine_InitVars","UNK_TYPE1","",0x1), - 0x80A2ECE0:("Dm_Sa_InitVars","UNK_TYPE1","",0x1), + 0x80A2E910:("Dm_Ravine_Profile","UNK_TYPE1","",0x1), + 0x80A2ECE0:("Dm_Sa_Profile","UNK_TYPE1","",0x1), 0x80A2ED00:("sAnimationInfo","UNK_TYPE1","",0x1), 0x80A2ED20:("D_80A2ED20","f32","",0x4), - 0x80A31AD0:("En_Slime_InitVars","ActorInit","",0x1), + 0x80A31AD0:("En_Slime_Profile","ActorInit","",0x1), 0x80A31AF0:("sCylinderInit","ColliderCylinderInit","",0x1), 0x80A31B1C:("sDamageTable","DamageTable","",0x1), 0x80A31B3C:("sColChkInfoInit","CollisionCheckInfoInit","",0x1), @@ -10997,7 +10997,7 @@ 0x80A32200:("sSlimeTexAnim","AnimatedMaterial*","",0x1), 0x80A338A0:("D_80A338A0","UNK_TYPE1","",0x1), 0x80A338C0:("D_80A338C0","UNK_TYPE1","",0x1), - 0x80A338D4:("En_Pr_InitVars","UNK_TYPE1","",0x1), + 0x80A338D4:("En_Pr_Profile","UNK_TYPE1","",0x1), 0x80A338F4:("D_80A338F4","UNK_TYPE1","",0x1), 0x80A33920:("D_80A33920","UNK_TYPE1","",0x1), 0x80A33934:("sAnimationModes","UNK_TYPE1","",0x1), @@ -11011,7 +11011,7 @@ 0x80A33968:("D_80A33968","f32","",0x4), 0x80A3396C:("D_80A3396C","f32","",0x4), 0x80A33970:("D_80A33970","f32","",0x4), - 0x80A34570:("Obj_Toudai_InitVars","UNK_TYPE1","",0x1), + 0x80A34570:("Obj_Toudai_Profile","UNK_TYPE1","",0x1), 0x80A34590:("D_80A34590","UNK_TYPE1","",0x1), 0x80A3459F:("D_80A3459F","UNK_TYPE1","",0x1), 0x80A345AF:("D_80A345AF","UNK_TYPE1","",0x1), @@ -11020,7 +11020,7 @@ 0x80A34674:("D_80A34674","f32","",0x4), 0x80A34678:("D_80A34678","f32","",0x4), 0x80A3467C:("D_80A3467C","f32","",0x4), - 0x80A353F0:("Obj_Entotu_InitVars","UNK_TYPE1","",0x1), + 0x80A353F0:("Obj_Entotu_Profile","UNK_TYPE1","",0x1), 0x80A35410:("D_80A35410","UNK_TYPE1","",0x1), 0x80A3541F:("D_80A3541F","UNK_TYPE1","",0x1), 0x80A3542F:("D_80A3542F","UNK_TYPE1","",0x1), @@ -11029,7 +11029,7 @@ 0x80A35484:("D_80A35484","f32","",0x4), 0x80A35488:("D_80A35488","f32","",0x4), 0x80A3548C:("D_80A3548C","f32","",0x4), - 0x80A35E70:("Obj_Bell_InitVars","ActorInit","",0x20), + 0x80A35E70:("Obj_Bell_Profile","ActorInit","",0x20), 0x80A35E90:("D_80A35E90","UNK_TYPE1","",0x1), 0x80A35EBC:("D_80A35EBC","UNK_TYPE1","",0x1), 0x80A35EE8:("D_80A35EE8","UNK_TYPE1","",0x1), @@ -11042,7 +11042,7 @@ 0x80A35F34:("D_80A35F34","f32","",0x4), 0x80A35F38:("D_80A35F38","f32","",0x4), 0x80A35F3C:("D_80A35F3C","f32","",0x4), - 0x80A37550:("En_Syateki_Okuta_InitVars","UNK_TYPE1","",0x1), + 0x80A37550:("En_Syateki_Okuta_Profile","UNK_TYPE1","",0x1), 0x80A37570:("D_80A37570","UNK_TYPE1","",0x1), 0x80A3759C:("D_80A3759C","UNK_PTR","",0x4), 0x80A37630:("D_80A37630","UNK_TYPE1","",0x1), @@ -11086,16 +11086,16 @@ 0x80A37C18:("D_80A37C18","f32","",0x4), 0x80A37C1C:("D_80A37C1C","f32","",0x4), 0x80A37C20:("D_80A37C20","f32","",0x4), - 0x80A38110:("Obj_Shutter_InitVars","UNK_TYPE1","",0x1), + 0x80A38110:("Obj_Shutter_Profile","UNK_TYPE1","",0x1), 0x80A38130:("D_80A38130","UNK_TYPE1","",0x1), 0x80A38140:("D_80A38140","f32","",0x4), 0x80A38144:("D_80A38144","f32","",0x4), - 0x80A387D0:("Dm_Zl_InitVars","UNK_TYPE1","",0x1), + 0x80A387D0:("Dm_Zl_Profile","UNK_TYPE1","",0x1), 0x80A387F0:("D_80A387F0","UNK_TYPE1","",0x1), 0x80A38898:("D_80A38898","UNK_TYPE1","",0x1), 0x80A388A8:("D_80A388A8","UNK_TYPE1","",0x1), 0x80A388D0:("jtbl_80A388D0","UNK_PTR","",0x4), - 0x80A39430:("En_Ru_InitVars","UNK_TYPE1","",0x1), + 0x80A39430:("En_Ru_Profile","UNK_TYPE1","",0x1), 0x80A39450:("D_80A39450","UNK_TYPE1","",0x1), 0x80A3947C:("D_80A3947C","UNK_TYPE1","",0x1), 0x80A39488:("D_80A39488","UNK_TYPE1","",0x1), @@ -11114,11 +11114,11 @@ 0x80A395B0:("D_80A395B0","UNK_TYPE4","",0x4), 0x80A395C0:("D_80A395C0","f32","",0x4), 0x80A395C4:("D_80A395C4","f32","",0x4), - 0x80A3AAD0:("En_Elfgrp_InitVars","UNK_TYPE1","",0x1), - 0x80A3B010:("Dm_Tsg_InitVars","UNK_TYPE1","",0x1), + 0x80A3AAD0:("En_Elfgrp_Profile","UNK_TYPE1","",0x1), + 0x80A3B010:("Dm_Tsg_Profile","UNK_TYPE1","",0x1), 0x80A3B030:("D_80A3B030","f32","",0x4), 0x80A3B034:("D_80A3B034","f32","",0x4), - 0x80A3C2D0:("En_Baguo_InitVars","UNK_TYPE1","",0x1), + 0x80A3C2D0:("En_Baguo_Profile","UNK_TYPE1","",0x1), 0x80A3C2F0:("D_80A3C2F0","UNK_TYPE1","",0x1), 0x80A3C314:("D_80A3C314","UNK_TYPE1","",0x1), 0x80A3C324:("D_80A3C324","UNK_TYPE1","",0x1), @@ -11138,7 +11138,7 @@ 0x80A3C398:("D_80A3C398","f32","",0x4), 0x80A3C39C:("D_80A3C39C","f32","",0x4), 0x80A3C3A0:("D_80A3C3A0","f32","",0x4), - 0x80A3D430:("Obj_Vspinyroll_InitVars","UNK_TYPE1","",0x1), + 0x80A3D430:("Obj_Vspinyroll_Profile","UNK_TYPE1","",0x1), 0x80A3D450:("D_80A3D450","UNK_TYPE1","",0x1), 0x80A3D454:("D_80A3D454","UNK_TYPE1","",0x1), 0x80A3D458:("D_80A3D458","UNK_TYPE1","",0x1), @@ -11159,7 +11159,7 @@ 0x80A3D500:("D_80A3D500","f32","",0x4), 0x80A3D504:("D_80A3D504","f32","",0x4), 0x80A3D508:("D_80A3D508","f32","",0x4), - 0x80A3E270:("Obj_Smork_InitVars","UNK_TYPE1","",0x1), + 0x80A3E270:("Obj_Smork_Profile","UNK_TYPE1","",0x1), 0x80A3E290:("D_80A3E290","UNK_TYPE1","",0x1), 0x80A3E29F:("D_80A3E29F","UNK_TYPE1","",0x1), 0x80A3E2AF:("D_80A3E2AF","UNK_TYPE1","",0x1), @@ -11167,13 +11167,13 @@ 0x80A3E300:("D_80A3E300","f32","",0x4), 0x80A3E304:("D_80A3E304","f32","",0x4), 0x80A3E308:("D_80A3E308","f32","",0x4), - 0x80A3E690:("En_Test2_InitVars","UNK_TYPE1","",0x1), + 0x80A3E690:("En_Test2_Profile","UNK_TYPE1","",0x1), 0x80A3E6B0:("D_80A3E6B0","UNK_PTR","",0x4), 0x80A3E6B4:("D_80A3E6B4","UNK_TYPE4","",0x4), 0x80A3E74C:("D_80A3E74C","UNK_TYPE1","",0x1), 0x80A3E75C:("D_80A3E75C","UNK_TYPE1","",0x1), 0x80A41530:("D_80A41530","UNK_TYPE1","",0x1), - 0x80A4166C:("En_Test3_InitVars","UNK_TYPE1","",0x1), + 0x80A4166C:("En_Test3_Profile","UNK_TYPE1","",0x1), 0x80A4168C:("D_80A4168C","UNK_TYPE1","",0x1), 0x80A4169C:("D_80A4169C","UNK_PTR","",0x4), 0x80A416C0:("D_80A416C0","UNK_PTR","",0x4), @@ -11217,7 +11217,7 @@ 0x80A41D64:("D_80A41D64","UNK_TYPE1","",0x1), 0x80A41D68:("D_80A41D68","UNK_TYPE1","",0x1), 0x80A41D6C:("sKafeiCurBodyPartPos","UNK_TYPE1","",0x1), - 0x80A43320:("En_Test4_InitVars","ActorInit","",0x20), + 0x80A43320:("En_Test4_Profile","ActorInit","",0x20), 0x80A43340:("sIsLoaded","s32","[3]",0x6), 0x80A43342:("sNightOfTextIds2","s16","[3]",0x6), 0x80A4334A:("sDawnOfTextIds2","s16","[3]",0x6), @@ -11226,7 +11226,7 @@ 0x80A43364:("sDayNightTransitionTimes","u16","[2]",0x4), 0x80A434D0:("sCsIdList","s16","[2]",0x4), 0x80A434D4:("sCurCsId","s16","",0x2), - 0x80A449E0:("En_Bat_InitVars","ActorInit","",0x1), + 0x80A449E0:("En_Bat_Profile","ActorInit","",0x1), 0x80A44A00:("sSphereInit","ColliderSphereInit","",0x1), 0x80A44A2C:("sDamageTable","DamageTable","4",0x1), 0x80A44A4C:("sColChkInfoInit","CollisionCheckInfoInit","",0x1), @@ -11250,13 +11250,13 @@ 0x80A44ACC:("D_80A44ACC","f32","",0x4), 0x80A44C70:("sNumberAttacking","UNK_TYPE1","",0x1), 0x80A44C74:("sAlreadySpawned","UNK_TYPE1","",0x1), - 0x80A45250:("En_Sekihi_InitVars","UNK_TYPE1","",0x1), + 0x80A45250:("En_Sekihi_Profile","UNK_TYPE1","",0x1), 0x80A45270:("D_80A45270","UNK_TYPE1","",0x1), 0x80A4527C:("D_80A4527C","UNK_TYPE1","",0x1), 0x80A45290:("D_80A45290","UNK_TYPE1","",0x1), 0x80A452A4:("D_80A452A4","UNK_TYPE1","",0x1), 0x80A452B0:("D_80A452B0","UNK_TYPE4","",0x4), - 0x80A48B30:("En_Wiz_InitVars","UNK_TYPE1","",0x1), + 0x80A48B30:("En_Wiz_Profile","UNK_TYPE1","",0x1), 0x80A48B50:("sJntSphElementsInit","UNK_TYPE1","",0x1), 0x80A48CB8:("sJntSphInit","UNK_PTR","",0x4), 0x80A48CC8:("sCylinderInit","UNK_TYPE1","",0x1), @@ -11286,7 +11286,7 @@ 0x80A48DCC:("D_80A48DCC","f32","",0x4), 0x80A48DD0:("D_80A48DD0","f32","",0x4), 0x80A495B0:("D_80A495B0","UNK_TYPE2","",0x2), - 0x80A495B4:("En_Wiz_Brock_InitVars","UNK_TYPE1","",0x1), + 0x80A495B4:("En_Wiz_Brock_Profile","UNK_TYPE1","",0x1), 0x80A495E0:("D_80A495E0","f32","",0x4), 0x80A495E4:("D_80A495E4","f32","",0x4), 0x80A495E8:("D_80A495E8","f32","",0x4), @@ -11297,7 +11297,7 @@ 0x80A495FC:("D_80A495FC","f32","",0x4), 0x80A49600:("D_80A49600","f32","",0x4), 0x80A4C1C0:("sPoolHitByIceArrow","UNK_TYPE4","",0x4), - 0x80A4C1C4:("En_Wiz_Fire_InitVars","UNK_TYPE1","",0x1), + 0x80A4C1C4:("En_Wiz_Fire_Profile","UNK_TYPE1","",0x1), 0x80A4C1E4:("D_80A4C1E4","UNK_TYPE1","",0x1), 0x80A4C210:("D_80A4C210","UNK_TYPE4","",0x4), 0x80A4C21C:("D_80A4C21C","UNK_TYPE4","",0x4), @@ -11328,12 +11328,12 @@ 0x80A4C2C0:("D_80A4C2C0","f32","",0x4), 0x80A4C2C4:("D_80A4C2C4","f32","",0x4), 0x80A4C2C8:("D_80A4C2C8","f32","",0x4), - 0x80A4C900:("Eff_Change_InitVars","UNK_TYPE1","",0x1), + 0x80A4C900:("Eff_Change_Profile","UNK_TYPE1","",0x1), 0x80A4C920:("D_80A4C920","UNK_TYPE1","",0x1), 0x80A4C950:("D_80A4C950","f32","",0x4), 0x80A4C954:("D_80A4C954","f32","",0x4), - 0x80A4CA40:("Dm_Statue_InitVars","UNK_TYPE1","",0x1), - 0x80A4D800:("Obj_Fireshield_InitVars","UNK_TYPE1","",0x1), + 0x80A4CA40:("Dm_Statue_Profile","UNK_TYPE1","",0x1), + 0x80A4D800:("Obj_Fireshield_Profile","UNK_TYPE1","",0x1), 0x80A4D820:("D_80A4D820","UNK_TYPE1","",0x1), 0x80A4D84C:("D_80A4D84C","UNK_TYPE1","",0x1), 0x80A4D864:("D_80A4D864","UNK_TYPE4","",0x4), @@ -11344,10 +11344,10 @@ 0x80A4D8B0:("D_80A4D8B0","f32","",0x4), 0x80A4D8B4:("D_80A4D8B4","f32","",0x4), 0x80A4D8B8:("D_80A4D8B8","f32","",0x4), - 0x80A4DE20:("Bg_Ladder_InitVars","UNK_TYPE1","",0x1), + 0x80A4DE20:("Bg_Ladder_Profile","UNK_TYPE1","",0x1), 0x80A4DE40:("D_80A4DE40","UNK_TYPE1","",0x1), 0x80A4DE44:("D_80A4DE44","UNK_TYPE1","",0x1), - 0x80A4F700:("En_Mkk_InitVars","UNK_TYPE1","",0x1), + 0x80A4F700:("En_Mkk_Profile","UNK_TYPE1","",0x1), 0x80A4F720:("D_80A4F720","UNK_TYPE1","",0x1), 0x80A4F748:("D_80A4F748","UNK_TYPE2","",0x2), 0x80A4F74C:("D_80A4F74C","UNK_TYPE1","",0x1), @@ -11384,22 +11384,22 @@ 0x80A4F834:("D_80A4F834","f32","",0x4), 0x80A4F83C:("D_80A4F83C","f32","",0x4), 0x80A4F840:("D_80A4F840","f32","",0x4), - 0x80A4FD40:("Demo_Getitem_InitVars","UNK_TYPE1","",0x1), + 0x80A4FD40:("Demo_Getitem_Profile","UNK_TYPE1","",0x1), 0x80A4FD60:("D_80A4FD60","UNK_TYPE1","",0x1), 0x80A4FD64:("D_80A4FD64","UNK_TYPE1","",0x1), 0x80A4FD68:("D_80A4FD68","UNK_TYPE1","",0x1), - 0x80A50C90:("En_Dnb_InitVars","UNK_TYPE1","",0x1), + 0x80A50C90:("En_Dnb_Profile","UNK_TYPE1","",0x1), 0x80A50CB0:("D_80A50CB0","UNK_TYPE1","",0x1), 0x80A50CBC:("D_80A50CBC","UNK_TYPE1","",0x1), 0x80A51250:("D_80A51250","UNK_TYPE1","",0x1), 0x80A51384:("D_80A51384","UNK_TYPE1","",0x1), 0x80A5138C:("D_80A5138C","UNK_TYPE1","",0x1), - 0x80A5140C:("En_Dnh_InitVars","UNK_TYPE1","",0x1), + 0x80A5140C:("En_Dnh_Profile","UNK_TYPE1","",0x1), 0x80A5142C:("D_80A5142C","UNK_PTR","",0x4), 0x80A5143C:("D_80A5143C","UNK_TYPE1","",0x1), 0x80A51450:("D_80A51450","f32","",0x4), 0x80A521A0:("D_80A521A0","UNK_TYPE2","",0x2), - 0x80A521A4:("En_Dnk_InitVars","UNK_TYPE1","",0x1), + 0x80A521A4:("En_Dnk_Profile","UNK_TYPE1","",0x1), 0x80A521C4:("D_80A521C4","UNK_TYPE1","",0x1), 0x80A521F0:("D_80A521F0","UNK_PTR","",0x4), 0x80A521FC:("D_80A521FC","UNK_TYPE1","",0x1), @@ -11408,7 +11408,7 @@ 0x80A53400:("D_80A53400","UNK_TYPE1","",0x1), 0x80A53420:("D_80A53420","UNK_TYPE1","",0x1), 0x80A53438:("D_80A53438","UNK_TYPE1","",0x1), - 0x80A53444:("En_Dnq_InitVars","UNK_TYPE1","",0x1), + 0x80A53444:("En_Dnq_Profile","UNK_TYPE1","",0x1), 0x80A53464:("D_80A53464","UNK_TYPE1","",0x1), 0x80A53490:("D_80A53490","UNK_PTR","",0x4), 0x80A5349C:("sAnimationInfo","UNK_TYPE1","",0x1), @@ -11417,11 +11417,11 @@ 0x80A535FC:("sCsAnimIndex","UNK_TYPE1","",0x1), 0x80A53620:("jtbl_80A53620","UNK_PTR","",0x4), 0x80A53648:("jtbl_80A53648","UNK_PTR","",0x4), - 0x80A53B50:("Bg_Keikoku_Saku_InitVars","UNK_TYPE1","",0x1), + 0x80A53B50:("Bg_Keikoku_Saku_Profile","UNK_TYPE1","",0x1), 0x80A53B70:("D_80A53B70","f32","",0x4), 0x80A53B74:("D_80A53B74","f32","",0x4), 0x80A53B78:("D_80A53B78","f32","",0x4), - 0x80A55CE0:("Obj_Hugebombiwa_InitVars","UNK_TYPE1","",0x1), + 0x80A55CE0:("Obj_Hugebombiwa_Profile","UNK_TYPE1","",0x1), 0x80A55D00:("D_80A55D00","UNK_TYPE1","",0x1), 0x80A55D2C:("D_80A55D2C","UNK_TYPE1","",0x1), 0x80A55D38:("D_80A55D38","UNK_TYPE1","",0x1), @@ -11477,8 +11477,8 @@ 0x80A55E38:("D_80A55E38","f32","",0x4), 0x80A55E3C:("D_80A55E3C","f32","",0x4), 0x80A55E40:("D_80A55E40","f32","",0x4), - 0x80A56100:("En_Firefly2_InitVars","UNK_TYPE1","",0x1), - 0x80A583E0:("En_Rat_InitVars","UNK_TYPE1","",0x1), + 0x80A56100:("En_Firefly2_Profile","UNK_TYPE1","",0x1), + 0x80A583E0:("En_Rat_Profile","UNK_TYPE1","",0x1), 0x80A58400:("sSphereInit","UNK_TYPE1","",0x1), 0x80A5842C:("sDamageTable","UNK_TYPE1","",0x1), 0x80A5844C:("sColChkInfoInit","UNK_TYPE1","",0x1), @@ -11511,7 +11511,7 @@ 0x80A58520:("D_80A58520","f32","",0x4), 0x80A58524:("D_80A58524","f32","",0x4), 0x80A58528:("D_80A58528","f32","",0x4), - 0x80A5AF90:("En_Water_Effect_InitVars","UNK_TYPE1","",0x1), + 0x80A5AF90:("En_Water_Effect_Profile","UNK_TYPE1","",0x1), 0x80A5AFB0:("sZeroVec","UNK_TYPE4","",0x4), 0x80A5AFBC:("D_80A5AFBC","UNK_TYPE4","",0x4), 0x80A5AFD0:("D_80A5AFD0","f32","",0x4), @@ -11536,7 +11536,7 @@ 0x80A5B01C:("D_80A5B01C","f32","",0x4), 0x80A5B020:("D_80A5B020","f32","",0x4), 0x80A5B024:("D_80A5B024","f32","",0x4), - 0x80A5EAA0:("En_Kusa2_InitVars","UNK_TYPE1","",0x1), + 0x80A5EAA0:("En_Kusa2_Profile","UNK_TYPE1","",0x1), 0x80A5EAC0:("D_80A5EAC0","UNK_TYPE1","",0x1), 0x80A5EAEC:("D_80A5EAEC","UNK_PTR","",0x4), 0x80A5EAF0:("D_80A5EAF0","UNK_TYPE2","",0x2), @@ -11612,7 +11612,7 @@ 0x80A60B0C:("D_80A60B0C","UNK_TYPE2","",0x2), 0x80A60B0E:("D_80A60B0E","UNK_TYPE2","",0x2), 0x80A60B10:("D_80A60B10","UNK_TYPE2","",0x2), - 0x80A61140:("Bg_Spout_Fire_InitVars","UNK_TYPE1","",0x1), + 0x80A61140:("Bg_Spout_Fire_Profile","UNK_TYPE1","",0x1), 0x80A61160:("D_80A61160","UNK_TYPE1","",0x1), 0x80A6118C:("D_80A6118C","UNK_TYPE1","",0x1), 0x80A61194:("D_80A61194","UNK_TYPE4","",0x4), @@ -11622,7 +11622,7 @@ 0x80A611C8:("D_80A611C8","f32","",0x4), 0x80A611CC:("D_80A611CC","f32","",0x4), 0x80A611D0:("D_80A611D0","f32","",0x4), - 0x80A61720:("En_Dy_Extra_InitVars","UNK_TYPE1","",0x1), + 0x80A61720:("En_Dy_Extra_Profile","UNK_TYPE1","",0x1), 0x80A61740:("D_80A61740","UNK_TYPE1","",0x1), 0x80A61754:("D_80A61754","UNK_TYPE1","",0x1), 0x80A61768:("D_80A61768","UNK_TYPE1","",0x1), @@ -11630,7 +11630,7 @@ 0x80A61794:("D_80A61794","f32","",0x4), 0x80A61798:("D_80A61798","f32","",0x4), 0x80A6179C:("D_80A6179C","f32","",0x4), - 0x80A63CC0:("En_Bal_InitVars","ActorInit","",0x1), + 0x80A63CC0:("En_Bal_Profile","ActorInit","",0x1), 0x80A63CE0:("sDamageTable","DamageTable","",0x1), 0x80A63D00:("sColChkInfoInit","CollisionCheckInfoInit2","",0x1), 0x80A63D0C:("sJntSphElementsInit","ColliderJntSphElementInit","",0x1), @@ -11668,17 +11668,17 @@ 0x80A64010:("jtbl_80A64010","UNK_PTR","",0x4), 0x80A64028:("D_80A64028","f32","",0x4), 0x80A6402C:("D_80A6402C","f32","",0x4), - 0x80A65D40:("En_Ginko_Man_InitVars","UNK_TYPE1","",0x1), + 0x80A65D40:("En_Ginko_Man_Profile","UNK_TYPE1","",0x1), 0x80A65D60:("animations","UNK_PTR","",0x4), 0x80A65DE0:("jtbl_80A65DE0","UNK_PTR","",0x4), 0x80A65EAC:("jtbl_80A65EAC","UNK_PTR","",0x4), 0x80A65EE8:("D_80A65EE8","f32","",0x4), 0x80A65EEC:("D_80A65EEC","f32","",0x4), - 0x80A664A0:("En_Warp_Uzu_InitVars","UNK_TYPE1","",0x1), + 0x80A664A0:("En_Warp_Uzu_Profile","UNK_TYPE1","",0x1), 0x80A664C0:("D_80A664C0","UNK_TYPE1","",0x1), 0x80A664EC:("D_80A664EC","UNK_TYPE1","",0x1), 0x80A664FC:("D_80A664FC","UNK_TYPE1","",0x1), - 0x80A67600:("Obj_Driftice_InitVars","UNK_TYPE1","",0x1), + 0x80A67600:("Obj_Driftice_Profile","UNK_TYPE1","",0x1), 0x80A67620:("D_80A67620","UNK_TYPE4","",0x4), 0x80A67644:("D_80A67644","f32","",0x4), 0x80A67664:("D_80A67664","UNK_TYPE1","",0x1), @@ -11705,7 +11705,7 @@ 0x80A67740:("D_80A67740","f32","",0x4), 0x80A67744:("D_80A67744","f32","",0x4), 0x80A67748:("D_80A67748","f32","",0x4), - 0x80A685E0:("En_Look_Nuts_InitVars","UNK_TYPE1","",0x1), + 0x80A685E0:("En_Look_Nuts_Profile","UNK_TYPE1","",0x1), 0x80A68600:("D_80A68600","UNK_TYPE1","",0x1), 0x80A6862C:("D_80A6862C","UNK_TYPE4","",0x4), 0x80A68630:("D_80A68630","UNK_TYPE1","",0x1), @@ -11715,7 +11715,7 @@ 0x80A68674:("D_80A68674","f32","",0x4), 0x80A68678:("D_80A68678","f32","",0x4), 0x80A6867C:("jtbl_80A6867C","UNK_PTR","",0x4), - 0x80A6B930:("En_Mushi2_InitVars","UNK_TYPE1","",0x1), + 0x80A6B930:("En_Mushi2_Profile","UNK_TYPE1","",0x1), 0x80A6B950:("D_80A6B950","UNK_TYPE1","",0x1), 0x80A6B974:("D_80A6B974","UNK_TYPE1","",0x1), 0x80A6B984:("D_80A6B984","UNK_TYPE1","",0x1), @@ -11785,7 +11785,7 @@ 0x80A6BAF8:("D_80A6BAF8","f32","",0x4), 0x80A6BAFC:("D_80A6BAFC","f32","",0x4), 0x80A6BB00:("D_80A6BB00","f32","",0x4), - 0x80A6E490:("En_Fall_InitVars","UNK_TYPE1","",0x1), + 0x80A6E490:("En_Fall_Profile","UNK_TYPE1","",0x1), 0x80A6E4B0:("D_80A6E4B0","UNK_TYPE4","",0x4), 0x80A6E4B4:("D_80A6E4B4","s8","[0xD1]",0xD0), 0x80A6E588:("D_80A6E588","UNK_TYPE1","",0x1), @@ -11820,7 +11820,7 @@ 0x80A6E654:("D_80A6E654","f32","",0x4), 0x80A6E990:("D_80A6E990","UNK_TYPE1","",0x1), 0x80A6F098:("D_80A6F098","UNK_TYPE1","",0x1), - 0x80A703D0:("En_Mm3_InitVars","UNK_TYPE1","",0x1), + 0x80A703D0:("En_Mm3_Profile","UNK_TYPE1","",0x1), 0x80A703F0:("D_80A703F0","UNK_TYPE1","",0x1), 0x80A7041C:("D_80A7041C","UNK_TYPE1","",0x1), 0x80A70428:("D_80A70428","UNK_TYPE1","",0x1), @@ -11829,7 +11829,7 @@ 0x80A704FC:("D_80A704FC","UNK_TYPE1","",0x1), 0x80A70510:("jtbl_80A70510","UNK_PTR","",0x4), 0x80A7056C:("jtbl_80A7056C","UNK_PTR","",0x4), - 0x80A71080:("Bg_Crace_Movebg_InitVars","UNK_TYPE1","",0x1), + 0x80A71080:("Bg_Crace_Movebg_Profile","UNK_TYPE1","",0x1), 0x80A710A0:("sHasInitializedIsLoaded","UNK_TYPE1","",0x1), 0x80A710A4:("sLoadedDoorCount","UNK_TYPE1","",0x1), 0x80A710A8:("sInitChain","UNK_TYPE1","",0x1), @@ -11837,7 +11837,7 @@ 0x80A710C0:("D_80A710C0","f32","",0x4), 0x80A711B0:("sIsLoaded","UNK_TYPE1","",0x1), 0x80A739A0:("D_80A739A0","UNK_PTR","",0x4), - 0x80A73AE0:("En_Dno_InitVars","UNK_TYPE1","",0x1), + 0x80A73AE0:("En_Dno_Profile","UNK_TYPE1","",0x1), 0x80A73B00:("D_80A73B00","UNK_TYPE1","",0x1), 0x80A73B2C:("D_80A73B2C","UNK_TYPE1","",0x1), 0x80A73B38:("D_80A73B38","UNK_TYPE1","",0x1), @@ -11857,7 +11857,7 @@ 0x80A73C24:("D_80A73C24","f32","",0x4), 0x80A75BC0:("D_80A75BC0","UNK_TYPE1","",0x1), 0x80A75BE0:("D_80A75BE0","UNK_TYPE1","",0x1), - 0x80A75C0C:("En_Pr2_InitVars","UNK_TYPE1","",0x1), + 0x80A75C0C:("En_Pr2_Profile","UNK_TYPE1","",0x1), 0x80A75C2C:("D_80A75C2C","UNK_TYPE1","",0x1), 0x80A75C38:("sAnimationModes","UNK_TYPE1","",0x1), 0x80A75C3C:("D_80A75C3C","UNK_TYPE1","",0x1), @@ -11874,7 +11874,7 @@ 0x80A771C0:("D_80A771C0","UNK_TYPE1","",0x1), 0x80A771E0:("D_80A771E0","f32","",0x4), 0x80A771F4:("D_80A771F4","UNK_TYPE1","",0x1), - 0x80A77220:("En_Prz_InitVars","UNK_TYPE1","",0x1), + 0x80A77220:("En_Prz_Profile","UNK_TYPE1","",0x1), 0x80A77240:("sAnimations","UNK_TYPE1","",0x1), 0x80A77248:("sAnimationModes","UNK_TYPE1","",0x1), 0x80A7724C:("D_80A7724C","UNK_TYPE4","",0x4), @@ -11892,7 +11892,7 @@ 0x80A7B510:("sTargetFlameScales","Vec3f","[6]",0x48), 0x80A7B558:("sFlameOffsets","Vec3f","[6]",0x48), 0x80A7B5A0:("sSlashFlameOffsets","Vec3f","[6]",0x48), - 0x80A7B5E8:("En_Jso2_InitVars","ActorInit","",0x20), + 0x80A7B5E8:("En_Jso2_Profile","ActorInit","",0x20), 0x80A7B608:("sCylinderInit","ColliderCylinderInit","",0x2C), 0x80A7B634:("sQuadInit","ColliderQuadInit","",0x50), 0x80A7B684:("sAnimations","AnimationHeader*","[22]",0x58), @@ -11935,7 +11935,7 @@ 0x80A7B810:("jtbl_80A7B810","UNK_PTR","",0x4), 0x80A7B834:("D_80A7B834","f32","",0x4), 0x80A7B838:("D_80A7B838","f32","",0x4), - 0x80A7C770:("Obj_Etcetera_InitVars","UNK_TYPE1","",0x1), + 0x80A7C770:("Obj_Etcetera_Profile","UNK_TYPE1","",0x1), 0x80A7C790:("D_80A7C790","UNK_TYPE1","",0x1), 0x80A7C7BC:("D_80A7C7BC","UNK_TYPE2","",0x2), 0x80A7C7C4:("D_80A7C7C4","f32","",0x4), @@ -11964,7 +11964,7 @@ 0x80A80DD8:("D_80A80DD8","UNK_TYPE1","",0x1), 0x80A80DE4:("D_80A80DE4","UNK_TYPE1","",0x1), 0x80A80DEA:("D_80A80DEA","UNK_TYPE1","",0x1), - 0x80A80DEC:("En_Egol_InitVars","UNK_TYPE1","",0x1), + 0x80A80DEC:("En_Egol_Profile","UNK_TYPE1","",0x1), 0x80A80E0C:("D_80A80E0C","UNK_TYPE1","",0x1), 0x80A80E48:("D_80A80E48","UNK_TYPE1","",0x1), 0x80A80E58:("D_80A80E58","UNK_TYPE1","",0x1), @@ -11993,7 +11993,7 @@ 0x80A80EDC:("D_80A80EDC","f32","",0x4), 0x80A80EE0:("D_80A80EE0","f32","",0x4), 0x80A80EE4:("D_80A80EE4","f32","",0x4), - 0x80A84550:("Obj_Mine_InitVars","UNK_TYPE1","",0x1), + 0x80A84550:("Obj_Mine_Profile","UNK_TYPE1","",0x1), 0x80A84570:("D_80A84570","UNK_TYPE1","",0x1), 0x80A84594:("D_80A84594","UNK_TYPE1","",0x1), 0x80A845A4:("D_80A845A4","f32","",0x4), @@ -12042,7 +12042,7 @@ 0x80A8469C:("D_80A8469C","f32","",0x4), 0x80A846A0:("D_80A846A0","f32","",0x4), 0x80A849D0:("sLastLinkAccel","Vec3f[]","",0x4), - 0x80A85460:("Obj_Purify_InitVars","UNK_TYPE1","",0x1), + 0x80A85460:("Obj_Purify_Profile","UNK_TYPE1","",0x1), 0x80A85480:("ObjPurifyInfoList","UNK_TYPE1","",0x1), 0x80A854A0:("D_80A854A0","UNK_TYPE1","",0x1), 0x80A88910:("D_80A88910","UNK_TYPE1","",0x1), @@ -12051,7 +12051,7 @@ 0x80A8892C:("D_80A8892C","UNK_TYPE1","",0x1), 0x80A88984:("D_80A88984","UNK_TYPE1","",0x1), 0x80A889A4:("D_80A889A4","UNK_TYPE1","",0x1), - 0x80A889B0:("En_Tru_InitVars","UNK_TYPE1","",0x1), + 0x80A889B0:("En_Tru_Profile","UNK_TYPE1","",0x1), 0x80A889D0:("D_80A889D0","UNK_TYPE1","",0x1), 0x80A88DD0:("D_80A88DD0","UNK_TYPE1","",0x1), 0x80A88FD0:("D_80A88FD0","UNK_TYPE1","",0x1), @@ -12085,7 +12085,7 @@ 0x80A8B478:("jtbl_D_80A8B478","UNK_PTR","",0x4), 0x80A8B48C:("jtbl_D_80A8B48C","UNK_PTR","",0x4), 0x80A8FE10:("sAnimations","UNK_TYPE1","",0x1), - 0x80A8FEB0:("En_Trt_InitVars","UNK_TYPE1","",0x1), + 0x80A8FEB0:("En_Trt_Profile","UNK_TYPE1","",0x1), 0x80A8FED0:("sActorScale","UNK_TYPE4","",0x4), 0x80A8FED4:("sShop","UNK_TYPE1","",0x1), 0x80A8FEEC:("sSelectedItemPosition","f32","",0x4), @@ -12106,8 +12106,8 @@ 0x80A8FF64:("D_80A8FF64","f32","",0x4), 0x80A8FF68:("D_80A8FF68","f32","",0x4), 0x80A8FF6C:("D_80A8FF6C","f32","",0x4), - 0x80A906E0:("En_Test5_InitVars","UNK_TYPE1","",0x1), - 0x80A93E60:("En_Test6_InitVars","UNK_TYPE1","",0x1), + 0x80A906E0:("En_Test5_Profile","UNK_TYPE1","",0x1), + 0x80A93E60:("En_Test6_Profile","UNK_TYPE1","",0x1), 0x80A93E80:("sDoubleSoTCsCamData","UNK_TYPE1","",0x1), 0x80A9402C:("sSoTCsAmmoDropTextures","UNK_TYPE1","",0x1), 0x80A94048:("sInvSoTCsFogColor","UNK_TYPE1","",0x1), @@ -12153,7 +12153,7 @@ 0x80A94364:("D_80A94364","f32","",0x4), 0x80A94910:("sSoTCsAmmoDrops","UNK_TYPE4","",0x4), 0x80A99010:("D_80A99010","UNK_TYPE4","",0x4), - 0x80A990F0:("En_Az_InitVars","UNK_TYPE1","",0x1), + 0x80A990F0:("En_Az_Profile","UNK_TYPE1","",0x1), 0x80A99110:("D_80A99110","UNK_TYPE1","",0x1), 0x80A9913C:("D_80A9913C","UNK_TYPE4","",0x4), 0x80A99140:("D_80A99140","UNK_TYPE1","",0x1), @@ -12197,7 +12197,7 @@ 0x80A99E80:("D_80A99E80","UNK_TYPE1","",0x1), 0x80A99E8C:("D_80A99E8C","f32","",0x4), 0x80A99E90:("D_80A99E90","f32","",0x4), - 0x80A9AB50:("En_Estone_InitVars","UNK_TYPE1","",0x1), + 0x80A9AB50:("En_Estone_Profile","UNK_TYPE1","",0x1), 0x80A9AB70:("D_80A9AB70","UNK_TYPE1","",0x1), 0x80A9ABA0:("D_80A9ABA0","f32","",0x4), 0x80A9ABA4:("D_80A9ABA4","f32","",0x4), @@ -12216,7 +12216,7 @@ 0x80A9ABD8:("D_80A9ABD8","f32","",0x4), 0x80A9ABDC:("D_80A9ABDC","f32","",0x4), 0x80A9ABE0:("D_80A9ABE0","f32","",0x4), - 0x80A9D860:("Bg_Hakugin_Post_InitVars","UNK_TYPE1","",0x1), + 0x80A9D860:("Bg_Hakugin_Post_Profile","UNK_TYPE1","",0x1), 0x80A9D880:("D_80A9D880","f32","",0x4), 0x80A9D884:("D_80A9D884","UNK_TYPE1","",0x1), 0x80A9D8B8:("D_80A9D8B8","UNK_TYPE1","",0x1), @@ -12269,13 +12269,13 @@ 0x80A9E2C8:("D_80A9E2C8","UNK_TYPE4","",0x4), 0x80A9F6A8:("D_80A9F6A8","UNK_TYPE1","",0x1), 0x80A9F94C:("D_80A9F94C","UNK_TYPE1","",0x1), - 0x80A9FD10:("Dm_Opstage_InitVars","UNK_TYPE1","",0x1), + 0x80A9FD10:("Dm_Opstage_Profile","UNK_TYPE1","",0x1), 0x80A9FD30:("D_80A9FD30","UNK_TYPE1","",0x1), 0x80A9FD40:("D_80A9FD40","f32","",0x4), 0x80A9FD44:("D_80A9FD44","f32","",0x4), 0x80A9FD48:("D_80A9FD48","f32","",0x4), 0x80A9FD4C:("D_80A9FD4C","f32","",0x4), - 0x80AA3580:("Dm_Stk_InitVars","UNK_TYPE1","",0x1), + 0x80AA3580:("Dm_Stk_Profile","UNK_TYPE1","",0x1), 0x80AA35A0:("D_80AA35A0","UNK_TYPE1","",0x1), 0x80AA35CC:("D_80AA35CC","UNK_PTR","",0x4), 0x80AA35D8:("D_80AA35D8","UNK_TYPE1","",0x1), @@ -12300,7 +12300,7 @@ 0x80AA4774:("D_80AA4774","f32","",0x4), 0x80AA4778:("jtbl_80AA4778","UNK_PTR","",0x4), 0x80AA479C:("jtbl_80AA479C","UNK_PTR","",0x4), - 0x80AA6F90:("Dm_Char00_InitVars","UNK_TYPE1","",0x1), + 0x80AA6F90:("Dm_Char00_Profile","UNK_TYPE1","",0x1), 0x80AA6FB0:("D_80AA6FB0","UNK_TYPE1","",0x1), 0x80AA77A8:("D_80AA77A8","UNK_TYPE1","",0x1), 0x80AA77D8:("D_80AA77D8","UNK_TYPE1","",0x1), @@ -12324,7 +12324,7 @@ 0x80AA9DC0:("D_80AA9DC0","UNK_TYPE2","",0x2), 0x80AA9DC2:("D_80AA9DC2","UNK_TYPE2","",0x2), 0x80AA9DD0:("D_80AA9DD0","UNK_TYPE2","",0x2), - 0x80AAAA90:("Dm_Char01_InitVars","UNK_TYPE1","",0x1), + 0x80AAAA90:("Dm_Char01_Profile","UNK_TYPE1","",0x1), 0x80AAAAB0:("D_80AAAAB0","UNK_TYPE1","",0x1), 0x80AAAAB4:("D_80AAAAB4","UNK_TYPE2","",0x2), 0x80AAAAB8:("D_80AAAAB8","f32","",0x4), @@ -12348,14 +12348,14 @@ 0x80AAAE22:("D_80AAAE22","UNK_TYPE1","",0x1), 0x80AAAE24:("D_80AAAE24","UNK_TYPE1","",0x1), 0x80AAAE26:("D_80AAAE26","UNK_TYPE1","",0x1), - 0x80AAB390:("Dm_Char02_InitVars","UNK_TYPE1","",0x1), + 0x80AAB390:("Dm_Char02_Profile","UNK_TYPE1","",0x1), 0x80AAB3B0:("D_80AAB3B0","UNK_TYPE1","",0x1), 0x80AAB410:("D_80AAB410","f32","",0x4), - 0x80AABB60:("Dm_Char03_InitVars","UNK_TYPE1","",0x1), + 0x80AABB60:("Dm_Char03_Profile","UNK_TYPE1","",0x1), 0x80AABB80:("D_80AABB80","UNK_TYPE1","",0x1), 0x80AABBA0:("D_80AABBA0","f32","",0x4), 0x80AABBA4:("D_80AABBA4","f32","",0x4), - 0x80AAC440:("Dm_Char04_InitVars","UNK_TYPE1","",0x1), + 0x80AAC440:("Dm_Char04_Profile","UNK_TYPE1","",0x1), 0x80AAC460:("D_80AAC460","UNK_TYPE1","",0x1), 0x80AAC490:("D_80AAC490","UNK_TYPE1","",0x1), 0x80AAC4C0:("D_80AAC4C0","UNK_TYPE1","",0x1), @@ -12364,7 +12364,7 @@ 0x80AAC504:("D_80AAC504","f32","",0x4), 0x80AAC508:("D_80AAC508","f32","",0x4), 0x80AAC50C:("D_80AAC50C","f32","",0x4), - 0x80AAE240:("Dm_Char05_InitVars","UNK_TYPE1","",0x1), + 0x80AAE240:("Dm_Char05_Profile","UNK_TYPE1","",0x1), 0x80AAE260:("D_80AAE260","UNK_TYPE1","",0x1), 0x80AAE278:("D_80AAE278","UNK_TYPE1","",0x1), 0x80AAE2A8:("D_80AAE2A8","UNK_PTR","",0x4), @@ -12381,9 +12381,9 @@ 0x80AAE3BC:("D_80AAE3BC","f32","",0x4), 0x80AAE3C0:("D_80AAE3C0","f32","",0x4), 0x80AAE3C4:("D_80AAE3C4","f32","",0x4), - 0x80AAE960:("Dm_Char06_InitVars","UNK_TYPE1","",0x1), - 0x80AAEFF0:("Dm_Char07_InitVars","UNK_TYPE1","",0x1), - 0x80AB1370:("Dm_Char08_InitVars","UNK_TYPE1","",0x1), + 0x80AAE960:("Dm_Char06_Profile","UNK_TYPE1","",0x1), + 0x80AAEFF0:("Dm_Char07_Profile","UNK_TYPE1","",0x1), + 0x80AB1370:("Dm_Char08_Profile","UNK_TYPE1","",0x1), 0x80AB1390:("D_80AB1390","CamData","",0x8), 0x80AB1398:("D_80AB1398","SurfaceType","",0x8), 0x80AB13A0:("D_80AB13A0","CollisionPoly","19",0xCC), @@ -12439,7 +12439,7 @@ 0x80AB1998:("D_80AB1998","f32","",0x4), 0x80AB199C:("D_80AB199C","f32","",0x4), 0x80AB19A0:("D_80AB19A0","f32","",0x4), - 0x80AB2690:("Dm_Char09_InitVars","UNK_TYPE1","",0x1), + 0x80AB2690:("Dm_Char09_Profile","UNK_TYPE1","",0x1), 0x80AB26B0:("D_80AB26B0","UNK_PTR","",0x4), 0x80AB26D0:("D_80AB26D0","f32","",0x4), 0x80AB26D4:("D_80AB26D4","f32","",0x4), @@ -12448,7 +12448,7 @@ 0x80AB26E0:("D_80AB26E0","f32","",0x4), 0x80AB26E4:("D_80AB26E4","f32","",0x4), 0x80AB26E8:("D_80AB26E8","f32","",0x4), - 0x80AB49C0:("Obj_Tokeidai_InitVars","UNK_TYPE1","",0x1), + 0x80AB49C0:("Obj_Tokeidai_Profile","UNK_TYPE1","",0x1), 0x80AB49E0:("D_80AB49E0","UNK_TYPE1","",0x1), 0x80AB49F0:("D_80AB49F0","f32","",0x4), 0x80AB49F4:("D_80AB49F4","f32","",0x4), @@ -12469,7 +12469,7 @@ 0x80AB4A5C:("D_80AB4A5C","f32","",0x4), 0x80AB4A60:("D_80AB4A60","f32","",0x4), 0x80AB4A64:("D_80AB4A64","f32","",0x4), - 0x80AB9CF0:("En_Mnk_InitVars","UNK_TYPE1","",0x1), + 0x80AB9CF0:("En_Mnk_Profile","UNK_TYPE1","",0x1), 0x80AB9D10:("D_80AB9D10","UNK_TYPE1","",0x1), 0x80AB9D3C:("D_80AB9D3C","UNK_TYPE1","",0x1), 0x80AB9D60:("D_80AB9D60","UNK_TYPE1","",0x1), @@ -12498,12 +12498,12 @@ 0x80AB9FA8:("D_80AB9FA8","f32","",0x4), 0x80AB9FAC:("jtbl_80AB9FAC","UNK_PTR","",0x4), 0x80AB9FC0:("jtbl_80AB9FC0","UNK_PTR","",0x4), - 0x80ABB040:("En_Egblock_InitVars","UNK_TYPE1","",0x1), + 0x80ABB040:("En_Egblock_Profile","UNK_TYPE1","",0x1), 0x80ABB060:("D_80ABB060","f32","",0x4), 0x80ABB064:("D_80ABB064","f32","",0x4), 0x80ABB068:("D_80ABB068","f32","",0x4), 0x80ABB06C:("D_80ABB06C","f32","",0x4), - 0x80ABBDD0:("En_Guard_Nuts_InitVars","UNK_TYPE1","",0x1), + 0x80ABBDD0:("En_Guard_Nuts_Profile","UNK_TYPE1","",0x1), 0x80ABBDF0:("D_80ABBDF0","UNK_TYPE1","",0x1), 0x80ABBE1C:("D_80ABBE1C","UNK_TYPE4","",0x4), 0x80ABBE20:("D_80ABBE20","UNK_TYPE4","",0x4), @@ -12514,7 +12514,7 @@ 0x80ABBE60:("D_80ABBE60","UNK_TYPE1","",0x1), 0x80ABBE70:("D_80ABBE70","f32","",0x4), 0x80ABBE74:("D_80ABBE74","f32","",0x4), - 0x80ABCF60:("Bg_Hakugin_Bombwall_InitVars","UNK_TYPE1","",0x1), + 0x80ABCF60:("Bg_Hakugin_Bombwall_Profile","UNK_TYPE1","",0x1), 0x80ABCF80:("D_80ABCF80","UNK_TYPE1","",0x1), 0x80ABCFAC:("D_80ABCFAC","UNK_TYPE1","",0x1), 0x80ABCFB0:("D_80ABCFB0","UNK_TYPE1","",0x1), @@ -12534,7 +12534,7 @@ 0x80ABD068:("D_80ABD068","f32","",0x4), 0x80ABD06C:("D_80ABD06C","f32","",0x4), 0x80ABD070:("D_80ABD070","f32","",0x4), - 0x80ABD730:("Obj_Tokei_Tobira_InitVars","UNK_TYPE1","",0x1), + 0x80ABD730:("Obj_Tokei_Tobira_Profile","UNK_TYPE1","",0x1), 0x80ABD750:("D_80ABD750","UNK_TYPE1","",0x1), 0x80ABD760:("D_80ABD760","UNK_TYPE1","",0x1), 0x80ABD76C:("D_80ABD76C","UNK_TYPE1","",0x1), @@ -12545,8 +12545,8 @@ 0x80ABD794:("D_80ABD794","f32","",0x4), 0x80ABD798:("D_80ABD798","f32","",0x4), 0x80ABD79C:("D_80ABD79C","f32","",0x4), - 0x80ABDC50:("Bg_Hakugin_Elvpole_InitVars","UNK_TYPE1","",0x1), - 0x80AC0090:("En_Ma4_InitVars","UNK_TYPE1","",0x1), + 0x80ABDC50:("Bg_Hakugin_Elvpole_Profile","UNK_TYPE1","",0x1), + 0x80AC0090:("En_Ma4_Profile","UNK_TYPE1","",0x1), 0x80AC00B0:("D_80AC00B0","UNK_TYPE1","",0x1), 0x80AC00DC:("sColChkInfoInit","UNK_TYPE1","",0x1), 0x80AC00E8:("D_80AC00E8","UNK_TYPE1","",0x1), @@ -12565,7 +12565,7 @@ 0x80AC027C:("jtbl_80AC027C","UNK_PTR","",0x4), 0x80AC0300:("jtbl_80AC0300","UNK_PTR","",0x4), 0x80AC03E4:("jtbl_80AC03E4","UNK_PTR","",0x4), - 0x80AC1090:("En_Twig_InitVars","UNK_TYPE1","",0x1), + 0x80AC1090:("En_Twig_Profile","UNK_TYPE1","",0x1), 0x80AC10B0:("D_80AC10B0","UNK_TYPE1","",0x1), 0x80AC10BC:("D_80AC10BC","UNK_TYPE2","",0x2), 0x80AC10C0:("D_80AC10C0","UNK_TYPE1","",0x1), @@ -12584,7 +12584,7 @@ 0x80AC1230:("D_80AC1230","UNK_TYPE1","",0x1), 0x80AC1234:("D_80AC1234","UNK_TYPE1","",0x1), 0x80AC1238:("D_80AC1238","UNK_TYPE1","",0x1), - 0x80AC1D80:("En_Po_Fusen_InitVars","UNK_TYPE1","",0x1), + 0x80AC1D80:("En_Po_Fusen_Profile","UNK_TYPE1","",0x1), 0x80AC1DA0:("D_80AC1DA0","UNK_TYPE1","",0x1), 0x80AC1DCC:("D_80AC1DCC","UNK_TYPE1","",0x1), 0x80AC1DF0:("D_80AC1DF0","f32","",0x4), @@ -12593,12 +12593,12 @@ 0x80AC1DFC:("D_80AC1DFC","f32","",0x4), 0x80AC1E00:("D_80AC1E00","f32","",0x4), 0x80AC1E04:("D_80AC1E04","f32","",0x4), - 0x80AC2580:("En_Door_Etc_InitVars","UNK_TYPE1","",0x1), + 0x80AC2580:("En_Door_Etc_Profile","UNK_TYPE1","",0x1), 0x80AC25A0:("sCylinderInit","UNK_TYPE1","",0x1), 0x80AC25CC:("sObjectInfo","UNK_TYPE2","",0x2), 0x80AC2634:("sInitChain","UNK_TYPE1","",0x1), 0x80AC2650:("D_80AC2650","f32","",0x4), - 0x80AC4510:("En_Bigokuta_InitVars","UNK_TYPE1","",0x1), + 0x80AC4510:("En_Bigokuta_Profile","UNK_TYPE1","",0x1), 0x80AC4530:("D_80AC4530","UNK_TYPE1","",0x1), 0x80AC455C:("D_80AC455C","UNK_TYPE1","",0x1), 0x80AC4588:("D_80AC4588","UNK_TYPE1","",0x1), @@ -12639,7 +12639,7 @@ 0x80AC4678:("D_80AC4678","f32","",0x4), 0x80AC467C:("D_80AC467C","f32","",0x4), 0x80AC4680:("D_80AC4680","f32","",0x4), - 0x80AC4F10:("Bg_Icefloe_InitVars","UNK_TYPE1","",0x1), + 0x80AC4F10:("Bg_Icefloe_Profile","UNK_TYPE1","",0x1), 0x80AC4F30:("D_80AC4F30","UNK_TYPE4","",0x4), 0x80AC4F38:("D_80AC4F38","UNK_TYPE4","",0x4), 0x80AC4F3C:("D_80AC4F3C","UNK_TYPE1","",0x1), @@ -12653,7 +12653,7 @@ 0x80AC5060:("D_80AC5060","UNK_TYPE1","",0x1), 0x80AC5630:("sTransTriforceDL","UNK_TYPE1","",0x1), 0x80AC5660:("sTransTriforceVtx","UNK_TYPE1","",0x1), - 0x80AC5700:("TransitionTriforce_InitVars","UNK_PTR","",0x4), + 0x80AC5700:("TransitionTriforce_Profile","UNK_PTR","",0x4), 0x80AC5730:("D_80AC5730","f32","",0x4), 0x80AC5734:("D_80AC5734","f32","",0x4), 0x80AC5738:("D_80AC5738","f32","",0x4), @@ -12661,7 +12661,7 @@ 0x80AC5C20:("D_80AC5C20","UNK_TYPE1","",0x1), 0x80AC5DB0:("D_80AC5DB0","UNK_TYPE1","",0x1), 0x80AC65B0:("D_80AC65B0","UNK_TYPE1","",0x1), - 0x80AC66A8:("TransitionWipe1_InitVars","UNK_PTR","",0x4), + 0x80AC66A8:("TransitionWipe1_Profile","UNK_PTR","",0x4), 0x80AC66D0:("D_80AC66D0","f32","",0x4), 0x80AC6C60:("fbdemo_tex_000520","UNK_TYPE1","",0x1), 0x80AC7060:("fbdemo_tex_000920","UNK_TYPE1","",0x1), @@ -12671,17 +12671,17 @@ 0x80AC8060:("sTransWipe3Vtx","UNK_TYPE1","",0x1), 0x80AC8280:("sTransWipe3DL","UNK_TYPE1","",0x1), 0x80AC8350:("sTransWipe3Textures","TexturePtr[]","8",0x4), - 0x80AC8370:("TransitionWipe3_InitVars","UNK_PTR","",0x4), + 0x80AC8370:("TransitionWipe3_Profile","UNK_PTR","",0x4), 0x80AC83A0:("D_80AC83A0","f32","",0x4), - 0x80AC8650:("TransitionWipe4_InitVars","UNK_PTR","",0x4), + 0x80AC8650:("TransitionWipe4_Profile","UNK_PTR","",0x4), 0x80AC8680:("D_80AC8680","f32","",0x4), 0x80AC8684:("D_80AC8684","f32","",0x4), 0x80AC8688:("D_80AC8688","f32","",0x4), - 0x80AC8AB0:("TransitionWipe5_InitVars","UNK_PTR","",0x4), + 0x80AC8AB0:("TransitionWipe5_Profile","UNK_PTR","",0x4), 0x80AC8AE0:("D_80AC8AE0","f32","",0x4), 0x80AC8AE4:("D_80AC8AE4","f32","",0x4), 0x80AC8AE8:("D_80AC8AE8","f32","",0x4), - 0x80AC93B0:("Effect_Ss_Sbn_InitVars","UNK_TYPE1","",0x1), + 0x80AC93B0:("Effect_Ss_Sbn_Profile","UNK_TYPE1","",0x1), 0x80AC93B8:("D_80AC93B8","UNK_TYPE1","",0x1), 0x80AC93E8:("D_80AC93E8","UNK_TYPE1","",0x1), 0x80AC9400:("D_80AC9400","f32","",0x4), @@ -12693,7 +12693,7 @@ 0x80AC9418:("D_80AC9418","f32","",0x4), 0x80AC941C:("D_80AC941C","f32","",0x4), 0x80AC9420:("D_80AC9420","f32","",0x4), - 0x80AC9D50:("Obj_Ocarinalift_InitVars","UNK_TYPE1","",0x1), + 0x80AC9D50:("Obj_Ocarinalift_Profile","UNK_TYPE1","",0x1), 0x80AC9D70:("D_80AC9D70","UNK_TYPE1","",0x1), 0x80AC9D90:("D_80AC9D90","f32","",0x4), 0x80AC9D94:("D_80AC9D94","f32","",0x4), @@ -12702,16 +12702,16 @@ 0x80AC9DA0:("D_80AC9DA0","f32","",0x4), 0x80AC9DA4:("D_80AC9DA4","f32","",0x4), 0x80AC9DA8:("D_80AC9DA8","f32","",0x4), - 0x80ACA9D0:("En_Time_Tag_InitVars","UNK_TYPE1","",0x1), + 0x80ACA9D0:("En_Time_Tag_Profile","UNK_TYPE1","",0x1), 0x80ACA9F0:("jtbl_80ACA9F0","UNK_PTR","",0x4), - 0x80ACB120:("Bg_Open_Shutter_InitVars","UNK_TYPE1","",0x1), + 0x80ACB120:("Bg_Open_Shutter_Profile","UNK_TYPE1","",0x1), 0x80ACB140:("D_80ACB140","UNK_TYPE1","",0x1), 0x80ACB150:("D_80ACB150","f32","",0x4), - 0x80ACB390:("Bg_Open_Spot_InitVars","UNK_TYPE1","",0x1), + 0x80ACB390:("Bg_Open_Spot_Profile","UNK_TYPE1","",0x1), 0x80ACB3B0:("D_80ACB3B0","UNK_TYPE1","",0x1), - 0x80ACB630:("Bg_Fu_Kaiten_InitVars","ActorInit","",0x20), + 0x80ACB630:("Bg_Fu_Kaiten_Profile","ActorInit","",0x20), 0x80ACB650:("D_80ACB650","f32","",0x4), - 0x80ACC2A0:("Obj_Aqua_InitVars","UNK_TYPE1","",0x1), + 0x80ACC2A0:("Obj_Aqua_Profile","UNK_TYPE1","",0x1), 0x80ACC2C0:("D_80ACC2C0","UNK_TYPE1","",0x1), 0x80ACC2EC:("D_80ACC2EC","UNK_TYPE1","",0x1), 0x80ACC308:("D_80ACC308","UNK_TYPE1","",0x1), @@ -12729,7 +12729,7 @@ 0x80ACC354:("D_80ACC354","f32","",0x4), 0x80ACC358:("D_80ACC358","f32","",0x4), 0x80ACC35C:("D_80ACC35C","f32","",0x4), - 0x80ACDA10:("En_Elforg_InitVars","UNK_TYPE1","",0x1), + 0x80ACDA10:("En_Elforg_Profile","UNK_TYPE1","",0x1), 0x80ACDA30:("D_80ACDA30","UNK_TYPE1","",0x1), 0x80ACDA5C:("D_80ACDA5C","UNK_TYPE1","",0x1), 0x80ACDA68:("D_80ACDA68","UNK_TYPE1","",0x1), @@ -12743,14 +12743,14 @@ 0x80ACDAEC:("D_80ACDAEC","f32","",0x4), 0x80ACDAF0:("D_80ACDAF0","f32","",0x4), 0x80ACDAF4:("D_80ACDAF4","f32","",0x4), - 0x80ACE250:("En_Elfbub_InitVars","UNK_TYPE1","",0x1), + 0x80ACE250:("En_Elfbub_Profile","UNK_TYPE1","",0x1), 0x80ACE270:("D_80ACE270","UNK_TYPE1","",0x1), 0x80ACE29C:("D_80ACE29C","UNK_TYPE1","",0x1), 0x80ACE2A0:("D_80ACE2A0","UNK_TYPE1","",0x1), 0x80ACE2A4:("D_80ACE2A4","UNK_TYPE1","",0x1), 0x80ACE2B0:("D_80ACE2B0","f32","",0x4), 0x80ACE2B4:("D_80ACE2B4","f32","",0x4), - 0x80ACF5F0:("En_Fu_Mato_InitVars","UNK_TYPE1","",0x1), + 0x80ACF5F0:("En_Fu_Mato_Profile","UNK_TYPE1","",0x1), 0x80ACF610:("D_80ACF610","UNK_TYPE1","",0x1), 0x80ACF63C:("D_80ACF63C","UNK_TYPE4","",0x4), 0x80ACF654:("D_80ACF654","UNK_TYPE1","",0x1), @@ -12758,7 +12758,7 @@ 0x80ACF690:("D_80ACF690","UNK_TYPE4","",0x4), 0x80ACF6A0:("D_80ACF6A0","f32","",0x4), 0x80ACF6A4:("D_80ACF6A4","f32","",0x4), - 0x80AD05D0:("En_Fu_Kago_InitVars","UNK_TYPE1","",0x1), + 0x80AD05D0:("En_Fu_Kago_Profile","UNK_TYPE1","",0x1), 0x80AD05F0:("D_80AD05F0","UNK_TYPE1","",0x1), 0x80AD061C:("D_80AD061C","UNK_PTR","",0x4), 0x80AD0634:("D_80AD0634","UNK_TYPE4","",0x4), @@ -12773,7 +12773,7 @@ 0x80AD0730:("D_80AD0730","f32","",0x4), 0x80AD0734:("D_80AD0734","f32","",0x4), 0x80AD0738:("D_80AD0738","f32","",0x4), - 0x80AD22A0:("En_Osn_InitVars","UNK_TYPE1","",0x1), + 0x80AD22A0:("En_Osn_Profile","UNK_TYPE1","",0x1), 0x80AD22C0:("D_80AD22C0","UNK_PTR","",0x4), 0x80AD2518:("D_80AD2518","UNK_TYPE1","",0x1), 0x80AD2544:("D_80AD2544","UNK_TYPE1","",0x1), @@ -12791,7 +12791,7 @@ 0x80AD2640:("jtbl_80AD2640","UNK_PTR","",0x4), 0x80AD2740:("jtbl_80AD2740","UNK_PTR","",0x4), 0x80AD27A0:("D_80AD27A0","f32","",0x4), - 0x80AD3250:("Bg_Ctower_Gear_InitVars","UNK_TYPE1","",0x1), + 0x80AD3250:("Bg_Ctower_Gear_Profile","UNK_TYPE1","",0x1), 0x80AD3270:("D_80AD3270","UNK_TYPE4","",0x4), 0x80AD32A0:("D_80AD32A0","UNK_TYPE4","",0x4), 0x80AD32C4:("D_80AD32C4","UNK_TYPE1","",0x1), @@ -12799,7 +12799,7 @@ 0x80AD32DC:("D_80AD32DC","UNK_TYPE1","",0x1), 0x80AD32E8:("D_80AD32E8","UNK_TYPE1","",0x1), 0x80AD57E0:("D_80AD57E0","UNK_TYPE1","",0x1), - 0x80AD5880:("En_Trt2_InitVars","UNK_TYPE1","",0x1), + 0x80AD5880:("En_Trt2_Profile","UNK_TYPE1","",0x1), 0x80AD58A0:("D_80AD58A0","UNK_TYPE1","",0x1), 0x80AD58CC:("D_80AD58CC","UNK_PTR","",0x4), 0x80AD58D8:("D_80AD58D8","UNK_TYPE1","",0x1), @@ -12816,21 +12816,21 @@ 0x80AD5998:("D_80AD5998","f32","",0x4), 0x80AD599C:("D_80AD599C","f32","",0x4), 0x80AD59A0:("D_80AD59A0","f32","",0x4), - 0x80AD6600:("Obj_Tokei_Step_InitVars","UNK_TYPE1","",0x1), + 0x80AD6600:("Obj_Tokei_Step_Profile","UNK_TYPE1","",0x1), 0x80AD6620:("D_80AD6620","UNK_TYPE4","",0x4), 0x80AD663C:("D_80AD663C","UNK_TYPE4","",0x4), 0x80AD6658:("D_80AD6658","UNK_TYPE1","",0x1), 0x80AD6664:("D_80AD6664","UNK_TYPE1","",0x1), 0x80AD6680:("D_80AD6680","f32","",0x4), 0x80AD6684:("D_80AD6684","f32","",0x4), - 0x80AD6CF0:("Bg_Lotus_InitVars","UNK_TYPE1","",0x1), + 0x80AD6CF0:("Bg_Lotus_Profile","UNK_TYPE1","",0x1), 0x80AD6D10:("D_80AD6D10","UNK_TYPE1","",0x1), 0x80AD6D20:("D_80AD6D20","f32","",0x4), 0x80AD6D24:("D_80AD6D24","f32","",0x4), 0x80AD6D28:("D_80AD6D28","f32","",0x4), 0x80AD6D2C:("D_80AD6D2C","f32","",0x4), 0x80AD6D30:("D_80AD6D30","f32","",0x4), - 0x80AD8DC0:("En_Kame_InitVars","UNK_TYPE1","",0x1), + 0x80AD8DC0:("En_Kame_Profile","UNK_TYPE1","",0x1), 0x80AD8DE0:("D_80AD8DE0","UNK_TYPE1","",0x1), 0x80AD8E0C:("D_80AD8E0C","UNK_TYPE1","",0x1), 0x80AD8E14:("D_80AD8E14","UNK_TYPE1","",0x1), @@ -12870,7 +12870,7 @@ 0x80AD8F20:("D_80AD8F20","f32","",0x4), 0x80AD8F24:("D_80AD8F24","f32","",0x4), 0x80AD8F28:("D_80AD8F28","f32","",0x4), - 0x80ADA280:("Obj_Takaraya_Wall_InitVars","UNK_TYPE1","",0x1), + 0x80ADA280:("Obj_Takaraya_Wall_Profile","UNK_TYPE1","",0x1), 0x80ADA2A0:("D_80ADA2A0","UNK_TYPE1","",0x1), 0x80ADA2CC:("D_80ADA2CC","UNK_TYPE1","",0x1), 0x80ADA2D0:("D_80ADA2D0","f32","",0x4), @@ -12882,7 +12882,7 @@ 0x80ADA930:("sTakarayaWallStates","UNK_TYPE1","",0x1), 0x80ADA988:("sTakarayaWallHeights","f32","",0x160), 0x80ADAAE8:("D_80ADAAE8","UNK_TYPE1","",0x1), - 0x80ADAD80:("Bg_Fu_Mizu_InitVars","UNK_TYPE1","",0x1), + 0x80ADAD80:("Bg_Fu_Mizu_Profile","UNK_TYPE1","",0x1), 0x80ADD910:("D_80ADD910","UNK_TYPE1","",0x1), 0x80ADD918:("D_80ADD918","UNK_TYPE1","",0x1), 0x80ADD920:("D_80ADD920","UNK_TYPE1","",0x1), @@ -12890,7 +12890,7 @@ 0x80ADD930:("D_80ADD930","UNK_TYPE1","",0x1), 0x80ADD938:("D_80ADD938","UNK_TYPE1","",0x1), 0x80ADD940:("D_80ADD940","UNK_TYPE1","",0x1), - 0x80ADD944:("En_Sellnuts_InitVars","UNK_TYPE1","",0x1), + 0x80ADD944:("En_Sellnuts_Profile","UNK_TYPE1","",0x1), 0x80ADD964:("D_80ADD964","UNK_TYPE1","",0x1), 0x80ADD990:("sAnimationInfo","UNK_TYPE1","",0x1), 0x80ADDB00:("D_80ADDB00","UNK_TYPE1","",0x1), @@ -12916,7 +12916,7 @@ 0x80ADDC98:("D_80ADDC98","f32","",0x4), 0x80ADDC9C:("D_80ADDC9C","f32","",0x4), 0x80ADDCA0:("D_80ADDCA0","f32","",0x4), - 0x80ADE930:("Bg_Dkjail_Ivy_InitVars","UNK_TYPE1","",0x1), + 0x80ADE930:("Bg_Dkjail_Ivy_Profile","UNK_TYPE1","",0x1), 0x80ADE950:("D_80ADE950","UNK_TYPE1","",0x1), 0x80ADE97C:("D_80ADE97C","UNK_TYPE1","",0x1), 0x80ADE984:("D_80ADE984","UNK_TYPE2","",0x2), @@ -12929,9 +12929,9 @@ 0x80ADE9B4:("D_80ADE9B4","f32","",0x4), 0x80ADE9B8:("D_80ADE9B8","f32","",0x4), 0x80ADE9BC:("D_80ADE9BC","f32","",0x4), - 0x80ADEB30:("Obj_Visiblock_InitVars","UNK_TYPE1","",0x1), + 0x80ADEB30:("Obj_Visiblock_Profile","UNK_TYPE1","",0x1), 0x80ADEB50:("D_80ADEB50","UNK_TYPE1","",0x1), - 0x80ADFAE0:("En_Takaraya_InitVars","UNK_TYPE1","",0x1), + 0x80ADFAE0:("En_Takaraya_Profile","UNK_TYPE1","",0x1), 0x80ADFB00:("D_80ADFB00","UNK_TYPE4","",0x4), 0x80ADFB10:("D_80ADFB10","UNK_TYPE4","",0x4), 0x80ADFB20:("D_80ADFB20","UNK_TYPE1","",0x1), @@ -12943,18 +12943,18 @@ 0x80ADFB50:("D_80ADFB50","UNK_TYPE1","",0x1), 0x80ADFB60:("D_80ADFB60","f32","",0x4), 0x80ADFB64:("D_80ADFB64","f32","",0x4), - 0x80AE1170:("En_Tsn_InitVars","UNK_TYPE1","",0x1), + 0x80AE1170:("En_Tsn_Profile","UNK_TYPE1","",0x1), 0x80AE1190:("D_80AE1190","UNK_TYPE1","",0x1), 0x80AE11BC:("D_80AE11BC","UNK_TYPE4","",0x4), 0x80AE11C8:("D_80AE11C8","UNK_TYPE1","",0x1), 0x80AE11D0:("jtbl_80AE11D0","UNK_PTR","",0x4), 0x80AE1224:("jtbl_80AE1224","UNK_PTR","",0x4), 0x80AE127C:("jtbl_80AE127C","UNK_PTR","",0x4), - 0x80AE1AB0:("En_Ds2n_InitVars","UNK_TYPE1","",0x1), + 0x80AE1AB0:("En_Ds2n_Profile","UNK_TYPE1","",0x1), 0x80AE1AD0:("D_80AE1AD0","UNK_PTR","",0x4), 0x80AE1AE8:("D_80AE1AE8","UNK_TYPE4","",0x4), 0x80AE1AF4:("D_80AE1AF4","UNK_TYPE1","",0x1), - 0x80AE5B00:("En_Fsn_InitVars","UNK_TYPE1","",0x1), + 0x80AE5B00:("En_Fsn_Profile","UNK_TYPE1","",0x1), 0x80AE5B20:("sAnimations","UNK_TYPE1","",0x1), 0x80AE5BF0:("D_80AE5BF0","UNK_TYPE1","",0x1), 0x80AE5C1C:("sShopItemPositions","UNK_TYPE4","",0x4), @@ -12976,11 +12976,11 @@ 0x80AE70B0:("D_80AE70B0","UNK_TYPE1","",0x1), 0x80AE70B8:("D_80AE70B8","UNK_TYPE1","",0x1), 0x80AE71C4:("D_80AE71C4","UNK_TYPE1","",0x1), - 0x80AE71F8:("En_Shn_InitVars","UNK_TYPE1","",0x1), + 0x80AE71F8:("En_Shn_Profile","UNK_TYPE1","",0x1), 0x80AE7218:("D_80AE7218","UNK_TYPE1","",0x1), 0x80AE7270:("D_80AE7270","UNK_TYPE1","",0x1), 0x80AE7280:("jtbl_80AE7280","UNK_PTR","",0x4), - 0x80AE8890:("En_Stop_heishi_InitVars","UNK_TYPE1","",0x1), + 0x80AE8890:("En_Stop_heishi_Profile","UNK_TYPE1","",0x1), 0x80AE88B0:("sCylinderInit","UNK_TYPE1","",0x1), 0x80AE88DC:("D_80AE88DC","UNK_TYPE1","",0x1), 0x80AE897C:("D_80AE897C","UNK_TYPE1","",0x1), @@ -12990,7 +12990,7 @@ 0x80AE8A30:("D_80AE8A30","UNK_TYPE1","",0x1), 0x80AE8A40:("D_80AE8A40","f32","",0x4), 0x80AE8A44:("jtbl_80AE8A44","UNK_PTR","",0x4), - 0x80AE9800:("Obj_Bigicicle_InitVars","UNK_TYPE1","",0x1), + 0x80AE9800:("Obj_Bigicicle_Profile","UNK_TYPE1","",0x1), 0x80AE9820:("D_80AE9820","UNK_TYPE1","",0x1), 0x80AE984C:("D_80AE984C","UNK_TYPE1","",0x1), 0x80AE9878:("D_80AE9878","UNK_PTR","",0x4), @@ -13010,7 +13010,7 @@ 0x80AE98D8:("D_80AE98D8","f32","",0x4), 0x80AE98DC:("D_80AE98DC","f32","",0x4), 0x80AE98E0:("D_80AE98E0","f32","",0x4), - 0x80AEBD30:("En_Lift_Nuts_InitVars","UNK_TYPE1","",0x1), + 0x80AEBD30:("En_Lift_Nuts_Profile","UNK_TYPE1","",0x1), 0x80AEBD50:("D_80AEBD50","UNK_TYPE1","",0x1), 0x80AEBF18:("D_80AEBF18","UNK_TYPE1","",0x1), 0x80AEBF28:("D_80AEBF28","UNK_TYPE1","",0x1), @@ -13027,7 +13027,7 @@ 0x80AEC018:("jtbl_80AEC018","UNK_PTR","",0x4), 0x80AEC034:("D_80AEC034","f32","",0x4), 0x80AEF800:("D_80AEF800","UNK_TYPE1","",0x1), - 0x80AEF810:("En_Tk_InitVars","UNK_TYPE1","",0x1), + 0x80AEF810:("En_Tk_Profile","UNK_TYPE1","",0x1), 0x80AEF830:("D_80AEF830","UNK_TYPE1","",0x1), 0x80AEF868:("sAnimationSpeedInfo","UNK_TYPE1","",0x1), 0x80AEF8EC:("D_80AEF8EC","UNK_TYPE1","",0x1), @@ -13045,11 +13045,11 @@ 0x80AEFBC0:("D_80AEFBC0","f32","",0x4), 0x80AEFBC4:("jtbl_80AEFBC4","UNK_PTR","",0x4), 0x80AF0050:("D_80AF0050","UNK_TYPE1","",0x1), - 0x80AF00F0:("Bg_Market_Step_InitVars","UNK_TYPE1","",0x1), + 0x80AF00F0:("Bg_Market_Step_Profile","UNK_TYPE1","",0x1), 0x80AF0110:("D_80AF0110","UNK_TYPE1","",0x1), 0x80AF0120:("sMarketDLs","UNK_TYPE1","",0x1), 0x80AF0128:("sBankAdvertisementsAndFakeDoorDLs","UNK_TYPE1","",0x1), - 0x80AF0720:("Obj_Lupygamelift_InitVars","UNK_TYPE1","",0x1), + 0x80AF0720:("Obj_Lupygamelift_Profile","UNK_TYPE1","",0x1), 0x80AF0740:("D_80AF0740","UNK_TYPE1","",0x1), 0x80AF0750:("D_80AF0750","f32","",0x4), 0x80AF0754:("D_80AF0754","f32","",0x4), @@ -13060,7 +13060,7 @@ 0x80AF0770:("D_80AF0770","f32","",0x4), 0x80AF0774:("D_80AF0774","f32","",0x4), 0x80AF0778:("D_80AF0778","f32","",0x4), - 0x80AF33F0:("En_Test7_InitVars","UNK_TYPE1","",0x1), + 0x80AF33F0:("En_Test7_Profile","UNK_TYPE1","",0x1), 0x80AF3404:("D_80AF3404","UNK_TYPE1","",0x1), 0x80AF3410:("sFeatherIndex","UNK_TYPE4","",0x4), 0x80AF3414:("sUnitVecY","UNK_TYPE1","",0x1), @@ -13115,15 +13115,15 @@ 0x80AF38F0:("sFeatherAccel","Vec3f","",0xC), 0x80AF38FC:("D_80AF38FC","UNK_TYPE4","",0x4), 0x80AF3900:("sFeatherUnused","Vec3f","",0xC), - 0x80AF3E80:("Obj_Lightblock_InitVars","UNK_TYPE1","",0x1), + 0x80AF3E80:("Obj_Lightblock_Profile","UNK_TYPE1","",0x1), 0x80AF3EA0:("D_80AF3EA0","UNK_TYPE1","",0x1), 0x80AF3ECC:("D_80AF3ECC","UNK_TYPE1","",0x1), 0x80AF3EEC:("D_80AF3EEC","UNK_TYPE1","",0x1), - 0x80AF4330:("Mir_Ray2_InitVars","UNK_TYPE1","",0x1), + 0x80AF4330:("Mir_Ray2_Profile","UNK_TYPE1","",0x1), 0x80AF4350:("D_80AF4350","UNK_TYPE1","",0x1), 0x80AF4374:("D_80AF4374","UNK_TYPE1","",0x1), 0x80AF4390:("D_80AF4390","f32","",0x4), - 0x80AF63C0:("En_Wdhand_InitVars","UNK_TYPE1","",0x1), + 0x80AF63C0:("En_Wdhand_Profile","UNK_TYPE1","",0x1), 0x80AF63E0:("D_80AF63E0","UNK_TYPE1","",0x1), 0x80AF64DC:("D_80AF64DC","UNK_TYPE1","",0x1), 0x80AF64EC:("D_80AF64EC","UNK_TYPE1","",0x1), @@ -13151,7 +13151,7 @@ 0x80AF6578:("D_80AF6578","f32","",0x4), 0x80AF657C:("D_80AF657C","f32","",0x4), 0x80AF6580:("D_80AF6580","f32","",0x4), - 0x80AF6CD0:("En_Gamelupy_InitVars","UNK_TYPE1","",0x1), + 0x80AF6CD0:("En_Gamelupy_Profile","UNK_TYPE1","",0x1), 0x80AF6CF0:("D_80AF6CF0","UNK_TYPE1","",0x1), 0x80AF6D1C:("D_80AF6D1C","UNK_TYPE1","",0x1), 0x80AF6D30:("D_80AF6D30","UNK_TYPE1","",0x1), @@ -13159,14 +13159,14 @@ 0x80AF6D40:("D_80AF6D40","f32","",0x4), 0x80AF6D44:("D_80AF6D44","f32","",0x4), 0x80AF6D48:("D_80AF6D48","f32","",0x4), - 0x80AF7510:("Bg_Danpei_Movebg_InitVars","UNK_TYPE1","",0x1), + 0x80AF7510:("Bg_Danpei_Movebg_Profile","UNK_TYPE1","",0x1), 0x80AF7530:("D_80AF7530","UNK_TYPE1","",0x1), 0x80AF7534:("D_80AF7534","UNK_TYPE1","",0x1), 0x80AF7538:("D_80AF7538","UNK_TYPE1","",0x1), 0x80AF753C:("D_80AF753C","UNK_TYPE1","",0x1), 0x80AF7550:("D_80AF7550","f32","",0x4), 0x80AF7554:("D_80AF7554","f32","",0x4), - 0x80AF7A70:("En_Snowwd_InitVars","UNK_TYPE1","",0x1), + 0x80AF7A70:("En_Snowwd_Profile","UNK_TYPE1","",0x1), 0x80AF7A90:("D_80AF7A90","UNK_TYPE1","",0x1), 0x80AF7ABC:("D_80AF7ABC","UNK_TYPE1","",0x1), 0x80AF7AC8:("D_80AF7AC8","UNK_TYPE1","",0x1), @@ -13194,7 +13194,7 @@ 0x80AFB744:("D_80AFB744","UNK_TYPE1","",0x1), 0x80AFB74C:("D_80AFB74C","UNK_TYPE1","",0x1), 0x80AFB764:("D_80AFB764","UNK_TYPE1","",0x1), - 0x80AFB770:("En_Pm_InitVars","UNK_TYPE1","",0x1), + 0x80AFB770:("En_Pm_Profile","UNK_TYPE1","",0x1), 0x80AFB790:("D_80AFB790","UNK_TYPE1","",0x1), 0x80AFB7BC:("D_80AFB7BC","UNK_TYPE1","",0x1), 0x80AFB7E8:("D_80AFB7E8","UNK_TYPE1","",0x1), @@ -13221,7 +13221,7 @@ 0x80AFBD6C:("jtbl_80AFBD6C","UNK_PTR","",0x4), 0x80AFBDD4:("jtbl_80AFBDD4","UNK_PTR","",0x4), 0x80AFBE28:("jtbl_80AFBE28","UNK_PTR","",0x4), - 0x80AFD1B0:("En_Gakufu_InitVars","UNK_TYPE1","",0x1), + 0x80AFD1B0:("En_Gakufu_Profile","UNK_TYPE1","",0x1), 0x80AFD1D0:("D_80AFD1D0","UNK_TYPE1","",0x1), 0x80AFD1DC:("D_80AFD1DC","UNK_TYPE1","",0x1), 0x80AFD1F4:("D_80AFD1F4","UNK_TYPE1","",0x1), @@ -13230,7 +13230,7 @@ 0x80AFD230:("D_80AFD230","UNK_TYPE1","",0x1), 0x80AFD270:("D_80AFD270","UNK_TYPE1","",0x1), 0x80AFD2B0:("D_80AFD2B0","f32","",0x4), - 0x80AFD8D0:("Elf_Msg4_InitVars","UNK_TYPE1","",0x1), + 0x80AFD8D0:("Elf_Msg4_Profile","UNK_TYPE1","",0x1), 0x80AFD8F0:("D_80AFD8F0","UNK_TYPE1","",0x1), 0x80AFD900:("D_80AFD900","char","[]",0x1), 0x80AFD908:("D_80AFD908","char","[]",0x1), @@ -13238,13 +13238,13 @@ 0x80AFD914:("D_80AFD914","f32","",0x4), 0x80AFD918:("D_80AFD918","f32","",0x4), 0x80AFD91C:("D_80AFD91C","f32","",0x4), - 0x80AFDBB0:("Elf_Msg5_InitVars","UNK_TYPE1","",0x1), + 0x80AFDBB0:("Elf_Msg5_Profile","UNK_TYPE1","",0x1), 0x80AFDBD0:("D_80AFDBD0","UNK_TYPE1","",0x1), 0x80AFDBE0:("D_80AFDBE0","char","[]",0x1), 0x80AFDBE8:("D_80AFDBE8","char","[]",0x1), 0x80AFDBF4:("D_80AFDBF4","char","[]",0x1), 0x80AFE730:("D_80AFE730","UNK_TYPE1","",0x1), - 0x80AFE75C:("En_Col_Man_InitVars","UNK_TYPE1","",0x1), + 0x80AFE75C:("En_Col_Man_Profile","UNK_TYPE1","",0x1), 0x80AFE77C:("D_80AFE77C","UNK_TYPE1","",0x1), 0x80AFE780:("D_80AFE780","UNK_TYPE1","",0x1), 0x80AFE790:("D_80AFE790","f32","",0x4), @@ -13255,7 +13255,7 @@ 0x80AFE7B4:("D_80AFE7B4","f32","",0x4), 0x80AFE7B8:("D_80AFE7B8","f32","",0x4), 0x80AFE7BC:("D_80AFE7BC","f32","",0x4), - 0x80B011E0:("En_Talk_Gibud_InitVars","UNK_TYPE1","",0x1), + 0x80B011E0:("En_Talk_Gibud_Profile","UNK_TYPE1","",0x1), 0x80B01200:("D_80B01200","UNK_PTR","",0x4), 0x80B01350:("D_80B01350","UNK_TYPE1","",0x1), 0x80B0137C:("D_80B0137C","UNK_TYPE1","",0x1), @@ -13275,7 +13275,7 @@ 0x80B014E8:("jtbl_80B014E8","UNK_PTR","",0x4), 0x80B0152C:("jtbl_80B0152C","UNK_PTR","",0x4), 0x80B01568:("D_80B01568","f32","",0x4), - 0x80B02930:("En_Giant_InitVars","UNK_TYPE1","",0x1), + 0x80B02930:("En_Giant_Profile","UNK_TYPE1","",0x1), 0x80B02950:("D_80B02950","UNK_TYPE1","",0x1), 0x80B0298C:("D_80B0298C","UNK_TYPE1","",0x1), 0x80B029A0:("jtbl_80B029A0","UNK_PTR","",0x4), @@ -13283,7 +13283,7 @@ 0x80B02A0C:("jtbl_80B02A0C","UNK_PTR","",0x4), 0x80B02A38:("jtbl_80B02A38","UNK_PTR","",0x4), 0x80B02A74:("jtbl_80B02A74","UNK_PTR","",0x4), - 0x80B04F30:("Obj_Snowball_InitVars","UNK_TYPE1","",0x1), + 0x80B04F30:("Obj_Snowball_Profile","UNK_TYPE1","",0x1), 0x80B04F50:("D_80B04F50","UNK_TYPE1","",0x1), 0x80B04F74:("D_80B04F74","UNK_TYPE1","",0x1), 0x80B04F84:("D_80B04F84","UNK_TYPE1","",0x1), @@ -13321,7 +13321,7 @@ 0x80B0504C:("D_80B0504C","f32","",0x4), 0x80B05050:("D_80B05050","f32","",0x4), 0x80B05054:("D_80B05054","f32","",0x4), - 0x80B0E6E0:("Boss_Hakugin_InitVars","ActorInit","",0x20), + 0x80B0E6E0:("Boss_Hakugin_Profile","ActorInit","",0x20), 0x80B0E700:("sJntSphElementsInit","ColliderJntSphElementInit","[19]",0x2AC), 0x80B0E9AC:("sJntSphInit","ColliderJntSphInit","",0x10), 0x80B0E9BC:("sTrisElementsInit","ColliderTrisElementInit","[1]",0x3C), @@ -13467,7 +13467,7 @@ 0x80B0EE10:("D_80B0EE10","f32","",0x4), 0x80B0EE14:("D_80B0EE14","f32","",0x4), 0x80B0EE18:("D_80B0EE18","f32","",0x4), - 0x80B11990:("En_Gb2_InitVars","UNK_TYPE1","",0x1), + 0x80B11990:("En_Gb2_Profile","UNK_TYPE1","",0x1), 0x80B119B0:("D_80B119B0","UNK_TYPE1","",0x1), 0x80B11A00:("D_80B11A00","UNK_TYPE4","",0x4), 0x80B11A40:("D_80B11A40","UNK_TYPE1","",0x1), @@ -13480,12 +13480,12 @@ 0x80B11B38:("jtbl_80B11B38","UNK_PTR","",0x4), 0x80B11B50:("jtbl_80B11B50","UNK_PTR","",0x4), 0x80B11B84:("D_80B11B84","f32","",0x4), - 0x80B12370:("En_Onpuman_InitVars","UNK_TYPE1","",0x1), + 0x80B12370:("En_Onpuman_Profile","UNK_TYPE1","",0x1), 0x80B12390:("D_80B12390","UNK_TYPE1","",0x1), - 0x80B12800:("Bg_Tobira01_InitVars","UNK_TYPE1","",0x1), + 0x80B12800:("Bg_Tobira01_Profile","UNK_TYPE1","",0x1), 0x80B12820:("D_80B12820","f32","",0x4), - 0x80B1292C:("En_Tag_Obj_InitVars","UNK_TYPE1","",0x1), - 0x80B13E70:("Obj_Dhouse_InitVars","UNK_TYPE1","",0x1), + 0x80B1292C:("En_Tag_Obj_Profile","UNK_TYPE1","",0x1), + 0x80B13E70:("Obj_Dhouse_Profile","UNK_TYPE1","",0x1), 0x80B13E90:("D_80B13E90","UNK_TYPE4","",0x4), 0x80B13FA8:("D_80B13FA8","UNK_TYPE1","",0x1), 0x80B13FB4:("D_80B13FB4","UNK_TYPE1","",0x1), @@ -13507,7 +13507,7 @@ 0x80B14008:("D_80B14008","f32","",0x4), 0x80B1400C:("D_80B1400C","f32","",0x4), 0x80B14010:("D_80B14010","f32","",0x4), - 0x80B15590:("Obj_Hakaisi_InitVars","UNK_TYPE1","",0x1), + 0x80B15590:("Obj_Hakaisi_Profile","UNK_TYPE1","",0x1), 0x80B155B0:("D_80B155B0","UNK_TYPE1","",0x1), 0x80B155BC:("D_80B155BC","UNK_TYPE1","",0x1), 0x80B155E0:("D_80B155E0","UNK_TYPE4","",0x4), @@ -13519,7 +13519,7 @@ 0x80B15628:("D_80B15628","f32","",0x4), 0x80B1562C:("D_80B1562C","f32","",0x4), 0x80B15630:("D_80B15630","f32","",0x4), - 0x80B16840:("Bg_Hakugin_Switch_InitVars","UNK_TYPE1","",0x1), + 0x80B16840:("Bg_Hakugin_Switch_Profile","UNK_TYPE1","",0x1), 0x80B16860:("D_80B16860","UNK_TYPE1","",0x1), 0x80B1688C:("D_80B1688C","UNK_TYPE4","",0x4), 0x80B16904:("D_80B16904","UNK_TYPE1","",0x1), @@ -13530,7 +13530,7 @@ 0x80B1692C:("D_80B1692C","f32","",0x4), 0x80B16930:("D_80B16930","f32","",0x4), 0x80B16AF0:("D_80B16AF0","UNK_TYPE1","",0x1), - 0x80B199E0:("En_Snowman_InitVars","UNK_TYPE1","",0x1), + 0x80B199E0:("En_Snowman_Profile","UNK_TYPE1","",0x1), 0x80B19A00:("D_80B19A00","UNK_TYPE1","",0x1), 0x80B19A2C:("D_80B19A2C","UNK_TYPE1","",0x1), 0x80B19A58:("D_80B19A58","UNK_TYPE1","",0x1), @@ -13575,14 +13575,14 @@ 0x80B19B8C:("D_80B19B8C","f32","",0x4), 0x80B19B90:("D_80B19B90","f32","",0x4), 0x80B19B94:("D_80B19B94","f32","",0x4), - 0x80B1A320:("TG_Sw_InitVars","UNK_TYPE1","",0x1), + 0x80B1A320:("TG_Sw_Profile","UNK_TYPE1","",0x1), 0x80B1A340:("D_80B1A340","f32","",0x4), 0x80B1A344:("D_80B1A344","f32","",0x4), 0x80B1A348:("D_80B1A348","f32","",0x4), 0x80B1A34C:("D_80B1A34C","f32","",0x4), 0x80B1DA30:("D_80B1DA30","UNK_TYPE1","",0x1), 0x80B1DA40:("sPoSisterEnvColors","UNK_TYPE1","",0x1), - 0x80B1DA50:("En_Po_Sisters_InitVars","UNK_TYPE1","",0x1), + 0x80B1DA50:("En_Po_Sisters_Profile","UNK_TYPE1","",0x1), 0x80B1DA70:("D_80B1DA70","UNK_TYPE1","",0x1), 0x80B1DA9C:("D_80B1DA9C","UNK_TYPE1","",0x1), 0x80B1DAA4:("D_80B1DAA4","UNK_TYPE1","",0x1), @@ -13614,7 +13614,7 @@ 0x80B1DB5C:("D_80B1DB5C","f32","",0x4), 0x80B21620:("sCurrentFragmentIndex","UNK_TYPE4","",0x4), 0x80B21624:("sDamageTable","UNK_TYPE1","",0x1), - 0x80B21644:("En_Pp_InitVars","UNK_TYPE1","",0x1), + 0x80B21644:("En_Pp_Profile","UNK_TYPE1","",0x1), 0x80B21664:("sMaskColliderJntSphElementsInit","UNK_TYPE1","",0x1), 0x80B21688:("sMaskColliderJntSphInit","UNK_TYPE1","",0x1), 0x80B21698:("sBodyColliderJntSphElementsInit","UNK_TYPE1","",0x1), @@ -13642,7 +13642,7 @@ 0x80B21834:("D_80B21834","f32","",0x4), 0x80B21838:("D_80B21838","f32","",0x4), 0x80B2183C:("D_80B2183C","f32","",0x4), - 0x80B22A60:("En_Hakurock_InitVars","UNK_TYPE1","",0x1), + 0x80B22A60:("En_Hakurock_Profile","UNK_TYPE1","",0x1), 0x80B22A80:("D_80B22A80","UNK_TYPE1","",0x1), 0x80B22AAC:("D_80B22AAC","UNK_TYPE1","",0x1), 0x80B22AC0:("D_80B22AC0","f32","",0x4), @@ -13655,7 +13655,7 @@ 0x80B22ADC:("D_80B22ADC","f32","",0x4), 0x80B22AE0:("D_80B22AE0","f32","",0x4), 0x80B22AE4:("D_80B22AE4","f32","",0x4), - 0x80B23A80:("En_Hanabi_InitVars","UNK_TYPE1","",0x1), + 0x80B23A80:("En_Hanabi_Profile","UNK_TYPE1","",0x1), 0x80B23AA0:("D_80B23AA0","UNK_TYPE2","",0x2), 0x80B23C2C:("D_80B23C2C","UNK_TYPE1","",0x1), 0x80B23C40:("D_80B23C40","UNK_TYPE1","",0x1), @@ -13664,13 +13664,13 @@ 0x80B23C68:("D_80B23C68","f32","",0x4), 0x80B23C6C:("D_80B23C6C","f32","",0x4), 0x80B23C70:("D_80B23C70","f32","",0x4), - 0x80B23E80:("Obj_Dowsing_InitVars","UNK_TYPE1","",0x1), - 0x80B24460:("Obj_Wind_InitVars","UNK_TYPE1","",0x1), + 0x80B23E80:("Obj_Dowsing_Profile","UNK_TYPE1","",0x1), + 0x80B24460:("Obj_Wind_Profile","UNK_TYPE1","",0x1), 0x80B24480:("sInitChain","UNK_TYPE1","",0x1), 0x80B2448C:("D_80B2448C","UNK_TYPE1","",0x1), 0x80B245CC:("D_80B245CC","UNK_TYPE4","",0x4), 0x80B245D0:("D_80B245D0","f32","",0x4), - 0x80B25D20:("En_Racedog_InitVars","UNK_TYPE1","",0x1), + 0x80B25D20:("En_Racedog_Profile","UNK_TYPE1","",0x1), 0x80B25D40:("D_80B25D40","s16","",0x2), 0x80B25D44:("D_80B25D44","s16","",0x2), 0x80B25D48:("D_80B25D48","s16","",0x2), @@ -13695,7 +13695,7 @@ 0x80B26028:("D_80B26028","f32","",0x4), 0x80B2602C:("D_80B2602C","f32","",0x4), 0x80B26030:("jtbl_80B26030","UNK_PTR","",0x4), - 0x80B27C10:("En_Kendo_Js_InitVars","UNK_TYPE1","",0x1), + 0x80B27C10:("En_Kendo_Js_Profile","UNK_TYPE1","",0x1), 0x80B27C30:("D_80B27C30","UNK_TYPE1","",0x1), 0x80B27C5C:("D_80B27C5C","UNK_TYPE1","",0x1), 0x80B27C68:("D_80B27C68","UNK_TYPE1","",0x1), @@ -13706,7 +13706,7 @@ 0x80B27D20:("jtbl_80B27D20","UNK_PTR","",0x4), 0x80B27DD0:("jtbl_80B27DD0","UNK_PTR","",0x4), 0x80B27DEC:("jtbl_80B27DEC","UNK_PTR","",0x4), - 0x80B282D0:("Bg_Botihasira_InitVars","UNK_TYPE1","",0x1), + 0x80B282D0:("Bg_Botihasira_Profile","UNK_TYPE1","",0x1), 0x80B282F0:("D_80B282F0","UNK_TYPE1","",0x1), 0x80B28320:("D_80B28320","f32","",0x4), 0x80B2B2E0:("D_80B2B2E0","UNK_TYPE4","",0x4), @@ -13715,7 +13715,7 @@ 0x80B2B2EC:("D_80B2B2EC","UNK_TYPE4","",0x4), 0x80B2B2F0:("D_80B2B2F0","UNK_TYPE4","",0x4), 0x80B2B2F4:("D_80B2B2F4","UNK_TYPE4","",0x4), - 0x80B2B2F8:("En_Fish2_InitVars","UNK_TYPE1","",0x1), + 0x80B2B2F8:("En_Fish2_Profile","UNK_TYPE1","",0x1), 0x80B2B318:("D_80B2B318","UNK_TYPE1","",0x1), 0x80B2B360:("D_80B2B360","UNK_TYPE1","",0x1), 0x80B2B370:("D_80B2B370","f32","",0x4), @@ -13768,7 +13768,7 @@ 0x80B2C468:("D_80B2C468","UNK_TYPE1","",0x1), 0x80B2C488:("D_80B2C488","UNK_TYPE1","",0x1), 0x80B2C490:("D_80B2C490","UNK_TYPE1","",0x1), - 0x80B2C498:("En_Pst_InitVars","UNK_TYPE1","",0x1), + 0x80B2C498:("En_Pst_Profile","UNK_TYPE1","",0x1), 0x80B2C4B8:("D_80B2C4B8","UNK_TYPE1","",0x1), 0x80B2C4E4:("D_80B2C4E4","UNK_PTR","",0x4), 0x80B2C4F0:("D_80B2C4F0","UNK_TYPE1","",0x1), @@ -13777,7 +13777,7 @@ 0x80B2C534:("jtbl_80B2C534","UNK_PTR","",0x4), 0x80B2C548:("jtbl_80B2C548","UNK_PTR","",0x4), 0x80B2C55C:("jtbl_80B2C55C","UNK_PTR","",0x4), - 0x80B2F660:("En_Poh_InitVars","UNK_TYPE1","",0x1), + 0x80B2F660:("En_Poh_Profile","UNK_TYPE1","",0x1), 0x80B2F680:("D_80B2F680","UNK_TYPE1","",0x1), 0x80B2F6AC:("D_80B2F6AC","UNK_TYPE1","",0x1), 0x80B2F6D0:("D_80B2F6D0","UNK_TYPE1","",0x1), @@ -13808,7 +13808,7 @@ 0x80B2F7A8:("D_80B2F7A8","f32","",0x4), 0x80B2F7AC:("D_80B2F7AC","f32","",0x4), 0x80B2F7B0:("D_80B2F7B0","f32","",0x4), - 0x80B31040:("Obj_Spidertent_InitVars","UNK_TYPE1","",0x1), + 0x80B31040:("Obj_Spidertent_Profile","UNK_TYPE1","",0x1), 0x80B31060:("D_80B31060","UNK_TYPE1","",0x1), 0x80B311C8:("D_80B311C8","UNK_TYPE1","",0x1), 0x80B311D8:("D_80B311D8","UNK_TYPE1","",0x1), @@ -13823,7 +13823,7 @@ 0x80B31438:("D_80B31438","f32","",0x4), 0x80B3143C:("D_80B3143C","f32","",0x4), 0x80B31440:("D_80B31440","f32","",0x4), - 0x80B33910:("En_Zoraegg_InitVars","UNK_TYPE1","",0x1), + 0x80B33910:("En_Zoraegg_Profile","UNK_TYPE1","",0x1), 0x80B33930:("D_80B33930","UNK_TYPE4","",0x4), 0x80B33940:("D_80B33940","UNK_TYPE4","",0x4), 0x80B33950:("D_80B33950","UNK_TYPE1","",0x1), @@ -13852,7 +13852,7 @@ 0x80B33A40:("D_80B33A40","f32","",0x4), 0x80B33A44:("D_80B33A44","f32","",0x4), 0x80B33A48:("D_80B33A48","f32","",0x4), - 0x80B34B20:("En_Kbt_InitVars","UNK_TYPE1","",0x1), + 0x80B34B20:("En_Kbt_Profile","UNK_TYPE1","",0x1), 0x80B34B40:("D_80B34B40","UNK_TYPE4","",0x4), 0x80B34B50:("D_80B34B50","UNK_TYPE1","",0x1), 0x80B34B84:("D_80B34B84","UNK_TYPE1","",0x1), @@ -13861,7 +13861,7 @@ 0x80B34BB0:("jtbl_80B34BB0","UNK_PTR","",0x4), 0x80B34BE4:("jtbl_80B34BE4","UNK_PTR","",0x4), 0x80B34CD0:("jtbl_80B34CD0","UNK_PTR","",0x4), - 0x80B36BE0:("En_Gg_InitVars","UNK_TYPE1","",0x1), + 0x80B36BE0:("En_Gg_Profile","UNK_TYPE1","",0x1), 0x80B36C00:("D_80B36C00","UNK_TYPE1","",0x1), 0x80B36C2C:("D_80B36C2C","UNK_TYPE1","",0x1), 0x80B36C38:("D_80B36C38","UNK_TYPE1","",0x1), @@ -13879,7 +13879,7 @@ 0x80B36E84:("D_80B36E84","f32","",0x4), 0x80B36E88:("D_80B36E88","f32","",0x4), 0x80B36E8C:("D_80B36E8C","f32","",0x4), - 0x80B38680:("En_Maruta_InitVars","UNK_TYPE1","",0x1), + 0x80B38680:("En_Maruta_Profile","UNK_TYPE1","",0x1), 0x80B386A0:("D_80B386A0","UNK_TYPE4","",0x4), 0x80B386C0:("D_80B386C0","UNK_TYPE1","",0x1), 0x80B386CC:("D_80B386CC","UNK_TYPE1","",0x1), @@ -13921,7 +13921,7 @@ 0x80B38BB4:("D_80B38BB4","f32","",0x4), 0x80B38BB8:("D_80B38BB8","f32","",0x4), 0x80B38BBC:("D_80B38BBC","f32","",0x4), - 0x80B3A8C0:("Obj_Snowball2_InitVars","UNK_TYPE1","",0x1), + 0x80B3A8C0:("Obj_Snowball2_Profile","UNK_TYPE1","",0x1), 0x80B3A8E0:("D_80B3A8E0","UNK_TYPE1","",0x1), 0x80B3A904:("D_80B3A904","UNK_TYPE1","",0x1), 0x80B3A914:("D_80B3A914","UNK_TYPE1","",0x1), @@ -13965,7 +13965,7 @@ 0x80B3A9E0:("D_80B3A9E0","f32","",0x4), 0x80B3A9E4:("D_80B3A9E4","f32","",0x4), 0x80B3A9E8:("D_80B3A9E8","f32","",0x4), - 0x80B3BEE0:("En_Gg2_InitVars","UNK_TYPE1","",0x1), + 0x80B3BEE0:("En_Gg2_Profile","UNK_TYPE1","",0x1), 0x80B3BF00:("sAnimationInfo","UNK_TYPE4","",0x4), 0x80B3C080:("D_80B3C080","UNK_TYPE4","",0x4), 0x80B3C084:("D_80B3C084","UNK_TYPE4","",0x4), @@ -13977,12 +13977,12 @@ 0x80B3C0E4:("D_80B3C0E4","f32","",0x4), 0x80B3C0E8:("D_80B3C0E8","f32","",0x4), 0x80B3C0EC:("D_80B3C0EC","f32","",0x4), - 0x80B3C940:("Obj_Ghaka_InitVars","UNK_TYPE1","",0x1), + 0x80B3C940:("Obj_Ghaka_Profile","UNK_TYPE1","",0x1), 0x80B3C960:("D_80B3C960","UNK_TYPE1","",0x1), 0x80B3C96C:("D_80B3C96C","UNK_TYPE1","",0x1), 0x80B3C980:("D_80B3C980","f32","",0x4), 0x80B3C984:("D_80B3C984","f32","",0x4), - 0x80B3DC60:("En_Dnp_InitVars","UNK_TYPE1","",0x1), + 0x80B3DC60:("En_Dnp_Profile","UNK_TYPE1","",0x1), 0x80B3DC80:("D_80B3DC80","UNK_TYPE1","",0x1), 0x80B3DCAC:("D_80B3DCAC","UNK_TYPE1","",0x1), 0x80B3DCB8:("sAnimations","UNK_TYPE1","",0x1), @@ -13994,7 +13994,7 @@ 0x80B3DEC8:("D_80B3DEC8","f32","",0x4), 0x80B3DECC:("D_80B3DECC","f32","",0x4), 0x80B3DED0:("D_80B3DED0","f32","",0x4), - 0x80B3FBD0:("En_Dai_InitVars","UNK_TYPE1","",0x1), + 0x80B3FBD0:("En_Dai_Profile","UNK_TYPE1","",0x1), 0x80B3FBF0:("D_80B3FBF0","UNK_TYPE4","",0x4), 0x80B3FBFC:("sAnimationInfo","UNK_TYPE1","",0x1), 0x80B3FC8C:("D_80B3FC8C","UNK_TYPE1","",0x1), @@ -14017,9 +14017,9 @@ 0x80B3FE70:("sEyeTextures","TexturePtr[]","0x9",0x4), 0x80B3FE90:("D_80B3FE90","f32","",0x4), 0x80B3FE94:("D_80B3FE94","f32","",0x4), - 0x80B40760:("Bg_Goron_Oyu_InitVars","UNK_TYPE1","",0x1), + 0x80B40760:("Bg_Goron_Oyu_Profile","UNK_TYPE1","",0x1), 0x80B40780:("D_80B40780","UNK_TYPE1","",0x1), - 0x80B43250:("En_Kgy_InitVars","UNK_TYPE1","",0x1), + 0x80B43250:("En_Kgy_Profile","UNK_TYPE1","",0x1), 0x80B43270:("D_80B43270","UNK_TYPE1","",0x1), 0x80B43298:("D_80B43298","EffectShieldParticleInit","",0x40), 0x80B432C6:("D_80B432C6","UNK_TYPE1","",0x1), @@ -14035,7 +14035,7 @@ 0x80B43400:("jtbl_80B43400","UNK_PTR","",0x4), 0x80B43414:("jtbl_80B43414","UNK_PTR","",0x4), 0x80B43460:("D_80B43460","f32","",0x4), - 0x80B4E890:("En_Invadepoh_InitVars","ActorInit","",0x20), + 0x80B4E890:("En_Invadepoh_Profile","ActorInit","",0x20), 0x80B4E8B0:("sAlienCylinderInit","ColliderCylinderInit","",0x2C), 0x80B4E8DC:("sRomaniAndCremiaCylinderInit","ColliderCylinderInit","",0x2C), 0x80B4E908:("sDogCylinderInit","ColliderCylinderInit","",0x2C), @@ -14287,7 +14287,7 @@ 0x80B50400:("sAlienEmptyTexAnim","AnimatedMaterial*","",0x4), 0x80B50404:("sInvadepohCsIdList","s16","[3]",0x6), 0x80B5040C:("sClosestAlienThreat","EnInvadepoh*","",0x4), - 0x80B531F0:("En_Gk_InitVars","UNK_TYPE1","",0x1), + 0x80B531F0:("En_Gk_Profile","UNK_TYPE1","",0x1), 0x80B53210:("D_80B53210","UNK_TYPE1","",0x1), 0x80B5323C:("D_80B5323C","UNK_TYPE1","",0x1), 0x80B53248:("D_80B53248","UNK_TYPE1","",0x1), @@ -14344,7 +14344,7 @@ 0x80B58B7C:("sAnjuMsgScript_80B58B7C","UNK_TYPE1","",0x1), 0x80B58B88:("sAnjuMsgScript_80B58B88","UNK_TYPE1","",0x1), 0x80B58B90:("sAnjuMsgScript_SchWithKafei","UNK_TYPE1","",0x1), - 0x80B58B9C:("En_An_InitVars","UNK_TYPE1","",0x1), + 0x80B58B9C:("En_An_Profile","UNK_TYPE1","",0x1), 0x80B58BBC:("sCylinderInit","UNK_TYPE1","",0x1), 0x80B58BE8:("sColChkInfoInit","UNK_TYPE1","",0x1), 0x80B58BF4:("sAnimationInfo","UNK_TYPE1","",0x1), @@ -14387,11 +14387,11 @@ 0x80B5976C:("jtbl_80B5976C","UNK_PTR","",0x4), 0x80B59780:("jtbl_80B59780","UNK_PTR","",0x4), 0x80B5B1F0:("D_80B5B1F0","UNK_TYPE4","",0x4), - 0x80B5B1F4:("En_Bee_InitVars","UNK_TYPE1","",0x1), + 0x80B5B1F4:("En_Bee_Profile","UNK_TYPE1","",0x1), 0x80B5B214:("D_80B5B214","UNK_TYPE1","",0x1), 0x80B5B234:("D_80B5B234","UNK_TYPE1","",0x1), 0x80B5B260:("D_80B5B260","f32","",0x4), - 0x80B5E380:("En_Ot_InitVars","UNK_TYPE1","",0x1), + 0x80B5E380:("En_Ot_Profile","UNK_TYPE1","",0x1), 0x80B5E3A0:("D_80B5E3A0","UNK_TYPE1","",0x1), 0x80B5E3CC:("D_80B5E3CC","UNK_TYPE4","",0x4), 0x80B5E3FC:("D_80B5E3FC","UNK_TYPE1","",0x1), @@ -14427,7 +14427,7 @@ 0x80B5E884:("D_80B5E884","UNK_TYPE1","",0x1), 0x80B5E888:("D_80B5E888","UNK_TYPE1","",0x1), 0x80B605D0:("D_80B605D0","UNK_TYPE4","",0x4), - 0x80B605D4:("En_Dragon_InitVars","UNK_TYPE1","",0x1), + 0x80B605D4:("En_Dragon_Profile","UNK_TYPE1","",0x1), 0x80B605F4:("D_80B605F4","UNK_TYPE1","",0x1), 0x80B60614:("D_80B60614","UNK_TYPE1","",0x1), 0x80B60734:("D_80B60734","UNK_TYPE1","",0x1), @@ -14453,7 +14453,7 @@ 0x80B608B0:("D_80B608B0","f32","",0x4), 0x80B608B4:("D_80B608B4","f32","",0x4), 0x80B608B8:("jtbl_80B608B8","UNK_PTR","",0x4), - 0x80B612F0:("Obj_Dora_InitVars","UNK_TYPE1","",0x1), + 0x80B612F0:("Obj_Dora_Profile","UNK_TYPE1","",0x1), 0x80B61310:("D_80B61310","UNK_TYPE1","",0x1), 0x80B61478:("D_80B61478","UNK_TYPE1","",0x1), 0x80B61488:("D_80B61488","UNK_TYPE1","",0x1), @@ -14471,7 +14471,7 @@ 0x80B614DC:("D_80B614DC","f32","",0x4), 0x80B614E0:("D_80B614E0","f32","",0x4), 0x80B614E4:("D_80B614E4","f32","",0x4), - 0x80B64FF0:("En_Bigpo_InitVars","UNK_TYPE1","",0x1), + 0x80B64FF0:("En_Bigpo_Profile","UNK_TYPE1","",0x1), 0x80B65010:("D_80B65010","UNK_TYPE1","",0x1), 0x80B6503C:("D_80B6503C","UNK_TYPE1","",0x1), 0x80B65044:("D_80B65044","UNK_TYPE1","",0x1), @@ -14507,7 +14507,7 @@ 0x80B65114:("D_80B65114","f32","",0x4), 0x80B65118:("D_80B65118","f32","",0x4), 0x80B6511C:("D_80B6511C","f32","",0x4), - 0x80B66640:("Obj_Kendo_Kanban_InitVars","UNK_TYPE1","",0x1), + 0x80B66640:("Obj_Kendo_Kanban_Profile","UNK_TYPE1","",0x1), 0x80B66660:("D_80B66660","UNK_TYPE4","",0x4), 0x80B6666C:("D_80B6666C","UNK_TYPE4","",0x4), 0x80B66678:("D_80B66678","UNK_TYPE4","",0x4), @@ -14541,9 +14541,9 @@ 0x80B6684C:("D_80B6684C","f32","",0x4), 0x80B66850:("D_80B66850","f32","",0x4), 0x80B66854:("D_80B66854","f32","",0x4), - 0x80B66CB0:("Obj_Hariko_InitVars","UNK_TYPE1","",0x1), + 0x80B66CB0:("Obj_Hariko_Profile","UNK_TYPE1","",0x1), 0x80B66CD0:("D_80B66CD0","f32","",0x4), - 0x80B685A0:("En_Sth_InitVars","UNK_TYPE1","",0x1), + 0x80B685A0:("En_Sth_Profile","UNK_TYPE1","",0x1), 0x80B685C0:("D_80B685C0","UNK_TYPE1","",0x1), 0x80B68640:("D_80B68640","UNK_TYPE1","",0x1), 0x80B68740:("D_80B68740","UNK_TYPE1","",0x1), @@ -14597,14 +14597,14 @@ 0x80B6D220:("jtbl_80B6D220","UNK_PTR","",0x4), 0x80B6D234:("jtbl_80B6D234","UNK_PTR","",0x4), 0x80B6D274:("jtbl_80B6D274","UNK_PTR","",0x4), - 0x80B6DB50:("Bg_Sinkai_Kabe_InitVars","UNK_TYPE1","",0x1), + 0x80B6DB50:("Bg_Sinkai_Kabe_Profile","UNK_TYPE1","",0x1), 0x80B6DB70:("D_80B6DB70","UNK_TYPE4","",0x4), 0x80B6DB80:("D_80B6DB80","f32","",0x4), 0x80B6DB84:("D_80B6DB84","f32","",0x4), 0x80B6DB88:("D_80B6DB88","f32","",0x4), - 0x80B6DF80:("Bg_Haka_Curtain_InitVars","UNK_TYPE1","",0x1), + 0x80B6DF80:("Bg_Haka_Curtain_Profile","UNK_TYPE1","",0x1), 0x80B6DFA0:("D_80B6DFA0","UNK_TYPE1","",0x1), - 0x80B6E6D0:("Bg_Kin2_Bombwall_InitVars","UNK_TYPE1","",0x1), + 0x80B6E6D0:("Bg_Kin2_Bombwall_Profile","UNK_TYPE1","",0x1), 0x80B6E6F0:("D_80B6E6F0","UNK_TYPE1","",0x1), 0x80B6E71C:("D_80B6E71C","UNK_TYPE1","",0x1), 0x80B6E720:("D_80B6E720","UNK_TYPE1","",0x1), @@ -14616,14 +14616,14 @@ 0x80B6E748:("D_80B6E748","UNK_TYPE1","",0x1), 0x80B6E760:("D_80B6E760","f32","",0x4), 0x80B6E764:("D_80B6E764","f32","",0x4), - 0x80B6EDC0:("Bg_Kin2_Fence_InitVars","UNK_TYPE1","",0x1), + 0x80B6EDC0:("Bg_Kin2_Fence_Profile","UNK_TYPE1","",0x1), 0x80B6EDE0:("D_80B6EDE0","UNK_TYPE1","",0x1), 0x80B6EE70:("D_80B6EE70","UNK_TYPE1","",0x1), 0x80B6EE80:("D_80B6EE80","UNK_TYPE1","",0x1), 0x80B6EEE0:("D_80B6EEE0","UNK_TYPE1","",0x1), 0x80B6EEE4:("D_80B6EEE4","UNK_TYPE1","",0x1), 0x80B6EEE8:("D_80B6EEE8","UNK_TYPE1","",0x1), - 0x80B6F970:("Bg_Kin2_Picture_InitVars","UNK_TYPE1","",0x1), + 0x80B6F970:("Bg_Kin2_Picture_Profile","UNK_TYPE1","",0x1), 0x80B6F990:("D_80B6F990","UNK_TYPE1","",0x1), 0x80B6FA08:("D_80B6FA08","UNK_TYPE1","",0x1), 0x80B6FA18:("D_80B6FA18","UNK_TYPE1","",0x1), @@ -14636,7 +14636,7 @@ 0x80B6FA54:("D_80B6FA54","f32","",0x4), 0x80B6FA58:("D_80B6FA58","f32","",0x4), 0x80B6FA5C:("D_80B6FA5C","f32","",0x4), - 0x80B70730:("Bg_Kin2_Shelf_InitVars","UNK_TYPE1","",0x1), + 0x80B70730:("Bg_Kin2_Shelf_Profile","UNK_TYPE1","",0x1), 0x80B70750:("D_80B70750","f32","",0x4), 0x80B70758:("D_80B70758","f32","",0x4), 0x80B70760:("D_80B70760","UNK_TYPE4","",0x4), @@ -14652,7 +14652,7 @@ 0x80B7079C:("D_80B7079C","f32","",0x4), 0x80B707A0:("D_80B707A0","f32","",0x4), 0x80B707A4:("D_80B707A4","f32","",0x4), - 0x80B732B0:("En_Rail_Skb_InitVars","UNK_TYPE1","",0x1), + 0x80B732B0:("En_Rail_Skb_Profile","UNK_TYPE1","",0x1), 0x80B732D0:("D_80B732D0","UNK_TYPE1","",0x1), 0x80B73408:("D_80B73408","UNK_TYPE1","",0x1), 0x80B73450:("D_80B73450","UNK_TYPE1","",0x1), @@ -14678,7 +14678,7 @@ 0x80B7353C:("D_80B7353C","f32","",0x4), 0x80B73540:("jtbl_80B73540","UNK_PTR","",0x4), 0x80B73574:("jtbl_80B73574","UNK_PTR","",0x4), - 0x80B75800:("En_Jg_InitVars","UNK_TYPE1","",0x1), + 0x80B75800:("En_Jg_Profile","UNK_TYPE1","",0x1), 0x80B75820:("D_80B75820","UNK_TYPE1","",0x1), 0x80B7584C:("D_80B7584C","UNK_TYPE1","",0x1), 0x80B75858:("D_80B75858","UNK_TYPE1","",0x1), @@ -14695,7 +14695,7 @@ 0x80B75A80:("jtbl_80B75A80","UNK_PTR","",0x4), 0x80B75A9C:("jtbl_80B75A9C","UNK_PTR","",0x4), 0x80B75AC0:("jtbl_80B75AC0","UNK_PTR","",0x4), - 0x80B774F0:("En_Tru_Mt_InitVars","UNK_TYPE1","",0x1), + 0x80B774F0:("En_Tru_Mt_Profile","UNK_TYPE1","",0x1), 0x80B77510:("D_80B77510","UNK_TYPE1","",0x1), 0x80B7753C:("D_80B7753C","UNK_TYPE1","",0x1), 0x80B7755C:("sAnimationInfo","UNK_TYPE1","",0x1), @@ -14705,7 +14705,7 @@ 0x80B77680:("D_80B77680","f32","",0x4), 0x80B77684:("D_80B77684","f32","",0x4), 0x80B77688:("D_80B77688","f32","",0x4), - 0x80B7C0F0:("Obj_Um_InitVars","UNK_TYPE1","",0x1), + 0x80B7C0F0:("Obj_Um_Profile","UNK_TYPE1","",0x1), 0x80B7C110:("sEyeTextures","UNK_TYPE1","",0x1), 0x80B7C128:("sMouthTextures","UNK_TYPE1","",0x1), 0x80B7C138:("sCylinderInit","UNK_TYPE1","",0x1), @@ -14742,7 +14742,7 @@ 0x80B7C3F8:("D_80B7C3F8","f32","",0x4), 0x80B7C3FC:("D_80B7C3FC","f32","",0x4), 0x80B7C400:("D_80B7C400","f32","",0x4), - 0x80B7E4E0:("En_Neo_Reeba_InitVars","UNK_TYPE1","",0x1), + 0x80B7E4E0:("En_Neo_Reeba_Profile","UNK_TYPE1","",0x1), 0x80B7E500:("D_80B7E500","UNK_TYPE1","",0x1), 0x80B7E520:("D_80B7E520","UNK_TYPE1","",0x1), 0x80B7E54C:("D_80B7E54C","f32","",0x4), @@ -14763,15 +14763,15 @@ 0x80B7E624:("jtbl_80B7E624","UNK_PTR","",0x4), 0x80B7E660:("D_80B7E660","f32","",0x4), 0x80B7E664:("D_80B7E664","f32","",0x4), - 0x80B7EA00:("Bg_Mbar_Chair_InitVars","ActorInit","",0x20), + 0x80B7EA00:("Bg_Mbar_Chair_Profile","ActorInit","",0x20), 0x80B7EA20:("bgMbarChairInitVars","ActorInitVar","[4]",0x10), - 0x80B7F620:("Bg_Ikana_Block_InitVars","UNK_TYPE1","",0x1), + 0x80B7F620:("Bg_Ikana_Block_Profile","UNK_TYPE1","",0x1), 0x80B7F640:("D_80B7F640","UNK_TYPE1","",0x1), 0x80B7F650:("D_80B7F650","f32","",0x4), 0x80B7F654:("D_80B7F654","f32","",0x4), 0x80B7F658:("D_80B7F658","f32","",0x4), 0x80B7F65C:("D_80B7F65C","f32","",0x4), - 0x80B7FF30:("Bg_Ikana_Mirror_InitVars","UNK_TYPE1","",0x1), + 0x80B7FF30:("Bg_Ikana_Mirror_Profile","UNK_TYPE1","",0x1), 0x80B7FF50:("D_80B7FF50","UNK_TYPE1","",0x1), 0x80B8016C:("D_80B8016C","UNK_TYPE1","",0x1), 0x80B8017C:("D_80B8017C","UNK_TYPE1","",0x1), @@ -14782,7 +14782,7 @@ 0x80B8021C:("D_80B8021C","UNK_TYPE1","",0x1), 0x80B80230:("D_80B80230","f32","",0x4), 0x80B80248:("D_80B80248","UNK_TYPE1","",0x1), - 0x80B820C0:("Bg_Ikana_Rotaryroom_InitVars","UNK_TYPE1","",0x1), + 0x80B820C0:("Bg_Ikana_Rotaryroom_Profile","UNK_TYPE1","",0x1), 0x80B820E0:("D_80B820E0","UNK_TYPE1","",0x1), 0x80B82128:("D_80B82128","UNK_TYPE1","",0x1), 0x80B82138:("D_80B82138","UNK_TYPE1","",0x1), @@ -14799,7 +14799,7 @@ 0x80B82224:("D_80B82224","f32","",0x4), 0x80B82228:("D_80B82228","f32","",0x4), 0x80B8222C:("D_80B8222C","f32","",0x4), - 0x80B83A00:("Bg_Dblue_Balance_InitVars","UNK_TYPE1","",0x1), + 0x80B83A00:("Bg_Dblue_Balance_Profile","UNK_TYPE1","",0x1), 0x80B83A20:("sTypeInfo","UNK_TYPE4","",0x4), 0x80B83A74:("D_80B83A74","UNK_TYPE1","",0x1), 0x80B83A90:("D_80B83A90","UNK_TYPE1","",0x1), @@ -14822,7 +14822,7 @@ 0x80B83AD4:("D_80B83AD4","f32","",0x4), 0x80B83C70:("D_80B83C70","UNK_TYPE1","",0x1), 0x80B83C74:("D_80B83C74","UNK_TYPE1","",0x1), - 0x80B85350:("Bg_Dblue_Waterfall_InitVars","UNK_TYPE1","",0x1), + 0x80B85350:("Bg_Dblue_Waterfall_Profile","UNK_TYPE1","",0x1), 0x80B85370:("D_80B85370","UNK_TYPE1","",0x1), 0x80B8539C:("D_80B8539C","UNK_TYPE1","",0x1), 0x80B853A0:("D_80B853A0","UNK_TYPE1","",0x1), @@ -14851,7 +14851,7 @@ 0x80B8AB24:("D_80B8AB24","UNK_TYPE1","",0x1), 0x80B8AB30:("D_80B8AB30","UNK_TYPE1","",0x1), 0x80B8AB3C:("D_80B8AB3C","UNK_TYPE1","",0x1), - 0x80B8AB5C:("En_Kaizoku_InitVars","UNK_TYPE1","",0x1), + 0x80B8AB5C:("En_Kaizoku_Profile","UNK_TYPE1","",0x1), 0x80B8AB7C:("D_80B8AB7C","UNK_TYPE1","",0x1), 0x80B8ABA8:("D_80B8ABA8","UNK_TYPE1","",0x1), 0x80B8ABF8:("D_80B8ABF8","UNK_TYPE1","",0x1), @@ -14901,7 +14901,7 @@ 0x80B8ADAC:("D_80B8ADAC","f32","",0x4), 0x80B8ADB0:("D_80B8ADB0","f32","",0x4), 0x80B8ADB4:("D_80B8ADB4","f32","",0x4), - 0x80B8CE20:("En_Ge2_InitVars","UNK_TYPE1","",0x1), + 0x80B8CE20:("En_Ge2_Profile","UNK_TYPE1","",0x1), 0x80B8CE40:("sCylinderInit","ColliderCylinderInit","",0x2C), 0x80B8CE6C:("effectVelocity","Vec3f","",0xC), 0x80B8CE78:("effectAccel","Vec3f","",0xC), @@ -14910,7 +14910,7 @@ 0x80B8CE8C:("sFocusOffset","Vec3f","",0x1), 0x80B8CE98:("sEyeTextures","TexturePtr","[3]",0xC), 0x80B8CEB0:("jtbl_80B8CEB0","UNK_PTR","",0x4), - 0x80B8E150:("En_Ma_Yts_InitVars","UNK_TYPE1","",0x1), + 0x80B8E150:("En_Ma_Yts_Profile","UNK_TYPE1","",0x1), 0x80B8E170:("D_80B8E170","ColliderCylinderInit","",0x2C), 0x80B8E19C:("D_80B8E19C","CollisionCheckInfoInit2","",0xC), 0x80B8E308:("D_80B8E308","void*","",0x4), @@ -14918,7 +14918,7 @@ 0x80B8E32C:("sCueId","UNK_TYPE2","",0x2), 0x80B8E330:("jtbl_80B8E330","UNK_PTR","",0x4), 0x80B8E34C:("jtbl_80B8E34C","UNK_PTR","",0x4), - 0x80B913F0:("En_Ma_Yto_InitVars","UNK_TYPE1","",0x1), + 0x80B913F0:("En_Ma_Yto_Profile","UNK_TYPE1","",0x1), 0x80B91410:("D_80B91410","UNK_TYPE1","",0x1), 0x80B9143C:("D_80B9143C","UNK_TYPE1","",0x1), 0x80B91448:("D_80B91448","UNK_TYPE1","",0x1), @@ -14933,10 +14933,10 @@ 0x80B916C8:("jtbl_80B916C8","UNK_PTR","",0x4), 0x80B916E4:("jtbl_80B916E4","UNK_PTR","",0x4), 0x80B91770:("jtbl_80B91770","UNK_PTR","",0x4), - 0x80B91EA0:("Obj_Tokei_Turret_InitVars","UNK_TYPE1","",0x1), + 0x80B91EA0:("Obj_Tokei_Turret_Profile","UNK_TYPE1","",0x1), 0x80B91EC0:("D_80B91EC0","UNK_TYPE1","",0x1), 0x80B91ED0:("D_80B91ED0","f32","",0x4), - 0x80B92940:("Bg_Dblue_Elevator_InitVars","UNK_TYPE1","",0x1), + 0x80B92940:("Bg_Dblue_Elevator_Profile","UNK_TYPE1","",0x1), 0x80B92960:("D_80B92960","UNK_TYPE4","",0x4), 0x80B92964:("D_80B92964","UNK_PTR","",0x4), 0x80B9296C:("D_80B9296C","UNK_TYPE1","",0x1), @@ -14952,14 +14952,14 @@ 0x80B92A00:("D_80B92A00","f32","",0x4), 0x80B92A04:("D_80B92A04","f32","",0x4), 0x80B92A08:("D_80B92A08","f32","",0x4), - 0x80B93200:("Obj_Warpstone_InitVars","UNK_TYPE1","",0x1), + 0x80B93200:("Obj_Warpstone_Profile","UNK_TYPE1","",0x1), 0x80B93220:("D_80B93220","UNK_TYPE1","",0x1), 0x80B9324C:("D_80B9324C","UNK_TYPE1","",0x1), 0x80B93250:("D_80B93250","UNK_TYPE1","",0x1), 0x80B93260:("D_80B93260","f32","",0x4), 0x80B93264:("D_80B93264","f32","",0x4), 0x80B93268:("D_80B93268","f32","",0x4), - 0x80B95860:("En_Zog_InitVars","UNK_TYPE1","",0x1), + 0x80B95860:("En_Zog_Profile","UNK_TYPE1","",0x1), 0x80B95880:("D_80B95880","UNK_TYPE1","",0x1), 0x80B958AC:("D_80B958AC","UNK_TYPE4","",0x4), 0x80B958B8:("D_80B958B8","UNK_TYPE4","",0x4), @@ -15001,16 +15001,16 @@ 0x80B95A50:("D_80B95A50","f32","",0x4), 0x80B95A54:("D_80B95A54","f32","",0x4), 0x80B95E10:("sTexturesDesegmented","UNK_TYPE1","",0x1), - 0x80B96140:("Obj_Rotlift_InitVars","UNK_TYPE1","",0x1), + 0x80B96140:("Obj_Rotlift_Profile","UNK_TYPE1","",0x1), 0x80B96160:("D_80B96160","UNK_PTR","",0x4), 0x80B96178:("D_80B96178","UNK_TYPE1","",0x1), - 0x80B963C0:("Obj_Jg_Gakki_InitVars","UNK_TYPE1","",0x1), - 0x80B96540:("Bg_Inibs_Movebg_InitVars","UNK_TYPE1","",0x1), + 0x80B963C0:("Obj_Jg_Gakki_Profile","UNK_TYPE1","",0x1), + 0x80B96540:("Bg_Inibs_Movebg_Profile","UNK_TYPE1","",0x1), 0x80B96560:("sOpaDLists","UNK_TYPE1","",0x1), 0x80B96568:("sXluDLists","UNK_TYPE1","",0x1), 0x80B96570:("sSandTexAnims","UNK_TYPE1","",0x1), 0x80B96578:("D_80B96578","UNK_TYPE1","",0x1), - 0x80B998C0:("En_Zot_InitVars","UNK_TYPE1","",0x1), + 0x80B998C0:("En_Zot_Profile","UNK_TYPE1","",0x1), 0x80B998E0:("D_80B998E0","UNK_TYPE1","",0x1), 0x80B9990C:("D_80B9990C","UNK_TYPE1","",0x1), 0x80B99934:("D_80B99934","UNK_TYPE1","",0x1), @@ -15026,19 +15026,19 @@ 0x80B99B28:("jtbl_80B99B28","UNK_PTR","",0x4), 0x80B99B4C:("D_80B99B4C","f32","",0x4), 0x80B99B50:("D_80B99B50","f32","",0x4), - 0x80B9A550:("Obj_Tree_InitVars","UNK_TYPE1","",0x1), + 0x80B9A550:("Obj_Tree_Profile","UNK_TYPE1","",0x1), 0x80B9A570:("D_80B9A570","UNK_TYPE1","",0x1), 0x80B9A59C:("D_80B9A59C","UNK_TYPE1","",0x1), 0x80B9A5BC:("D_80B9A5BC","UNK_PTR","",0x4), 0x80B9A5D0:("D_80B9A5D0","f32","",0x4), - 0x80B9A920:("Obj_Y2lift_InitVars","UNK_TYPE1","",0x1), + 0x80B9A920:("Obj_Y2lift_Profile","UNK_TYPE1","",0x1), 0x80B9A940:("D_80B9A940","UNK_TYPE1","",0x1), - 0x80B9AE50:("Obj_Y2shutter_InitVars","UNK_TYPE1","",0x1), + 0x80B9AE50:("Obj_Y2shutter_Profile","UNK_TYPE1","",0x1), 0x80B9AE70:("D_80B9AE70","UNK_TYPE1","",0x40), 0x80B9AEB0:("D_80B9AEB0","UNK_TYPE1","",0x1), - 0x80B9B660:("Obj_Boat_InitVars","UNK_TYPE1","",0x1), + 0x80B9B660:("Obj_Boat_Profile","UNK_TYPE1","",0x1), 0x80B9B680:("D_80B9B680","UNK_TYPE1","",0x1), - 0x80B9C320:("Obj_Taru_InitVars","UNK_TYPE1","",0x1), + 0x80B9C320:("Obj_Taru_Profile","UNK_TYPE1","",0x1), 0x80B9C340:("D_80B9C340","UNK_TYPE1","",0x1), 0x80B9C36C:("D_80B9C36C","UNK_TYPE1","",0x1), 0x80B9C380:("D_80B9C380","f32","",0x4), @@ -15050,7 +15050,7 @@ 0x80B9C398:("D_80B9C398","f32","",0x4), 0x80B9C39C:("D_80B9C39C","f32","",0x4), 0x80B9DC70:("D_80B9DC70","UNK_TYPE1","",0x1), - 0x80B9DC8C:("Obj_Hunsui_InitVars","UNK_TYPE1","",0x1), + 0x80B9DC8C:("Obj_Hunsui_Profile","UNK_TYPE1","",0x1), 0x80B9DCAC:("D_80B9DCAC","UNK_TYPE1","",0x1), 0x80B9DCC0:("D_80B9DCC0","f32","",0x4), 0x80B9DCC4:("D_80B9DCC4","f32","",0x4), @@ -15068,11 +15068,11 @@ 0x80B9DED8:("D_80B9DED8","UNK_TYPE1","",0x1), 0x80B9DED9:("D_80B9DED9","UNK_TYPE1","",0x1), 0x80B9DEDA:("D_80B9DEDA","UNK_TYPE1","",0x1), - 0x80B9E1F0:("En_Jc_Mato_InitVars","UNK_TYPE1","",0x1), + 0x80B9E1F0:("En_Jc_Mato_Profile","UNK_TYPE1","",0x1), 0x80B9E210:("D_80B9E210","UNK_TYPE1","",0x1), 0x80B9E23C:("D_80B9E23C","UNK_TYPE1","",0x1), 0x80B9E25C:("D_80B9E25C","UNK_TYPE1","",0x1), - 0x80B9F400:("Mir_Ray3_InitVars","UNK_TYPE1","",0x1), + 0x80B9F400:("Mir_Ray3_Profile","UNK_TYPE1","",0x1), 0x80B9F420:("D_80B9F420","UNK_TYPE1","",0x1), 0x80B9F470:("D_80B9F470","UNK_TYPE1","",0x1), 0x80B9F4A0:("D_80B9F4A0","f32","",0x4), @@ -15085,7 +15085,7 @@ 0x80B9F4BC:("D_80B9F4BC","f32","",0x4), 0x80B9F4C0:("D_80B9F4C0","f32","",0x4), 0x80B9F4C4:("D_80B9F4C4","f32","",0x4), - 0x80BA10B0:("En_Zob_InitVars","UNK_TYPE1","",0x1), + 0x80BA10B0:("En_Zob_Profile","UNK_TYPE1","",0x1), 0x80BA10D0:("D_80BA10D0","UNK_TYPE1","",0x1), 0x80BA10FC:("D_80BA10FC","UNK_TYPE1","",0x1), 0x80BA1120:("D_80BA1120","UNK_TYPE1","",0x1), @@ -15094,14 +15094,14 @@ 0x80BA114C:("D_80BA114C","f32","",0x4), 0x80BA1150:("jtbl_80BA1150","UNK_PTR","",0x4), 0x80BA1194:("jtbl_80BA1194","UNK_PTR","",0x4), - 0x80BA22E0:("Elf_Msg6_InitVars","UNK_TYPE1","",0x1), + 0x80BA22E0:("Elf_Msg6_Profile","UNK_TYPE1","",0x1), 0x80BA2300:("D_80BA2300","UNK_TYPE1","",0x1), 0x80BA2310:("D_80BA2310","f32","",0x4), 0x80BA2314:("D_80BA2314","f32","",0x4), 0x80BA2318:("D_80BA2318","f32","",0x4), 0x80BA231C:("D_80BA231C","f32","",0x4), 0x80BA2320:("jtbl_80BA2320","UNK_PTR","",0x4), - 0x80BA3490:("Obj_Nozoki_InitVars","UNK_TYPE1","",0x1), + 0x80BA3490:("Obj_Nozoki_Profile","UNK_TYPE1","",0x1), 0x80BA34B0:("D_80BA34B0","UNK_TYPE1","",0x1), 0x80BA34B8:("D_80BA34B8","UNK_TYPE1","",0x1), 0x80BA34C0:("D_80BA34C0","UNK_TYPE1","",0x1), @@ -15115,7 +15115,7 @@ 0x80BA36B0:("D_80BA36B0","UNK_TYPE1","",0x1), 0x80BA36B4:("D_80BA36B4","UNK_TYPE1","",0x1), 0x80BA36B8:("D_80BA36B8","f32","",0x4), - 0x80BA4FD0:("En_Toto_InitVars","UNK_TYPE1","",0x1), + 0x80BA4FD0:("En_Toto_Profile","UNK_TYPE1","",0x1), 0x80BA4FF0:("D_80BA4FF0","UNK_TYPE1","",0x1), 0x80BA501C:("D_80BA501C","UNK_TYPE1","",0x1), 0x80BA5028:("D_80BA5028","UNK_TYPE1","",0x1), @@ -15139,7 +15139,7 @@ 0x80BA51C4:("D_80BA51C4","UNK_TYPE4","",0x4), 0x80BA51D0:("D_80BA51D0","f32","",0x4), 0x80BA51D4:("D_80BA51D4","f32","",0x4), - 0x80BA80A0:("En_Railgibud_InitVars","UNK_TYPE1","",0x1), + 0x80BA80A0:("En_Railgibud_Profile","UNK_TYPE1","",0x1), 0x80BA80C0:("sAnimations","UNK_PTR","",0x4), 0x80BA82A0:("D_80BA82A0","UNK_TYPE1","",0x1), 0x80BA82CC:("D_80BA82CC","UNK_TYPE1","",0x1), @@ -15163,7 +15163,7 @@ 0x80BA83AC:("D_80BA83AC","f32","",0x4), 0x80BA83B0:("jtbl_80BA83B0","UNK_PTR","",0x4), 0x80BA83C4:("jtbl_80BA83C4","UNK_PTR","",0x4), - 0x80BAA380:("En_Baba_InitVars","UNK_TYPE1","",0x1), + 0x80BAA380:("En_Baba_Profile","UNK_TYPE1","",0x1), 0x80BAA3A0:("D_80BAA3A0","UNK_TYPE4","",0x4), 0x80BAA430:("D_80BAA430","UNK_TYPE1","",0x1), 0x80BAA45C:("D_80BAA45C","UNK_TYPE1","",0x1), @@ -15176,7 +15176,7 @@ 0x80BAA504:("D_80BAA504","f32","",0x4), 0x80BAA508:("D_80BAA508","f32","",0x4), 0x80BAA50C:("D_80BAA50C","f32","",0x4), - 0x80BAE6B0:("En_Suttari_InitVars","UNK_TYPE1","",0x1), + 0x80BAE6B0:("En_Suttari_Profile","UNK_TYPE1","",0x1), 0x80BAE6D0:("sAnimations","UNK_TYPE4","",0x4), 0x80BAE7A8:("sCylinderInit","UNK_TYPE1","",0x1), 0x80BAE7D4:("sColChkInfoInit2","UNK_TYPE1","",0x1), @@ -15201,7 +15201,7 @@ 0x80BAEA8C:("D_80BAEA8C","f32","",0x4), 0x80BAEA90:("D_80BAEA90","f32","",0x4), 0x80BAEA94:("D_80BAEA94","f32","",0x4), - 0x80BB0520:("En_Zod_InitVars","UNK_TYPE1","",0x1), + 0x80BB0520:("En_Zod_Profile","UNK_TYPE1","",0x1), 0x80BB0540:("D_80BB0540","UNK_TYPE1","",0x1), 0x80BB056C:("D_80BB056C","UNK_TYPE1","",0x1), 0x80BB0580:("D_80BB0580","UNK_TYPE1","",0x1), @@ -15221,10 +15221,10 @@ 0x80BB0660:("D_80BB0660","f32","",0x4), 0x80BB0664:("jtbl_80BB0664","UNK_PTR","",0x4), 0x80BB06A0:("jtbl_80BB06A0","UNK_PTR","",0x4), - 0x80BB1500:("En_Kujiya_InitVars","UNK_TYPE1","",0x1), + 0x80BB1500:("En_Kujiya_Profile","UNK_TYPE1","",0x1), 0x80BB1520:("jtbl_80BB1520","UNK_PTR","",0x4), 0x80BB154C:("jtbl_80BB154C","UNK_PTR","",0x4), - 0x80BB3E50:("En_Geg_InitVars","UNK_TYPE1","",0x1), + 0x80BB3E50:("En_Geg_Profile","UNK_TYPE1","",0x1), 0x80BB3E70:("D_80BB3E70","UNK_TYPE1","",0x1), 0x80BB3E9C:("D_80BB3E9C","UNK_TYPE1","",0x1), 0x80BB3EC8:("D_80BB3EC8","UNK_TYPE1","",0x1), @@ -15242,17 +15242,17 @@ 0x80BB42AC:("D_80BB42AC","f32","",0x4), 0x80BB42B0:("D_80BB42B0","f32","",0x4), 0x80BB42B4:("D_80BB42B4","f32","",0x4), - 0x80BB4A70:("Obj_Kinoko_InitVars","UNK_TYPE1","",0x1), + 0x80BB4A70:("Obj_Kinoko_Profile","UNK_TYPE1","",0x1), 0x80BB4A90:("D_80BB4A90","f32","",0x4), 0x80BB4A94:("D_80BB4A94","f32","",0x4), 0x80BB4A98:("D_80BB4A98","f32","",0x4), - 0x80BB4D70:("Obj_Yasi_InitVars","UNK_TYPE1","",0x1), + 0x80BB4D70:("Obj_Yasi_Profile","UNK_TYPE1","",0x1), 0x80BB4D90:("D_80BB4D90","UNK_TYPE1","",0x1), 0x80BB4DA0:("D_80BB4DA0","f32","",0x4), 0x80BB4DA4:("D_80BB4DA4","f32","",0x4), 0x80BB4DA8:("D_80BB4DA8","f32","",0x4), 0x80BB4DAC:("D_80BB4DAC","f32","",0x4), - 0x80BB5E00:("En_Tanron1_InitVars","UNK_TYPE1","",0x1), + 0x80BB5E00:("En_Tanron1_Profile","UNK_TYPE1","",0x1), 0x80BB5E28:("D_80BB5E28","UNK_TYPE1","",0x1), 0x80BB6228:("D_80BB6228","UNK_TYPE1","",0x1), 0x80BB6628:("D_80BB6628","UNK_TYPE1","",0x1), @@ -15263,7 +15263,7 @@ 0x80BB6728:("D_80BB6728","f32","",0x4), 0x80BB672C:("D_80BB672C","f32","",0x4), 0x80BB6730:("D_80BB6730","f32","",0x4), - 0x80BB8150:("En_Tanron2_InitVars","UNK_TYPE1","",0x1), + 0x80BB8150:("En_Tanron2_Profile","UNK_TYPE1","",0x1), 0x80BB8170:("D_80BB8170","UNK_TYPE1","",0x1), 0x80BB8190:("D_80BB8190","UNK_TYPE1","",0x1), 0x80BB81BC:("D_80BB81BC","UNK_TYPE1","",0x1), @@ -15286,7 +15286,7 @@ 0x80BB8458:("D_80BB8458","EnTanron2*","[82]",0x148), 0x80BB9720:("D_80BB9720","UNK_TYPE4","",0x4), 0x80BB972C:("D_80BB972C","UNK_TYPE4","",0x4), - 0x80BB9730:("En_Tanron3_InitVars","UNK_TYPE1","",0x1), + 0x80BB9730:("En_Tanron3_Profile","UNK_TYPE1","",0x1), 0x80BB9750:("D_80BB9750","UNK_TYPE1","",0x1), 0x80BB97A8:("D_80BB97A8","UNK_TYPE1","",0x1), 0x80BB97AC:("D_80BB97AC","UNK_TYPE1","",0x1), @@ -15300,7 +15300,7 @@ 0x80BB97CC:("D_80BB97CC","f32","",0x4), 0x80BB97D0:("D_80BB97D0","f32","",0x4), 0x80BB97D4:("D_80BB97D4","f32","",0x4), - 0x80BBAB10:("Obj_Chan_InitVars","UNK_TYPE1","",0x1), + 0x80BBAB10:("Obj_Chan_Profile","UNK_TYPE1","",0x1), 0x80BBAB30:("sObjChanCylinderInit","UNK_TYPE1","",0x1), 0x80BBAB5C:("sObjChanInitChain","UNK_TYPE1","",0x1), 0x80BBAB60:("sObjChanFlameSize","UNK_TYPE4","",0x4), @@ -15316,14 +15316,14 @@ 0x80BBABA0:("D_80BBABA0","f32","",0x4), 0x80BBABA4:("D_80BBABA4","f32","",0x4), 0x80BBAC90:("sObjChanLoaded","UNK_TYPE1","",0x1), - 0x80BBC6D0:("En_Zos_InitVars","UNK_TYPE1","",0x1), + 0x80BBC6D0:("En_Zos_Profile","UNK_TYPE1","",0x1), 0x80BBC6F0:("D_80BBC6F0","UNK_TYPE1","",0x1), 0x80BBC71C:("D_80BBC71C","UNK_TYPE1","",0x1), 0x80BBC750:("D_80BBC750","UNK_TYPE1","",0x1), 0x80BBC75C:("sEyeTextures","UNK_TYPE1","",0x1), 0x80BBC770:("D_80BBC770","f32","",0x4), 0x80BBC774:("jtbl_80BBC774","UNK_PTR","",0x4), - 0x80BBF800:("En_S_Goro_InitVars","ActorInit","",0x20), + 0x80BBF800:("En_S_Goro_Profile","ActorInit","",0x20), 0x80BBF820:("sCylinderInit","ColliderCylinderInit","",0x2C), 0x80BBF84C:("sColChkInfoInit","CollisionCheckInfoInit2","",0xC), 0x80BBF858:("sDamageTable","DamageTable","",0x20), @@ -15341,7 +15341,7 @@ 0x80BC1464:("D_80BC1464","UNK_TYPE1","",0x1), 0x80BC1574:("D_80BC1574","UNK_TYPE1","",0x1), 0x80BC15C8:("D_80BC15C8","UNK_TYPE1","",0x1), - 0x80BC15D0:("En_Nb_InitVars","UNK_TYPE1","",0x1), + 0x80BC15D0:("En_Nb_Profile","UNK_TYPE1","",0x1), 0x80BC15F0:("D_80BC15F0","UNK_TYPE1","",0x1), 0x80BC161C:("D_80BC161C","UNK_TYPE1","",0x1), 0x80BC1628:("sAnimationInfo","UNK_TYPE1","",0x1), @@ -15353,7 +15353,7 @@ 0x80BC362C:("D_80BC362C","UNK_TYPE1","",0x1), 0x80BC364C:("D_80BC364C","UNK_TYPE1","",0x1), 0x80BC366C:("D_80BC366C","UNK_TYPE1","",0x1), - 0x80BC368C:("En_Ja_InitVars","UNK_TYPE1","",0x1), + 0x80BC368C:("En_Ja_Profile","UNK_TYPE1","",0x1), 0x80BC36AC:("D_80BC36AC","UNK_TYPE4","",0x4), 0x80BC36B8:("D_80BC36B8","UNK_TYPE4","",0x4), 0x80BC36C4:("D_80BC36C4","UNK_TYPE4","",0x4), @@ -15376,11 +15376,11 @@ 0x80BC37D0:("D_80BC37D0","f32","",0x4), 0x80BC37D4:("D_80BC37D4","f32","",0x4), 0x80BC37D8:("D_80BC37D8","f32","",0x4), - 0x80BC4600:("Bg_F40_Block_InitVars","UNK_TYPE1","",0x1), + 0x80BC4600:("Bg_F40_Block_Profile","UNK_TYPE1","",0x1), 0x80BC4620:("D_80BC4620","UNK_TYPE1","",0x1), 0x80BC4668:("D_80BC4668","UNK_TYPE1","",0x1), 0x80BC4680:("jtbl_80BC4680","UNK_PTR","",0x4), - 0x80BC4DD0:("Bg_F40_Switch_InitVars","UNK_TYPE1","",0x1), + 0x80BC4DD0:("Bg_F40_Switch_Profile","UNK_TYPE1","",0x1), 0x80BC4DF0:("sBgF40SwitchGlobalsInitialized","s32","",0x4), 0x80BC4DF4:("sBgF40SwitchGlobalFlags","BgF40SwitchGlobalFlags","",0x10), 0x80BC4E04:("D_80BC4E04","UNK_TYPE1","",0x1), @@ -15392,7 +15392,7 @@ 0x80BC4E34:("D_80BC4E34","f32","",0x4), 0x80BC4E38:("D_80BC4E38","f32","",0x4), 0x80BC4F20:("sBgF40SwitchLastUpdateFrame","u32","",0x4), - 0x80BC6760:("En_Po_Composer_InitVars","UNK_TYPE1","",0x1), + 0x80BC6760:("En_Po_Composer_Profile","UNK_TYPE1","",0x1), 0x80BC6780:("D_80BC6780","UNK_TYPE1","",0x1), 0x80BC67AC:("D_80BC67AC","UNK_TYPE1","",0x1), 0x80BC67D0:("D_80BC67D0","UNK_TYPE1","",0x1), @@ -15411,7 +15411,7 @@ 0x80BC6988:("D_80BC6988","f32","",0x4), 0x80BC698C:("D_80BC698C","f32","",0x4), 0x80BC6990:("D_80BC6990","f32","",0x4), - 0x80BC7960:("En_Guruguru_InitVars","UNK_TYPE1","",0x1), + 0x80BC7960:("En_Guruguru_Profile","UNK_TYPE1","",0x1), 0x80BC7980:("D_80BC7980","UNK_TYPE1","",0x1), 0x80BC79A0:("D_80BC79A0","UNK_TYPE1","",0x1), 0x80BC79CC:("sAnimations","UNK_TYPE1","",0x1), @@ -15419,7 +15419,7 @@ 0x80BC79D8:("sPlaySpeeds","UNK_TYPE1","",0x1), 0x80BC79E0:("D_80BC79E0","UNK_TYPE1","",0x1), 0x80BC79E8:("D_80BC79E8","UNK_TYPE1","",0x1), - 0x80BC7EF0:("Oceff_Wipe5_InitVars","UNK_TYPE1","",0x1), + 0x80BC7EF0:("Oceff_Wipe5_Profile","UNK_TYPE1","",0x1), 0x80BC7F10:("D_80BC7F10","UNK_TYPE1","",0x1), 0x80BC7F18:("D_80BC7F18","UNK_TYPE1","",0x1), 0x80BC7F20:("D_80BC7F20","UNK_TYPE1","",0x1), @@ -15439,7 +15439,7 @@ 0x80BC91B0:("D_80BC91B0","f32","",0x4), 0x80BC91B4:("D_80BC91B4","f32","",0x4), 0x80BC91B8:("D_80BC91B8","f32","",0x4), - 0x80BCA380:("En_Stone_heishi_InitVars","UNK_TYPE1","",0x1), + 0x80BCA380:("En_Stone_heishi_Profile","UNK_TYPE1","",0x1), 0x80BCA3A0:("D_80BCA3A0","UNK_TYPE1","",0x1), 0x80BCA3CC:("D_80BCA3CC","UNK_TYPE1","",0x1), 0x80BCA3E0:("D_80BCA3E0","UNK_TYPE1","",0x1), @@ -15449,7 +15449,7 @@ 0x80BCA408:("D_80BCA408","f32","",0x4), 0x80BCA40C:("D_80BCA40C","f32","",0x4), 0x80BCA410:("jtbl_80BCA410","UNK_PTR","",0x4), - 0x80BCA8B0:("Oceff_Wipe6_InitVars","UNK_TYPE1","",0x1), + 0x80BCA8B0:("Oceff_Wipe6_Profile","UNK_TYPE1","",0x1), 0x80BCA8D0:("D_80BCA8D0","UNK_TYPE1","",0x1), 0x80BCA8D8:("D_80BCA8D8","UNK_TYPE1","",0x1), 0x80BCA8E0:("D_80BCA8E0","UNK_TYPE1","",0x1), @@ -15465,7 +15465,7 @@ 0x80BCAB60:("D_80BCAB60","f32","",0x4), 0x80BCAB64:("D_80BCAB64","f32","",0x4), 0x80BCAB68:("D_80BCAB68","f32","",0x4), - 0x80BCCB20:("En_Scopenuts_InitVars","UNK_TYPE1","",0x1), + 0x80BCCB20:("En_Scopenuts_Profile","UNK_TYPE1","",0x1), 0x80BCCB40:("D_80BCCB40","UNK_TYPE1","",0x1), 0x80BCCB6C:("D_80BCCB6C","UNK_TYPE1","",0x1), 0x80BCCCDC:("D_80BCCCDC","UNK_PTR","",0x4), @@ -15487,14 +15487,14 @@ 0x80BCCD6C:("D_80BCCD6C","f32","",0x4), 0x80BCCD70:("D_80BCCD70","f32","",0x4), 0x80BCCD74:("D_80BCCD74","f32","",0x4), - 0x80BCDB50:("En_Scopecrow_InitVars","UNK_TYPE1","",0x1), + 0x80BCDB50:("En_Scopecrow_Profile","UNK_TYPE1","",0x1), 0x80BCDB70:("D_80BCDB70","UNK_TYPE1","",0x1), 0x80BCDB94:("D_80BCDB94","UNK_TYPE1","",0x1), 0x80BCDBA0:("D_80BCDBA0","UNK_PTR","",0x4), 0x80BCDBB0:("jtbl_80BCDBB0","UNK_PTR","",0x4), 0x80BCDBC8:("jtbl_80BCDBC8","UNK_PTR","",0x4), 0x80BCDBE0:("D_80BCDBE0","f32","",0x4), - 0x80BCDFC0:("Oceff_Wipe7_InitVars","UNK_TYPE1","",0x1), + 0x80BCDFC0:("Oceff_Wipe7_Profile","UNK_TYPE1","",0x1), 0x80BCDFE0:("D_80BCDFE0","UNK_TYPE1","",0x1), 0x80BCE7E0:("D_80BCE7E0","UNK_TYPE1","",0x1), 0x80BCE7E8:("D_80BCE7E8","UNK_TYPE1","",0x1), @@ -15511,7 +15511,7 @@ 0x80BCEA70:("D_80BCEA70","f32","",0x4), 0x80BCEA74:("D_80BCEA74","f32","",0x4), 0x80BCEA78:("D_80BCEA78","f32","",0x4), - 0x80BCF070:("Eff_Kamejima_Wave_InitVars","UNK_TYPE1","",0x1), + 0x80BCF070:("Eff_Kamejima_Wave_Profile","UNK_TYPE1","",0x1), 0x80BCF090:("D_80BCF090","UNK_TYPE1","",0x1), 0x80BCF0A0:("D_80BCF0A0","UNK_TYPE1","",0x1), 0x80BCF0B0:("D_80BCF0B0","f32","",0x4), @@ -15524,7 +15524,7 @@ 0x80BCF1C0:("sVtxAlpha","UNK_TYPE1","",0x1), 0x80BCF1C1:("D_80BCF1C1","UNK_TYPE1","",0x1), 0x80BCF1C4:("D_80BCF1C4","UNK_TYPE1","",0x1), - 0x80BCFF90:("En_Hg_InitVars","UNK_TYPE1","",0x1), + 0x80BCFF90:("En_Hg_Profile","UNK_TYPE1","",0x1), 0x80BCFFB0:("D_80BCFFB0","UNK_TYPE1","",0x1), 0x80BCFFDC:("D_80BCFFDC","UNK_TYPE1","",0x1), 0x80BCFFFC:("D_80BCFFFC","UNK_TYPE1","",0x1), @@ -15533,7 +15533,7 @@ 0x80BD00D0:("D_80BD00D0","f32","",0x4), 0x80BD00D4:("jtbl_80BD00D4","UNK_PTR","",0x4), 0x80BD00EC:("jtbl_80BD00EC","UNK_PTR","",0x4), - 0x80BD0E80:("En_Hgo_InitVars","UNK_TYPE1","",0x1), + 0x80BD0E80:("En_Hgo_Profile","UNK_TYPE1","",0x1), 0x80BD0EA0:("D_80BD0EA0","UNK_TYPE1","",0x1), 0x80BD0F48:("D_80BD0F48","UNK_TYPE1","",0x1), 0x80BD0F74:("D_80BD0F74","UNK_TYPE1","",0x1), @@ -15541,7 +15541,7 @@ 0x80BD0F90:("jtbl_80BD0F90","UNK_PTR","",0x4), 0x80BD0FAC:("jtbl_80BD0FAC","UNK_PTR","",0x4), 0x80BD1010:("jtbl_80BD1010","UNK_PTR","",0x4), - 0x80BD26C0:("En_Zov_InitVars","UNK_TYPE1","",0x1), + 0x80BD26C0:("En_Zov_Profile","UNK_TYPE1","",0x1), 0x80BD26E0:("D_80BD26E0","UNK_TYPE1","",0x1), 0x80BD270C:("D_80BD270C","UNK_TYPE1","",0x1), 0x80BD2744:("D_80BD2744","UNK_TYPE1","",0x1), @@ -15558,7 +15558,7 @@ 0x80BD3DF0:("D_80BD3DF0","UNK_TYPE1","",0x1), 0x80BD3DF8:("D_80BD3DF8","UNK_TYPE1","",0x1), 0x80BD3E08:("D_80BD3E08","UNK_TYPE1","",0x1), - 0x80BD3E14:("En_Ah_InitVars","UNK_TYPE1","",0x1), + 0x80BD3E14:("En_Ah_Profile","UNK_TYPE1","",0x1), 0x80BD3E34:("D_80BD3E34","UNK_TYPE1","",0x1), 0x80BD3E60:("D_80BD3E60","UNK_TYPE1","",0x1), 0x80BD3E6C:("D_80BD3E6C","UNK_PTR","",0x4), @@ -15572,9 +15572,9 @@ 0x80BD3F00:("D_80BD3F00","UNK_TYPE1","",0x1), 0x80BD3F0C:("D_80BD3F0C","UNK_TYPE1","",0x1), 0x80BD3F14:("D_80BD3F14","UNK_TYPE1","",0x1), - 0x80BD4670:("Obj_Hgdoor_InitVars","UNK_TYPE1","",0x1), + 0x80BD4670:("Obj_Hgdoor_Profile","UNK_TYPE1","",0x1), 0x80BD4690:("D_80BD4690","UNK_TYPE2","",0x2), - 0x80BD5250:("Bg_Ikana_Bombwall_InitVars","UNK_TYPE1","",0x1), + 0x80BD5250:("Bg_Ikana_Bombwall_Profile","UNK_TYPE1","",0x1), 0x80BD5270:("D_80BD5270","UNK_TYPE1","",0x1), 0x80BD529C:("D_80BD529C","UNK_TYPE1","",0x1), 0x80BD52C8:("D_80BD52C8","UNK_TYPE2","",0x2), @@ -15584,34 +15584,34 @@ 0x80BD52F4:("D_80BD52F4","f32","",0x4), 0x80BD52F8:("D_80BD52F8","f32","",0x4), 0x80BD52FC:("D_80BD52FC","f32","",0x4), - 0x80BD55D0:("Bg_Ikana_Ray_InitVars","ActorInit","",0x20), + 0x80BD55D0:("Bg_Ikana_Ray_Profile","ActorInit","",0x20), 0x80BD55F0:("bgIkanaRayCylinderInit","ColliderCylinderInit","",0x2c), 0x80BD561C:("bgIkanaRayCompInit","ActorInitVar","[4]",0x10), - 0x80BD5CF0:("Bg_Ikana_Shutter_InitVars","UNK_TYPE1","",0x1), + 0x80BD5CF0:("Bg_Ikana_Shutter_Profile","UNK_TYPE1","",0x1), 0x80BD5D10:("D_80BD5D10","UNK_TYPE1","",0x1), 0x80BD5D20:("D_80BD5D20","f32","",0x4), 0x80BD5D24:("D_80BD5D24","f32","",0x4), - 0x80BD6480:("Bg_Haka_Bombwall_InitVars","UNK_TYPE1","",0x1), + 0x80BD6480:("Bg_Haka_Bombwall_Profile","UNK_TYPE1","",0x1), 0x80BD64A0:("D_80BD64A0","UNK_TYPE1","",0x1), 0x80BD64CC:("D_80BD64CC","UNK_TYPE2","",0x2), 0x80BD64D4:("D_80BD64D4","UNK_TYPE1","",0x1), 0x80BD64F0:("D_80BD64F0","f32","",0x4), - 0x80BD6880:("Bg_Haka_Tomb_InitVars","UNK_TYPE1","",0x1), + 0x80BD6880:("Bg_Haka_Tomb_Profile","UNK_TYPE1","",0x1), 0x80BD68A0:("D_80BD68A0","UNK_TYPE1","",0x1), 0x80BD68A4:("D_80BD68A4","UNK_TYPE1","",0x1), - 0x80BD6DF0:("En_Sc_Ruppe_InitVars","UNK_TYPE1","",0x1), + 0x80BD6DF0:("En_Sc_Ruppe_Profile","UNK_TYPE1","",0x1), 0x80BD6E10:("D_80BD6E10","UNK_TYPE1","",0x30), 0x80BD6E40:("D_80BD6E40","UNK_TYPE1","",0x1), 0x80BD6E70:("jtbl_80BD6E70","UNK_PTR","",0x4), 0x80BD6E88:("D_80BD6E88","f32","",0x4), - 0x80BD79C0:("Bg_Iknv_Doukutu_InitVars","UNK_TYPE1","",0x1), + 0x80BD79C0:("Bg_Iknv_Doukutu_Profile","UNK_TYPE1","",0x1), 0x80BD79E0:("D_80BD79E0","f32","",0x4), 0x80BD79E4:("D_80BD79E4","f32","",0x4), 0x80BD79E8:("D_80BD79E8","f32","",0x4), 0x80BD79EC:("D_80BD79EC","f32","",0x4), - 0x80BD81D0:("Bg_Iknv_Obj_InitVars","ActorInit","",0x20), + 0x80BD81D0:("Bg_Iknv_Obj_Profile","ActorInit","",0x20), 0x80BD81F0:("BgIknvObjCollisionInit","ColliderCylinderInit","",0x2c), - 0x80BDA460:("En_Pamera_InitVars","UNK_TYPE1","",0x1), + 0x80BDA460:("En_Pamera_Profile","UNK_TYPE1","",0x1), 0x80BDA480:("D_80BDA480","UNK_TYPE1","",0x1), 0x80BDA4AC:("D_80BDA4AC","UNK_TYPE1","",0x1), 0x80BDA4B8:("D_80BDA4B8","UNK_TYPE1","",0x1), @@ -15622,7 +15622,7 @@ 0x80BDA620:("jtbl_80BDA620","UNK_PTR","",0x4), 0x80BDA63C:("jtbl_80BDA63C","UNK_PTR","",0x4), 0x80BDA65C:("jtbl_80BDA65C","UNK_PTR","",0x4), - 0x80BDAF60:("Obj_HsStump_InitVars","UNK_TYPE1","",0x1), + 0x80BDAF60:("Obj_HsStump_Profile","UNK_TYPE1","",0x1), 0x80BDAF80:("D_80BDAF80","UNK_TYPE1","",0x1), 0x80BDAF84:("iceSmokeAccel","Vec3f","",0xc), 0x80BDAF90:("D_80BDAF90","f32","",0x4), @@ -15630,7 +15630,7 @@ 0x80BDAF98:("D_80BDAF98","f32","",0x4), 0x80BDAF9C:("D_80BDAF9C","f32","",0x4), 0x80BDAFA0:("D_80BDAFA0","f32","",0x4), - 0x80BDC0B0:("En_Hidden_Nuts_InitVars","UNK_TYPE1","",0x1), + 0x80BDC0B0:("En_Hidden_Nuts_Profile","UNK_TYPE1","",0x1), 0x80BDC0D0:("D_80BDC0D0","UNK_TYPE1","",0x1), 0x80BDC0FC:("sAnimations","UNK_TYPE1","",0x1), 0x80BDC120:("sAnimationModes","UNK_TYPE1","",0x1), @@ -15642,7 +15642,7 @@ 0x80BDC158:("D_80BDC158","UNK_TYPE1","",0x1), 0x80BDC164:("D_80BDC164","UNK_TYPE1","",0x1), 0x80BDC168:("D_80BDC168","UNK_TYPE1","",0x1), - 0x80BDDCD0:("En_Zow_InitVars","UNK_TYPE1","",0x1), + 0x80BDDCD0:("En_Zow_Profile","UNK_TYPE1","",0x1), 0x80BDDCF0:("D_80BDDCF0","UNK_TYPE1","",0x1), 0x80BDDD1C:("D_80BDDD1C","UNK_TYPE4","",0x4), 0x80BDDD28:("D_80BDDD28","UNK_TYPE4","",0x4), @@ -15661,7 +15661,7 @@ 0x80BDDD90:("D_80BDDD90","f32","",0x4), 0x80BDDD94:("D_80BDDD94","f32","",0x4), 0x80BDDD98:("jtbl_80BDDD98","UNK_PTR","",0x4), - 0x80BDE140:("En_Talk_InitVars","UNK_TYPE1","",0x1), + 0x80BDE140:("En_Talk_Profile","UNK_TYPE1","",0x1), 0x80BDFC70:("D_80BDFC70","UNK_TYPE1","",0x1), 0x80BDFCBC:("D_80BDFCBC","UNK_TYPE1","",0x1), 0x80BDFD14:("D_80BDFD14","UNK_TYPE1","",0x1), @@ -15673,7 +15673,7 @@ 0x80BDFE8C:("D_80BDFE8C","UNK_TYPE1","",0x1), 0x80BDFED4:("D_80BDFED4","UNK_TYPE1","",0x1), 0x80BDFF24:("D_80BDFF24","UNK_TYPE1","",0x1), - 0x80BDFF98:("En_Al_InitVars","UNK_TYPE1","",0x1), + 0x80BDFF98:("En_Al_Profile","UNK_TYPE1","",0x1), 0x80BDFFB8:("D_80BDFFB8","UNK_TYPE1","",0x1), 0x80BDFFE4:("D_80BDFFE4","UNK_TYPE1","",0x1), 0x80BDFFF0:("D_80BDFFF0","UNK_TYPE1","",0x1), @@ -15694,7 +15694,7 @@ 0x80BE1998:("D_80BE1998","UNK_TYPE1","",0x1), 0x80BE19A0:("D_80BE19A0","UNK_TYPE1","",0x1), 0x80BE1A0C:("D_80BE1A0C","UNK_TYPE1","",0x1), - 0x80BE1A78:("En_Tab_InitVars","UNK_TYPE1","",0x1), + 0x80BE1A78:("En_Tab_Profile","UNK_TYPE1","",0x1), 0x80BE1A98:("D_80BE1A98","UNK_TYPE1","",0x1), 0x80BE1AC4:("D_80BE1AC4","UNK_TYPE1","",0x1), 0x80BE1AD0:("D_80BE1AD0","UNK_TYPE1","",0x1), @@ -15704,12 +15704,12 @@ 0x80BE1B10:("D_80BE1B10","UNK_TYPE1","",0x1), 0x80BE1B18:("D_80BE1B18","UNK_TYPE1","",0x1), 0x80BE1B24:("D_80BE1B24","UNK_TYPE1","",0x1), - 0x80BE1F90:("En_Nimotsu_InitVars","UNK_TYPE1","",0x1), + 0x80BE1F90:("En_Nimotsu_Profile","UNK_TYPE1","",0x1), 0x80BE1FB0:("D_80BE1FB0","UNK_TYPE1","",0x1), 0x80BE1FE0:("D_80BE1FE0","f32","",0x4), - 0x80BE21D0:("En_Hit_Tag_InitVars","UNK_TYPE1","",0x1), + 0x80BE21D0:("En_Hit_Tag_Profile","UNK_TYPE1","",0x1), 0x80BE21F0:("D_80BE21F0","UNK_TYPE1","",0x1), - 0x80BE3990:("En_Ruppecrow_InitVars","UNK_TYPE1","",0x1), + 0x80BE3990:("En_Ruppecrow_Profile","UNK_TYPE1","",0x1), 0x80BE39B0:("D_80BE39B0","UNK_TYPE1","",0x1), 0x80BE39D4:("D_80BE39D4","UNK_TYPE1","",0x1), 0x80BE39E0:("D_80BE39E0","UNK_PTR","",0x4), @@ -15725,7 +15725,7 @@ 0x80BE3A38:("D_80BE3A38","f32","",0x4), 0x80BE3A3C:("D_80BE3A3C","f32","",0x4), 0x80BE3A40:("D_80BE3A40","f32","",0x4), - 0x80BE4880:("En_Tanron4_InitVars","UNK_TYPE1","",0x1), + 0x80BE4880:("En_Tanron4_Profile","UNK_TYPE1","",0x1), 0x80BE48A0:("D_80BE48A0","f32","",0x4), 0x80BE48A4:("D_80BE48A4","f32","",0x4), 0x80BE48A8:("D_80BE48A8","f32","",0x4), @@ -15733,7 +15733,7 @@ 0x80BE48B0:("D_80BE48B0","f32","",0x4), 0x80BE48B4:("D_80BE48B4","f32","",0x4), 0x80BE5D80:("sFragmentAndItemDropCount","UNK_TYPE4","",0x4), - 0x80BE5D84:("En_Tanron5_InitVars","UNK_TYPE1","",0x1), + 0x80BE5D84:("En_Tanron5_Profile","UNK_TYPE1","",0x1), 0x80BE5DA4:("D_80BE5DA4","UNK_TYPE1","",0x1), 0x80BE5DD0:("sGiantModeScaleFactor","f32","",0x4), 0x80BE5DD4:("sSpawnPosList","UNK_TYPE2","",0x2), @@ -15753,9 +15753,9 @@ 0x80BE5EFC:("D_80BE5EFC","f32","",0x4), 0x80BE5F00:("D_80BE5F00","f32","",0x4), 0x80BE5F04:("D_80BE5F04","f32","",0x4), - 0x80BE6150:("En_Tanron6_InitVars","UNK_TYPE1","",0x1), + 0x80BE6150:("En_Tanron6_Profile","UNK_TYPE1","",0x1), 0x80BE6170:("D_80BE6170","UNK_TYPE1","",0x1), - 0x80BE78D0:("En_Daiku2_InitVars","UNK_TYPE1","",0x1), + 0x80BE78D0:("En_Daiku2_Profile","UNK_TYPE1","",0x1), 0x80BE78F0:("sTextIds","s16","",0x1), 0x80BE7900:("D_80BE7900","UNK_TYPE1","",0x1), 0x80BE792C:("sAnimations","AnimationHeader*","",0x1), @@ -15765,26 +15765,26 @@ 0x80BE7978:("D_80BE7978","f32","",0x4), 0x80BE797C:("D_80BE797C","f32","",0x4), 0x80BE7980:("D_80BE7980","f32","",0x4), - 0x80BE83F0:("En_Muto_InitVars","UNK_TYPE1","",0x1), + 0x80BE83F0:("En_Muto_Profile","UNK_TYPE1","",0x1), 0x80BE8410:("D_80BE8410","UNK_TYPE1","",0x1), 0x80BE841C:("D_80BE841C","UNK_TYPE1","",0x1), 0x80BE8448:("D_80BE8448","UNK_TYPE1","",0x1), 0x80BE8450:("D_80BE8450","UNK_TYPE1","",0x1), - 0x80BE8DF0:("En_Baisen_InitVars","UNK_TYPE1","",0x1), + 0x80BE8DF0:("En_Baisen_Profile","UNK_TYPE1","",0x1), 0x80BE8E10:("D_80BE8E10","UNK_TYPE1","",0x1), 0x80BE8E3C:("D_80BE8E3C","UNK_TYPE1","",0x1), 0x80BE8E4C:("sAnimations","UNK_TYPE1","",0x1), 0x80BE8E58:("D_80BE8E58","UNK_TYPE1","",0x1), - 0x80BE9430:("En_Heishi_InitVars","UNK_TYPE1","",0x1), + 0x80BE9430:("En_Heishi_Profile","UNK_TYPE1","",0x1), 0x80BE9450:("sCylinderInit","UNK_TYPE1","",0x1), 0x80BE947C:("sAnimations","UNK_TYPE1","",0x1), 0x80BE9490:("sAnimationModes","UNK_TYPE1","",0x1), - 0x80BE9A30:("En_Demo_heishi_InitVars","UNK_TYPE1","",0x1), + 0x80BE9A30:("En_Demo_heishi_Profile","UNK_TYPE1","",0x1), 0x80BE9A50:("sCylinderInit","UNK_TYPE1","",0x1), 0x80BE9A7C:("sTextIds","UNK_TYPE1","",0x1), 0x80BE9A80:("sAnimations","UNK_TYPE1","",0x1), 0x80BE9A94:("sAnimationModes","UNK_TYPE1","",0x1), - 0x80BEB1B0:("En_Dt_InitVars","UNK_TYPE1","",0x1), + 0x80BEB1B0:("En_Dt_Profile","UNK_TYPE1","",0x1), 0x80BEB1D0:("sTextIds","UNK_TYPE1","",0x1), 0x80BEB208:("sCutsceneFocusTargetTable","UNK_TYPE1","",0x1), 0x80BEB268:("D_80BEB268","UNK_TYPE2","",0x2), @@ -15795,15 +15795,15 @@ 0x80BEB2E8:("sAppearancePropertiesTable","UNK_TYPE1","",0x1), 0x80BEB348:("sEyeTextures","UNK_TYPE1","",0x1), 0x80BEB35C:("sBrowTextures","UNK_TYPE1","",0x1), - 0x80BEB860:("En_Cha_InitVars","UNK_TYPE1","",0x1), + 0x80BEB860:("En_Cha_Profile","UNK_TYPE1","",0x1), 0x80BEB880:("D_80BEB880","UNK_TYPE1","",0x1), 0x80BEB8B0:("D_80BEB8B0","f32","",0x4), 0x80BEB8B4:("D_80BEB8B4","f32","",0x4), 0x80BEB8B8:("D_80BEB8B8","f32","",0x4), 0x80BEB8BC:("D_80BEB8BC","f32","",0x4), - 0x80BEBA70:("Obj_Dinner_InitVars","UNK_TYPE1","",0x1), - 0x80BEC190:("Eff_Lastday_InitVars","UNK_TYPE1","",0x1), - 0x80BECAB0:("Bg_Ikana_Dharma_InitVars","UNK_TYPE1","",0x1), + 0x80BEBA70:("Obj_Dinner_Profile","UNK_TYPE1","",0x1), + 0x80BEC190:("Eff_Lastday_Profile","UNK_TYPE1","",0x1), + 0x80BECAB0:("Bg_Ikana_Dharma_Profile","UNK_TYPE1","",0x1), 0x80BECAD0:("D_80BECAD0","UNK_TYPE1","",0x1), 0x80BECAFC:("D_80BECAFC","UNK_TYPE1","",0x1), 0x80BECB10:("D_80BECB10","f32","",0x4), @@ -15811,7 +15811,7 @@ 0x80BECB18:("D_80BECB18","f32","",0x4), 0x80BECB1C:("D_80BECB1C","f32","",0x4), 0x80BECBD0:("D_80BECBD0","UNK_TYPE1","",0x1), - 0x80BF02D0:("En_Akindonuts_InitVars","UNK_TYPE1","",0x1), + 0x80BF02D0:("En_Akindonuts_Profile","UNK_TYPE1","",0x1), 0x80BF02F0:("D_80BF02F0","UNK_TYPE1","",0x1), 0x80BF031C:("D_80BF031C","UNK_TYPE1","",0x1), 0x80BF048C:("D_80BF048C","UNK_TYPE1","",0x1), @@ -15841,7 +15841,7 @@ 0x80BF0778:("D_80BF0778","f32","",0x4), 0x80BF077C:("D_80BF077C","f32","",0x4), 0x80BF0780:("D_80BF0780","f32","",0x4), - 0x80BF10C0:("Eff_Stk_InitVars","UNK_TYPE1","",0x1), + 0x80BF10C0:("Eff_Stk_Profile","UNK_TYPE1","",0x1), 0x80BF10E0:("D_80BF10E0","f32","",0x4), 0x80BF10E4:("D_80BF10E4","f32","",0x4), 0x80BF10E8:("D_80BF10E8","f32","",0x4), @@ -15852,7 +15852,7 @@ 0x80BF33E0:("D_80BF33E0","UNK_TYPE1","",0x1), 0x80BF33E8:("D_80BF33E8","UNK_TYPE1","",0x1), 0x80BF33F0:("D_80BF33F0","UNK_TYPE1","",0x1), - 0x80BF33F8:("En_Ig_InitVars","UNK_TYPE1","",0x1), + 0x80BF33F8:("En_Ig_Profile","UNK_TYPE1","",0x1), 0x80BF3418:("D_80BF3418","UNK_TYPE1","",0x1), 0x80BF3444:("D_80BF3444","UNK_TYPE1","",0x1), 0x80BF3470:("D_80BF3470","UNK_TYPE1","",0x1), @@ -15867,7 +15867,7 @@ 0x80BF35E0:("jtbl_80BF35E0","UNK_PTR","",0x4), 0x80BF3614:("D_80BF3614","f32","",0x4), 0x80BF3618:("jtbl_80BF3618","UNK_PTR","",0x4), - 0x80BF5740:("En_Rg_InitVars","UNK_TYPE1","",0x1), + 0x80BF5740:("En_Rg_Profile","UNK_TYPE1","",0x1), 0x80BF5760:("D_80BF5760","UNK_TYPE1","",0x1), 0x80BF578C:("D_80BF578C","UNK_TYPE1","",0x1), 0x80BF57B8:("D_80BF57B8","UNK_TYPE1","",0x1), @@ -15895,7 +15895,7 @@ 0x80BF5A40:("D_80BF5A40","f32","",0x4), 0x80BF5A44:("D_80BF5A44","f32","",0x4), 0x80BF5C10:("D_80BF5C10","UNK_TYPE1","",0x1), - 0x80BF6F80:("En_Osk_InitVars","UNK_TYPE1","",0x1), + 0x80BF6F80:("En_Osk_Profile","UNK_TYPE1","",0x1), 0x80BF6FA0:("sAnimationsType0","UNK_PTR","",0x4), 0x80BF6FB4:("sAnimationsType1","UNK_TYPE1","",0x1), 0x80BF6FE4:("sAnimationsType2","UNK_PTR","",0x4), @@ -15915,7 +15915,7 @@ 0x80BF711C:("jtbl_80BF711C","UNK_PTR","",0x4), 0x80BF7148:("D_80BF7148","f32","",0x4), 0x80BF714C:("D_80BF714C","f32","",0x4), - 0x80BF7920:("En_Sth2_InitVars","UNK_TYPE1","",0x1), + 0x80BF7920:("En_Sth2_Profile","UNK_TYPE1","",0x1), 0x80BF7940:("D_80BF7940","UNK_TYPE1","",0x1), 0x80BF79C0:("D_80BF79C0","UNK_TYPE1","",0x1), 0x80BF7AC0:("D_80BF7AC0","UNK_TYPE1","",0x1), @@ -15940,7 +15940,7 @@ 0x80BFA000:("D_80BFA000","UNK_TYPE1","",0x1), 0x80BFA010:("D_80BFA010","UNK_TYPE1","",0x1), 0x80BFA01C:("D_80BFA01C","UNK_TYPE1","",0x1), - 0x80BFB290:("En_Yb_InitVars","UNK_TYPE1","",0x1), + 0x80BFB290:("En_Yb_Profile","UNK_TYPE1","",0x1), 0x80BFB2B0:("D_80BFB2B0","UNK_TYPE1","",0x1), 0x80BFB2DC:("D_80BFB2DC","UNK_TYPE1","",0x1), 0x80BFB2E0:("D_80BFB2E0","UNK_TYPE1","",0x1), @@ -15950,7 +15950,7 @@ 0x80BFB310:("D_80BFB310","f32","",0x4), 0x80BFB314:("D_80BFB314","f32","",0x4), 0x80BFB318:("D_80BFB318","f32","",0x4), - 0x80BFCCC0:("En_Rz_InitVars","UNK_TYPE1","",0x1), + 0x80BFCCC0:("En_Rz_Profile","UNK_TYPE1","",0x1), 0x80BFCCE0:("D_80BFCCE0","UNK_TYPE1","",0x1), 0x80BFCCEC:("D_80BFCCEC","UNK_TYPE4","",0x4), 0x80BFCCF0:("D_80BFCCF0","UNK_TYPE4","",0x4), @@ -15963,11 +15963,11 @@ 0x80BFCD74:("D_80BFCD74","f32","",0x4), 0x80BFCD78:("D_80BFCD78","f32","",0x4), 0x80BFCD7C:("D_80BFCD7C","f32","",0x4), - 0x80BFD260:("En_Scopecoin_InitVars","UNK_TYPE1","",0x1), + 0x80BFD260:("En_Scopecoin_Profile","UNK_TYPE1","",0x1), 0x80BFD280:("sRupeeTextures","UNK_TYPE1","",0x1), 0x80BFDEA0:("D_80BFDEA0","UNK_TYPE1","",0x1), 0x80BFDEB4:("D_80BFDEB4","UNK_TYPE1","",0x1), - 0x80BFDF28:("En_Bjt_InitVars","UNK_TYPE1","",0x1), + 0x80BFDF28:("En_Bjt_Profile","UNK_TYPE1","",0x1), 0x80BFDF48:("D_80BFDF48","UNK_TYPE1","",0x1), 0x80BFDF74:("D_80BFDF74","UNK_TYPE1","",0x1), 0x80BFDF80:("D_80BFDF80","UNK_TYPE1","",0x1), @@ -15981,7 +15981,7 @@ 0x80BFE028:("jtbl_80BFE028","UNK_PTR","",0x4), 0x80C009F0:("D_80C009F0","UNK_TYPE4","",0x4), 0x80C009F4:("D_80C009F4","UNK_TYPE4","",0x4), - 0x80C009F8:("En_Bomjima_InitVars","UNK_TYPE1","",0x1), + 0x80C009F8:("En_Bomjima_Profile","UNK_TYPE1","",0x1), 0x80C00A18:("D_80C00A18","UNK_TYPE1","",0x1), 0x80C00A44:("D_80C00A44","UNK_TYPE1","",0x1), 0x80C00A4C:("D_80C00A4C","UNK_TYPE1","",0x1), @@ -15998,7 +15998,7 @@ 0x80C00B48:("D_80C00B48","UNK_TYPE1","",0x1), 0x80C00B60:("D_80C00B60","f32","",0x4), 0x80C03170:("D_80C03170","UNK_TYPE4","",0x4), - 0x80C03174:("En_Bomjimb_InitVars","UNK_TYPE1","",0x1), + 0x80C03174:("En_Bomjimb_Profile","UNK_TYPE1","",0x1), 0x80C03194:("D_80C03194","UNK_TYPE1","",0x1), 0x80C031C0:("D_80C031C0","UNK_TYPE1","",0x1), 0x80C03218:("D_80C03218","UNK_TYPE1","",0x1), @@ -16015,7 +16015,7 @@ 0x80C032C0:("D_80C032C0","f32","",0x4), 0x80C032C4:("D_80C032C4","f32","",0x4), 0x80C032C8:("jtbl_80C032C8","UNK_PTR","",0x4), - 0x80C04750:("En_Bombers_InitVars","UNK_TYPE1","",0x1), + 0x80C04750:("En_Bombers_Profile","UNK_TYPE1","",0x1), 0x80C04770:("D_80C04770","UNK_TYPE1","",0x1), 0x80C0479C:("sAnimations","UNK_TYPE1","",0x1), 0x80C047E0:("sAnimationModes","UNK_TYPE1","",0x1), @@ -16024,7 +16024,7 @@ 0x80C04818:("D_80C04818","UNK_PTR","",0x4), 0x80C0482C:("D_80C0482C","UNK_TYPE1","",0x1), 0x80C04838:("D_80C04838","UNK_TYPE1","",0x1), - 0x80C05880:("En_Bombers2_InitVars","UNK_TYPE1","",0x1), + 0x80C05880:("En_Bombers2_Profile","UNK_TYPE1","",0x1), 0x80C058A0:("sTextIds","u16","",0x1), 0x80C058B0:("sCylinderInit","UNK_TYPE1","",0x1), 0x80C058DC:("sAnimations","AnimationHeader*","",0x1), @@ -16034,35 +16034,35 @@ 0x80C05914:("sEyeTextures","void*","",0x1), 0x80C05920:("D_80C05920","UNK_TYPE4","",0x4), 0x80C05930:("jtbl_80C05930","UNK_PTR","",0x4), - 0x80C06440:("En_Bombal_InitVars","UNK_TYPE1","",0x1), + 0x80C06440:("En_Bombal_Profile","UNK_TYPE1","",0x1), 0x80C06460:("D_80C06460","UNK_TYPE1","",0x1), 0x80C06490:("D_80C06490","f32","",0x4), 0x80C06494:("D_80C06494","f32","",0x4), 0x80C06498:("D_80C06498","f32","",0x4), - 0x80C06A10:("Obj_Moon_Stone_InitVars","UNK_TYPE1","",0x1), - 0x80C06FE0:("Obj_Mu_Pict_InitVars","UNK_TYPE1","",0x1), + 0x80C06A10:("Obj_Moon_Stone_Profile","UNK_TYPE1","",0x1), + 0x80C06FE0:("Obj_Mu_Pict_Profile","UNK_TYPE1","",0x1), 0x80C07000:("jtbl_80C07000","UNK_PTR","",0x4), 0x80C0701C:("jtbl_80C0701C","UNK_PTR","",0x4), - 0x80C07680:("Bg_Ikninside_InitVars","UNK_TYPE1","",0x1), + 0x80C07680:("Bg_Ikninside_Profile","UNK_TYPE1","",0x1), 0x80C076A0:("D_80C076A0","UNK_TYPE4","",0x4), 0x80C076A8:("D_80C076A8","UNK_TYPE1","",0x1), 0x80C076D4:("D_80C076D4","UNK_TYPE1","",0x1), - 0x80C07AC0:("Eff_Zoraband_InitVars","UNK_TYPE1","",0x1), - 0x80C07C20:("Obj_Kepn_Koya_InitVars","UNK_TYPE1","",0x1), + 0x80C07AC0:("Eff_Zoraband_Profile","UNK_TYPE1","",0x1), + 0x80C07C20:("Obj_Kepn_Koya_Profile","UNK_TYPE1","",0x1), 0x80C07C40:("D_80C07C40","UNK_TYPE1","",0x1), - 0x80C08640:("Obj_Usiyane_InitVars","UNK_TYPE1","",0x1), + 0x80C08640:("Obj_Usiyane_Profile","UNK_TYPE1","",0x1), 0x80C08660:("D_80C08660","UNK_TYPE1","",0x1), 0x80C0866C:("D_80C0866C","UNK_TYPE1","",0x1), 0x80C086B0:("D_80C086B0","UNK_TYPE1","",0x1), 0x80C086C0:("D_80C086C0","f32","",0x4), 0x80C086C4:("D_80C086C4","f32","",0x4), - 0x80C089E0:("En_Nnh_InitVars","UNK_TYPE1","",0x1), + 0x80C089E0:("En_Nnh_Profile","UNK_TYPE1","",0x1), 0x80C08A00:("D_80C08A00","UNK_TYPE1","",0x1), - 0x80C08DD0:("Obj_Kzsaku_InitVars","UNK_TYPE1","",0x1), - 0x80C09030:("Obj_Milk_Bin_InitVars","UNK_TYPE1","",0x1), + 0x80C08DD0:("Obj_Kzsaku_Profile","UNK_TYPE1","",0x1), + 0x80C09030:("Obj_Milk_Bin_Profile","UNK_TYPE1","",0x1), 0x80C09050:("D_80C09050","UNK_TYPE1","",0x1), 0x80C09080:("D_80C09080","f32","",0x4), - 0x80C09D30:("En_Kitan_InitVars","UNK_TYPE1","",0x1), + 0x80C09D30:("En_Kitan_Profile","UNK_TYPE1","",0x1), 0x80C09D50:("D_80C09D50","UNK_TYPE1","",0x1), 0x80C09D7C:("D_80C09D7C","UNK_TYPE1","",0x1), 0x80C09D80:("D_80C09D80","UNK_TYPE1","",0x1), @@ -16073,13 +16073,13 @@ 0x80C09D9C:("jtbl_80C09D9C","UNK_PTR","",0x4), 0x80C09DB4:("D_80C09DB4","f32","",0x4), 0x80C09DB8:("D_80C09DB8","f32","",0x4), - 0x80C0A600:("Bg_Astr_Bombwall_InitVars","UNK_TYPE1","",0x1), + 0x80C0A600:("Bg_Astr_Bombwall_Profile","UNK_TYPE1","",0x1), 0x80C0A620:("D_80C0A620","UNK_TYPE1","",0x1), 0x80C0A698:("D_80C0A698","UNK_TYPE1","",0x1), 0x80C0A6A8:("D_80C0A6A8","UNK_TYPE1","",0x1), 0x80C0A6B0:("D_80C0A6B0","f32","",0x4), 0x80C0A6B4:("D_80C0A6B4","f32","",0x4), - 0x80C0B0C0:("Bg_Iknin_Susceil_InitVars","UNK_TYPE1","",0x1), + 0x80C0B0C0:("Bg_Iknin_Susceil_Profile","UNK_TYPE1","",0x1), 0x80C0B0E4:("D_80C0B0E4","f32","",0x4), 0x80C0B0E8:("D_80C0B0E8","UNK_TYPE4","",0x4), 0x80C0B0F0:("D_80C0B0F0","UNK_TYPE1","",0x1), @@ -16104,7 +16104,7 @@ 0x80C0F8D4:("D_80C0F8D4","UNK_TYPE1","",0x1), 0x80C0F9D0:("D_80C0F9D0","UNK_TYPE1","",0x1), 0x80C0F9E0:("D_80C0F9E0","UNK_TYPE1","",0x1), - 0x80C0FA00:("En_Bsb_InitVars","UNK_TYPE1","",0x1), + 0x80C0FA00:("En_Bsb_Profile","UNK_TYPE1","",0x1), 0x80C0FA20:("sAnimations","UNK_TYPE1","",0x1), 0x80C0FA84:("sAnimationModes","UNK_TYPE1","",0x1), 0x80C0FAA0:("D_80C0FAA0","UNK_TYPE4","",0x4), @@ -16144,12 +16144,12 @@ 0x80C0FBB8:("D_80C0FBB8","f32","",0x4), 0x80C0FBBC:("D_80C0FBBC","f32","",0x4), 0x80C0FBC0:("D_80C0FBC0","f32","",0x4), - 0x80C10690:("En_Recepgirl_InitVars","UNK_TYPE1","",0x1), + 0x80C10690:("En_Recepgirl_Profile","UNK_TYPE1","",0x1), 0x80C106B0:("D_80C106B0","UNK_TYPE4","",0x4), 0x80C106C0:("D_80C106C0","UNK_TYPE1","",0x1), 0x80C106C8:("D_80C106C8","UNK_TYPE4","",0x4), 0x80C106D0:("D_80C106D0","f32","",0x4), - 0x80C135A0:("En_Thiefbird_InitVars","UNK_TYPE1","",0x1), + 0x80C135A0:("En_Thiefbird_Profile","UNK_TYPE1","",0x1), 0x80C135C0:("D_80C135C0","UNK_TYPE1","",0x1), 0x80C1362C:("D_80C1362C","UNK_TYPE1","",0x1), 0x80C1363C:("D_80C1363C","UNK_TYPE1","",0x1), @@ -16174,13 +16174,13 @@ 0x80C136E0:("D_80C136E0","f32","",0x4), 0x80C13920:("D_80C13920","UNK_TYPE1","",0x1), 0x80C1392C:("D_80C1392C","UNK_TYPE1","",0x1), - 0x80C15010:("En_Jgame_Tsn_InitVars","UNK_TYPE1","",0x1), + 0x80C15010:("En_Jgame_Tsn_Profile","UNK_TYPE1","",0x1), 0x80C15030:("D_80C15030","UNK_PTR","",0x4), 0x80C15078:("D_80C15078","UNK_TYPE1","",0x1), 0x80C150A4:("D_80C150A4","UNK_TYPE1","",0x1), 0x80C150B0:("jtbl_80C150B0","UNK_PTR","",0x4), 0x80C150CC:("jtbl_80C150CC","UNK_PTR","",0x4), - 0x80C15BA0:("Obj_Jgame_Light_InitVars","UNK_TYPE1","",0x1), + 0x80C15BA0:("Obj_Jgame_Light_Profile","UNK_TYPE1","",0x1), 0x80C15BC0:("D_80C15BC0","UNK_TYPE1","",0x1), 0x80C15BEC:("D_80C15BEC","UNK_TYPE1","",0x1), 0x80C15DEC:("D_80C15DEC","UNK_TYPE1","",0x1), @@ -16193,10 +16193,10 @@ 0x80C1613C:("D_80C1613C","f32","",0x4), 0x80C16140:("D_80C16140","f32","",0x4), 0x80C16144:("D_80C16144","f32","",0x4), - 0x80C16400:("Obj_Yado_InitVars","UNK_TYPE1","",0x1), + 0x80C16400:("Obj_Yado_Profile","UNK_TYPE1","",0x1), 0x80C16420:("D_80C16420","UNK_TYPE1","",0x1), 0x80C16470:("D_80C16470","UNK_TYPE1","",0x1), - 0x80C177B0:("Demo_Syoten_InitVars","UNK_TYPE1","",0x1), + 0x80C177B0:("Demo_Syoten_Profile","UNK_TYPE1","",0x1), 0x80C177D0:("D_80C177D0","UNK_TYPE1","",0x1), 0x80C177D1:("D_80C177D1","UNK_TYPE1","",0x1), 0x80C17820:("D_80C17820","UNK_TYPE1","",0x1), @@ -16209,12 +16209,12 @@ 0x80C1786C:("D_80C1786C","f32","",0x4), 0x80C17870:("D_80C17870","f32","",0x4), 0x80C17874:("jtbl_80C17874","UNK_PTR","",0x4), - 0x80C18070:("Demo_Moonend_InitVars","UNK_TYPE1","",0x1), + 0x80C18070:("Demo_Moonend_Profile","UNK_TYPE1","",0x1), 0x80C18090:("D_80C18090","f32","",0x4), 0x80C18094:("D_80C18094","f32","",0x4), - 0x80C181E0:("Bg_Lbfshot_InitVars","UNK_TYPE1","",0x1), + 0x80C181E0:("Bg_Lbfshot_Profile","UNK_TYPE1","",0x1), 0x80C18200:("D_80C18200","UNK_TYPE1","",0x1), - 0x80C189A0:("Bg_Last_Bwall_InitVars","UNK_TYPE1","",0x1), + 0x80C189A0:("Bg_Last_Bwall_Profile","UNK_TYPE1","",0x1), 0x80C189C0:("D_80C189C0","UNK_TYPE1","",0x1), 0x80C18A38:("D_80C18A38","UNK_TYPE1","",0x1), 0x80C18A48:("D_80C18A48","UNK_PTR","",0x4), @@ -16229,12 +16229,12 @@ 0x80C18AC8:("D_80C18AC8","UNK_TYPE1","",0x1), 0x80C18AD0:("D_80C18AD0","f32","",0x4), 0x80C18AD4:("D_80C18AD4","f32","",0x4), - 0x80C19160:("En_And_InitVars","UNK_TYPE1","",0x1), + 0x80C19160:("En_And_Profile","UNK_TYPE1","",0x1), 0x80C19180:("D_80C19180","UNK_PTR","",0x4), 0x80C19200:("D_80C19200","UNK_TYPE4","",0x4), 0x80C19218:("D_80C19218","UNK_TYPE4","",0x4), 0x80C19220:("D_80C19220","UNK_TYPE1","",0x1), - 0x80C1AA40:("En_Invadepoh_Demo_InitVars","UNK_TYPE1","",0x1), + 0x80C1AA40:("En_Invadepoh_Demo_Profile","UNK_TYPE1","",0x1), 0x80C1AA60:("sCueTypes","s32","[5]",0x14), 0x80C1AA74:("sAlienInitChain","InitChainEntry","[5]",0x14), 0x80C1AA88:("sRomaniInitChain","InitChainEntry","[6]",0x18), @@ -16254,7 +16254,7 @@ 0x80C1AB6C:("D_80C1AB6C","f32","",0x4), 0x80C1AD40:("sInvadepohDemoAlienLeftEyeBeamMtxF","MtxF","",0x40), 0x80C1AD80:("sInvadepohDemoAlienRightEyeBeamMtxF","MtxF","",0x40), - 0x80C1B520:("Obj_Danpeilift_InitVars","UNK_TYPE1","",0x1), + 0x80C1B520:("Obj_Danpeilift_Profile","UNK_TYPE1","",0x1), 0x80C1B540:("D_80C1B540","UNK_TYPE1","",0x1), 0x80C1B550:("D_80C1B550","f32","",0x4), 0x80C1B554:("D_80C1B554","f32","",0x4), @@ -16265,7 +16265,7 @@ 0x80C1B568:("D_80C1B568","f32","",0x4), 0x80C1B56C:("D_80C1B56C","f32","",0x4), 0x80C1B570:("D_80C1B570","f32","",0x4), - 0x80C1BBE0:("En_Fall2_InitVars","UNK_TYPE1","",0x1), + 0x80C1BBE0:("En_Fall2_Profile","UNK_TYPE1","",0x1), 0x80C1BC00:("D_80C1BC00","UNK_TYPE1","",0x1), 0x80C1BC01:("D_80C1BC01","UNK_TYPE1","",0x1), 0x80C1BC02:("D_80C1BC02","UNK_TYPE1","",0x1), @@ -16275,14 +16275,14 @@ 0x80C1BCF0:("D_80C1BCF0","f32","",0x4), 0x80C1BCF4:("D_80C1BCF4","f32","",0x4), 0x80C1BCF8:("D_80C1BCF8","f32","",0x4), - 0x80C1C250:("Dm_Al_InitVars","UNK_TYPE1","",0x1), + 0x80C1C250:("Dm_Al_Profile","UNK_TYPE1","",0x1), 0x80C1C270:("D_80C1C270","UNK_TYPE1","",0x1), 0x80C1C280:("D_80C1C280","UNK_TYPE4","",0x4), 0x80C1C294:("sDlists","UNK_TYPE4","",0x4), 0x80C1C2AC:("D_80C1C2AC","UNK_TYPE1","",0x1), 0x80C1C2B0:("jtbl_80C1C2B0","UNK_PTR","",0x4), 0x80C1C2E4:("jtbl_80C1C2E4","UNK_PTR","",0x4), - 0x80C1D1A0:("Dm_An_InitVars","UNK_TYPE1","",0x1), + 0x80C1D1A0:("Dm_An_Profile","UNK_TYPE1","",0x1), 0x80C1D1C0:("D_80C1D1C0","UNK_TYPE1","",0x1), 0x80C1D2A0:("D_80C1D2A0","UNK_TYPE4","",0x4), 0x80C1D2C8:("D_80C1D2C8","UNK_TYPE1","",0x1), @@ -16291,23 +16291,23 @@ 0x80C1D2E8:("sMouthTextures","UNK_TYPE4","",0x4), 0x80C1D2F4:("sEyeTextures","UNK_TYPE1","",0x1), 0x80C1D310:("jtbl_80C1D310","UNK_PTR","",0x4), - 0x80C1DDC0:("Dm_Ah_InitVars","UNK_TYPE1","",0x1), + 0x80C1DDC0:("Dm_Ah_Profile","UNK_TYPE1","",0x1), 0x80C1DDE0:("D_80C1DDE0","UNK_PTR","",0x4), 0x80C1DE00:("D_80C1DE00","UNK_TYPE4","",0x4), 0x80C1DE14:("D_80C1DE14","UNK_TYPE1","",0x1), 0x80C1DE20:("D_80C1DE20","UNK_TYPE4","",0x4), 0x80C1DE28:("D_80C1DE28","UNK_TYPE1","",0x1), - 0x80C1E1E0:("Dm_Nb_InitVars","UNK_TYPE1","",0x1), + 0x80C1E1E0:("Dm_Nb_Profile","UNK_TYPE1","",0x1), 0x80C1E200:("sAnimationInfo","UNK_TYPE1","",0x1), 0x80C1E210:("D_80C1E210","UNK_TYPE4","",0x4), - 0x80C1E5C0:("En_Drs_InitVars","UNK_TYPE1","",0x1), + 0x80C1E5C0:("En_Drs_Profile","UNK_TYPE1","",0x1), 0x80C1E5E0:("D_80C1E5E0","UNK_TYPE1","",0x1), 0x80C1E60C:("D_80C1E60C","UNK_TYPE1","",0x1), 0x80C1E618:("D_80C1E618","UNK_TYPE1","",0x1), - 0x80C1E950:("En_Ending_Hero_InitVars","UNK_TYPE1","",0x1), + 0x80C1E950:("En_Ending_Hero_Profile","UNK_TYPE1","",0x1), 0x80C1E970:("D_80C1E970","UNK_TYPE1","",0x1), 0x80C1E984:("D_80C1E984","UNK_TYPE1","",0x1), - 0x80C1F150:("Dm_Bal_InitVars","UNK_TYPE1","",0x1), + 0x80C1F150:("Dm_Bal_Profile","UNK_TYPE1","",0x1), 0x80C1F170:("sAnimationInfo","UNK_PTR","",0x4), 0x80C1F2C0:("sCueId","UNK_TYPE2","",0x2), 0x80C1F2C4:("D_80C1F2C4","UNK_TYPE4","",0x4), @@ -16318,10 +16318,10 @@ 0x80C1F2EC:("D_80C1F2EC","f32","",0x4), 0x80C1F2F0:("D_80C1F2F0","f32","",0x4), 0x80C1F2F4:("D_80C1F2F4","f32","",0x4), - 0x80C1FC40:("En_Paper_InitVars","UNK_TYPE1","",0x1), + 0x80C1FC40:("En_Paper_Profile","UNK_TYPE1","",0x1), 0x80C1FC60:("D_80C1FC60","UNK_TYPE4","",0x4), 0x80C1FC70:("D_80C1FC70","f32","",0x4), - 0x80C21C60:("En_Hint_Skb_InitVars","UNK_TYPE1","",0x1), + 0x80C21C60:("En_Hint_Skb_Profile","UNK_TYPE1","",0x1), 0x80C21C80:("D_80C21C80","UNK_TYPE1","",0x1), 0x80C21CC8:("D_80C21CC8","UNK_TYPE1","",0x1), 0x80C21CD8:("D_80C21CD8","UNK_TYPE1","",0x1), @@ -16348,20 +16348,20 @@ 0x80C21F6C:("D_80C21F6C","f32","",0x4), 0x80C21F70:("D_80C21F70","f32","",0x4), 0x80C21F74:("D_80C21F74","f32","",0x4), - 0x80C22BD0:("Dm_Tag_InitVars","UNK_TYPE1","",0x1), + 0x80C22BD0:("Dm_Tag_Profile","UNK_TYPE1","",0x1), 0x80C22BF0:("D_80C22BF0","UNK_TYPE1","",0x1), 0x80C22BFC:("D_80C22BFC","UNK_TYPE1","",0x1), 0x80C22C30:("D_80C22C30","UNK_TYPE1","",0x1), 0x80C22C40:("jtbl_80C22C40","UNK_PTR","",0x4), - 0x80C231C0:("En_Bh_InitVars","UNK_TYPE1","",0x1), + 0x80C231C0:("En_Bh_Profile","UNK_TYPE1","",0x1), 0x80C231E0:("D_80C231E0","f32","",0x4), - 0x80C23400:("En_Ending_Hero2_InitVars","UNK_TYPE1","",0x1), - 0x80C23630:("En_Ending_Hero3_InitVars","UNK_TYPE1","",0x1), - 0x80C23860:("En_Ending_Hero4_InitVars","UNK_TYPE1","",0x1), - 0x80C23BD0:("En_Ending_Hero5_InitVars","UNK_TYPE1","",0x1), + 0x80C23400:("En_Ending_Hero2_Profile","UNK_TYPE1","",0x1), + 0x80C23630:("En_Ending_Hero3_Profile","UNK_TYPE1","",0x1), + 0x80C23860:("En_Ending_Hero4_Profile","UNK_TYPE1","",0x1), + 0x80C23BD0:("En_Ending_Hero5_Profile","UNK_TYPE1","",0x1), 0x80C23BF0:("D_80C23BF0","UNK_TYPE1","",0x1), 0x80C23C10:("jtbl_80C23C10","UNK_PTR","",0x4), - 0x80C241E0:("En_Ending_Hero6_InitVars","ActorInit","",0x20), + 0x80C241E0:("En_Ending_Hero6_Profile","ActorInit","",0x20), 0x80C24200:("D_80C24200","FlexSkeletonHeader*","[9]",0x24), 0x80C24224:("D_80C24224","AnimationHeader*","[9]",0x24), 0x80C24248:("D_80C24248","s32","[9]",0x24), @@ -16369,7 +16369,7 @@ 0x80C24280:("D_80C24280","TexturePtr","[5]",0x14), 0x80C24294:("D_80C24294","TexturePtr","[3]",0xc), 0x80C242A0:("jtbl_80C242A0","UNK_PTR","",0x4), - 0x80C250F0:("Dm_Gm_InitVars","UNK_TYPE1","",0x1), + 0x80C250F0:("Dm_Gm_Profile","UNK_TYPE1","",0x1), 0x80C25110:("D_80C25110","UNK_TYPE1","",0x1), 0x80C251F0:("D_80C251F0","UNK_TYPE4","",0x4), 0x80C25218:("D_80C25218","UNK_TYPE1","",0x1), @@ -16378,18 +16378,18 @@ 0x80C25238:("sMouthTextures","UNK_TYPE4","",0x4), 0x80C25244:("sEyeTextures","UNK_TYPE1","",0x1), 0x80C25260:("jtbl_80C25260","UNK_PTR","",0x4), - 0x80C257D0:("Obj_Swprize_InitVars","UNK_TYPE1","",0x1), + 0x80C257D0:("Obj_Swprize_Profile","UNK_TYPE1","",0x1), 0x80C257F0:("D_80C257F0","UNK_TYPE1","",0x1), 0x80C257F4:("D_80C257F4","UNK_TYPE1","",0x1), 0x80C257F8:("D_80C257F8","UNK_TYPE2","",0x2), 0x80C25800:("D_80C25800","f32","",0x4), 0x80C25804:("D_80C25804","f32","",0x4), - 0x80C25B30:("En_Invisible_Ruppe_InitVars","UNK_TYPE1","",0x1), + 0x80C25B30:("En_Invisible_Ruppe_Profile","UNK_TYPE1","",0x1), 0x80C25B50:("D_80C25B50","UNK_TYPE1","",0x1), - 0x80C25CC0:("Obj_Ending_InitVars","UNK_TYPE1","",0x1), + 0x80C25CC0:("Obj_Ending_Profile","UNK_TYPE1","",0x1), 0x80C25CE0:("sModelInfo","UNK_TYPE1","",0x1), 0x80C25CF8:("D_80C25CF8","UNK_TYPE1","",0x1), - 0x80C25FF0:("En_Rsn_InitVars","UNK_TYPE1","",0x1), + 0x80C25FF0:("En_Rsn_Profile","UNK_TYPE1","",0x1), 0x80C26010:("D_80C26010","UNK_TYPE1","",0x1), 0x80C26028:("D_80C26028","UNK_TYPE4","",0x4), }