Skip to content

Commit

Permalink
drop .bin from needed macro
Browse files Browse the repository at this point in the history
  • Loading branch information
ethteck committed Jan 7, 2024
1 parent 728afb4 commit 9066447
Show file tree
Hide file tree
Showing 219 changed files with 1,571 additions and 1,571 deletions.
4 changes: 2 additions & 2 deletions include/include_asset.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
".align 2\n" \
".type " #SYMBOLNAME", @object\n" \
#SYMBOLNAME":\n" \
".incbin \"ver/"ASTRINGIFY(VERSION)"/build/" FILENAME "\"\n" \
".incbin \"ver/"ASTRINGIFY(VERSION)"/build/" FILENAME ".bin\"\n" \
)

// two macros are needed for N() usage
Expand All @@ -26,7 +26,7 @@
".align 2\n" \
".type " #SYMBOLNAME", @object\n" \
#SYMBOLNAME":\n" \
".incbin \"ver/"ASTRINGIFY(VERSION)"/build/" FILENAME "\"\n" \
".incbin \"ver/"ASTRINGIFY(VERSION)"/build/" FILENAME ".bin\"\n" \
)

#endif // _H_INCLUDE_ASSET
2 changes: 1 addition & 1 deletion src/8a160_len_700.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "common.h"
#include "include_asset.h"

INCLUDE_IMG("A2960.png.bin", D_801094B0);
INCLUDE_IMG("A2960.png", D_801094B0);

Vp D_801096B0 = {
.vp = {
Expand Down
32 changes: 16 additions & 16 deletions src/battle/action_cmd/water_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@

#define NAMESPACE action_command_water_block

INCLUDE_IMG("battle/action_cmd/water_block_1.png.bin", battle_action_cmd_water_block_1_png);
INCLUDE_PAL("battle/action_cmd/water_block_1.pal.bin", battle_action_cmd_water_block_1_pal);
INCLUDE_IMG("battle/action_cmd/water_block_1.png", battle_action_cmd_water_block_1_png);
INCLUDE_PAL("battle/action_cmd/water_block_1.pal", battle_action_cmd_water_block_1_pal);

INCLUDE_IMG("battle/action_cmd/water_block_2.png.bin", battle_action_cmd_water_block_2_png);
INCLUDE_PAL("battle/action_cmd/water_block_2.pal.bin", battle_action_cmd_water_block_2_pal);
INCLUDE_IMG("battle/action_cmd/water_block_2.png", battle_action_cmd_water_block_2_png);
INCLUDE_PAL("battle/action_cmd/water_block_2.pal", battle_action_cmd_water_block_2_pal);

INCLUDE_IMG("battle/action_cmd/water_block_3.png.bin", battle_action_cmd_water_block_3_png);
INCLUDE_PAL("battle/action_cmd/water_block_3.pal.bin", battle_action_cmd_water_block_3_pal);
INCLUDE_IMG("battle/action_cmd/water_block_3.png", battle_action_cmd_water_block_3_png);
INCLUDE_PAL("battle/action_cmd/water_block_3.pal", battle_action_cmd_water_block_3_pal);

INCLUDE_IMG("battle/action_cmd/water_block_0.png.bin", battle_action_cmd_water_block_0_png);
INCLUDE_PAL("battle/action_cmd/water_block_0.pal.bin", battle_action_cmd_water_block_0_pal);
INCLUDE_IMG("battle/action_cmd/water_block_0.png", battle_action_cmd_water_block_0_png);
INCLUDE_PAL("battle/action_cmd/water_block_0.pal", battle_action_cmd_water_block_0_pal);

INCLUDE_IMG("battle/action_cmd/water_block_block.png.bin", battle_action_cmd_water_block_block_png);
INCLUDE_PAL("battle/action_cmd/water_block_block.pal.bin", battle_action_cmd_water_block_block_pal);
INCLUDE_IMG("battle/action_cmd/water_block_block.png", battle_action_cmd_water_block_block_png);
INCLUDE_PAL("battle/action_cmd/water_block_block.pal", battle_action_cmd_water_block_block_pal);

INCLUDE_IMG("battle/action_cmd/water_block_circle.png.bin", battle_action_cmd_water_block_circle_png);
INCLUDE_PAL("battle/action_cmd/water_block_circle.pal.bin", battle_action_cmd_water_block_circle_pal);
INCLUDE_IMG("battle/action_cmd/water_block_circle.png", battle_action_cmd_water_block_circle_png);
INCLUDE_PAL("battle/action_cmd/water_block_circle.pal", battle_action_cmd_water_block_circle_pal);

INCLUDE_IMG("battle/action_cmd/water_block_cloud.png.bin", battle_action_cmd_water_block_cloud_png);
INCLUDE_PAL("battle/action_cmd/water_block_cloud.pal.bin", battle_action_cmd_water_block_cloud_pal);
INCLUDE_IMG("battle/action_cmd/water_block_cloud.png", battle_action_cmd_water_block_cloud_png);
INCLUDE_PAL("battle/action_cmd/water_block_cloud.pal", battle_action_cmd_water_block_cloud_pal);

INCLUDE_IMG("battle/action_cmd/water_block_4.png.bin", battle_action_cmd_water_block_4_png);
INCLUDE_PAL("battle/action_cmd/water_block_4.pal.bin", battle_action_cmd_water_block_4_pal);
INCLUDE_IMG("battle/action_cmd/water_block_4.png", battle_action_cmd_water_block_4_png);
INCLUDE_PAL("battle/action_cmd/water_block_4.pal", battle_action_cmd_water_block_4_pal);

HudScript HES_WaterBlock1 = {
HUD_ELEMENT_OP_SetVisible,
Expand Down
32 changes: 16 additions & 16 deletions src/battle/action_cmd/whirlwind.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@

#define NAMESPACE action_command_whirlwind

INCLUDE_IMG("battle/action_cmd/whirlwind_1.png.bin", battle_action_cmd_whirlwind_1_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_1.pal.bin", battle_action_cmd_whirlwind_1_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_1.png", battle_action_cmd_whirlwind_1_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_1.pal", battle_action_cmd_whirlwind_1_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_2.png.bin", battle_action_cmd_whirlwind_2_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_2.pal.bin", battle_action_cmd_whirlwind_2_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_2.png", battle_action_cmd_whirlwind_2_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_2.pal", battle_action_cmd_whirlwind_2_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_3.png.bin", battle_action_cmd_whirlwind_3_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_3.pal.bin", battle_action_cmd_whirlwind_3_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_3.png", battle_action_cmd_whirlwind_3_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_3.pal", battle_action_cmd_whirlwind_3_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_4.png.bin", battle_action_cmd_whirlwind_4_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_4.pal.bin", battle_action_cmd_whirlwind_4_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_4.png", battle_action_cmd_whirlwind_4_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_4.pal", battle_action_cmd_whirlwind_4_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_5.png.bin", battle_action_cmd_whirlwind_5_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_5.pal.bin", battle_action_cmd_whirlwind_5_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_5.png", battle_action_cmd_whirlwind_5_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_5.pal", battle_action_cmd_whirlwind_5_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_6.png.bin", battle_action_cmd_whirlwind_6_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_6.pal.bin", battle_action_cmd_whirlwind_6_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_6.png", battle_action_cmd_whirlwind_6_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_6.pal", battle_action_cmd_whirlwind_6_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_7.png.bin", battle_action_cmd_whirlwind_7_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_7.pal.bin", battle_action_cmd_whirlwind_7_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_7.png", battle_action_cmd_whirlwind_7_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_7.pal", battle_action_cmd_whirlwind_7_pal);

INCLUDE_IMG("battle/action_cmd/whirlwind_bubble.png.bin", battle_action_cmd_whirlwind_bubble_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_bubble.pal.bin", battle_action_cmd_whirlwind_bubble_pal);
INCLUDE_IMG("battle/action_cmd/whirlwind_bubble.png", battle_action_cmd_whirlwind_bubble_png);
INCLUDE_PAL("battle/action_cmd/whirlwind_bubble.pal", battle_action_cmd_whirlwind_bubble_pal);

HudScript HES_Whirlwind1 = HES_TEMPLATE_CI_ENUM_SIZE(battle_action_cmd_whirlwind_1, 24, 24);

Expand Down
4 changes: 2 additions & 2 deletions src/battle/area/kzn2/actor/lava_piranha.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ EntityModelScript N(ModelScript4) = {
ems_End
};

INCLUDE_IMG("battle/area/kzn2/lava_piranha_vine.png.bin", D_8021C940_5A3020);
INCLUDE_PAL("battle/area/kzn2/lava_piranha_vine.pal.bin", D_8021CD40_5A3420);
INCLUDE_IMG("battle/area/kzn2/lava_piranha_vine.png", D_8021C940_5A3020);
INCLUDE_PAL("battle/area/kzn2/lava_piranha_vine.pal", D_8021CD40_5A3420);
#include "battle/area/kzn2/lava_piranha_vine.gfx.inc.c"

extern EvtScript N(EVS_Init);
Expand Down
4 changes: 2 additions & 2 deletions src/battle/area/sam2/actor/monstar.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ EvtScript N(EVS_Init) = {
EVT_END
};

INCLUDE_IMG("battle/area/sam2/actor/img.png.bin", battle_area_sam2_actor_img_png);
INCLUDE_PAL("battle/area/sam2/actor/img.pal.bin", battle_area_sam2_actor_img_pal);
INCLUDE_IMG("battle/area/sam2/actor/img.png", battle_area_sam2_actor_img_png);
INCLUDE_PAL("battle/area/sam2/actor/img.pal", battle_area_sam2_actor_img_pal);

ImgFXOverlayTexture N(MonstarDetailTexture) = {
.raster = battle_area_sam2_actor_img_png,
Expand Down
4 changes: 2 additions & 2 deletions src/battle/entity_model_icons.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ extern PAL_BIN ui_battle_menu_spirits_pal[];
extern IMG_BIN ui_battle_solid_star_png[];
extern PAL_BIN ui_battle_solid_star_pal[];

INCLUDE_IMG("ui/battle/cursor_hand.png.bin", ui_battle_cursor_hand_png);
INCLUDE_PAL("ui/battle/cursor_hand.pal.bin", ui_battle_cursor_hand_pal);
INCLUDE_IMG("ui/battle/cursor_hand.png", ui_battle_cursor_hand_png);
INCLUDE_PAL("ui/battle/cursor_hand.pal", ui_battle_cursor_hand_pal);

Vtx BtlCursorModelVtx[] = {
{{{ -22, -6, 0 }, 0, { 1024, 1024 }, { 0, 0, 0, 255 }}},
Expand Down
16 changes: 8 additions & 8 deletions src/battle/move/hammer/hammer_throw.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@

static s32 pad_images = 0;

INCLUDE_IMG("battle/move/hammer/dusty_hammer.png.bin", battle_move_hammer_throw_dusty_hammer_png);
INCLUDE_PAL("battle/move/hammer/dusty_hammer.pal.bin", battle_move_hammer_throw_dusty_hammer_pal);
INCLUDE_IMG("battle/move/hammer/dusty_hammer.png", battle_move_hammer_throw_dusty_hammer_png);
INCLUDE_PAL("battle/move/hammer/dusty_hammer.pal", battle_move_hammer_throw_dusty_hammer_pal);

INCLUDE_IMG("battle/move/hammer/basic_hammer.png.bin", battle_move_hammer_throw_basic_hammer_png);
INCLUDE_PAL("battle/move/hammer/basic_hammer.pal.bin", battle_move_hammer_throw_basic_hammer_pal);
INCLUDE_IMG("battle/move/hammer/basic_hammer.png", battle_move_hammer_throw_basic_hammer_png);
INCLUDE_PAL("battle/move/hammer/basic_hammer.pal", battle_move_hammer_throw_basic_hammer_pal);

INCLUDE_IMG("battle/move/hammer/super_hammer.png.bin", battle_move_hammer_throw_super_hammer_png);
INCLUDE_PAL("battle/move/hammer/super_hammer.pal.bin", battle_move_hammer_throw_super_hammer_pal);
INCLUDE_IMG("battle/move/hammer/super_hammer.png", battle_move_hammer_throw_super_hammer_png);
INCLUDE_PAL("battle/move/hammer/super_hammer.pal", battle_move_hammer_throw_super_hammer_pal);

INCLUDE_IMG("battle/move/hammer/ultra_hammer.png.bin", battle_move_hammer_throw_ultra_hammer_png);
INCLUDE_PAL("battle/move/hammer/ultra_hammer.pal.bin", battle_move_hammer_throw_ultra_hammer_pal);
INCLUDE_IMG("battle/move/hammer/ultra_hammer.png", battle_move_hammer_throw_ultra_hammer_png);
INCLUDE_PAL("battle/move/hammer/ultra_hammer.pal", battle_move_hammer_throw_ultra_hammer_pal);

#include "battle/move/hammer/hammer_throw.vtx.inc.c"

Expand Down
4 changes: 2 additions & 2 deletions src/battle/move/item/coconut.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
static s32 _pad = 0;

#include "battle/move/item/coconut.png.h"
INCLUDE_IMG("battle/move/item/coconut.png.bin", battle_item_coconut_png);
INCLUDE_PAL("battle/move/item/coconut.pal.bin", battle_item_coconut_pal);
INCLUDE_IMG("battle/move/item/coconut.png", battle_item_coconut_png);
INCLUDE_PAL("battle/move/item/coconut.pal", battle_item_coconut_pal);

/// 32x32 square.
Vtx N(model)[] = {
Expand Down
4 changes: 2 additions & 2 deletions src/battle/move/item/dusty_hammer.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
static s32 _pad = 0; // XXX

#include "battle/move/item/dusty_hammer.png.h"
INCLUDE_IMG("battle/move/item/dusty_hammer.png.bin", battle_item_dusty_hammer_png);
INCLUDE_PAL("battle/move/item/dusty_hammer.pal.bin", battle_item_dusty_hammer_pal);
INCLUDE_IMG("battle/move/item/dusty_hammer.png", battle_item_dusty_hammer_png);
INCLUDE_PAL("battle/move/item/dusty_hammer.pal", battle_item_dusty_hammer_pal);

Vtx N(DustyHammerVtx)[] = {
{ .v = {{ -16, -16, 0 }, FALSE, { 0, 0 }, { 0, 0, 0, 255 }}},
Expand Down
16 changes: 8 additions & 8 deletions src/battle/move/item/egg_missile.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ API_CALLABLE(N(func_802A123C_71CF1C)) {
static s32 _pad = 0;

#include "battle/move/item/egg_missile1.png.h"
INCLUDE_IMG("battle/move/item/egg_missile1.png.bin", battle_item_egg_missile1_png);
INCLUDE_PAL("battle/move/item/egg_missile1.pal.bin", battle_item_egg_missile1_pal);
INCLUDE_IMG("battle/move/item/egg_missile1.png", battle_item_egg_missile1_png);
INCLUDE_PAL("battle/move/item/egg_missile1.pal", battle_item_egg_missile1_pal);

#include "battle/move/item/egg_missile2.png.h"
INCLUDE_IMG("battle/move/item/egg_missile2.png.bin", battle_item_egg_missile2_png);
INCLUDE_PAL("battle/move/item/egg_missile2.pal.bin", battle_item_egg_missile2_pal);
INCLUDE_IMG("battle/move/item/egg_missile2.png", battle_item_egg_missile2_png);
INCLUDE_PAL("battle/move/item/egg_missile2.pal", battle_item_egg_missile2_pal);

#include "battle/move/item/egg_missile3.png.h"
INCLUDE_IMG("battle/move/item/egg_missile3.png.bin", battle_item_egg_missile3_png);
INCLUDE_PAL("battle/move/item/egg_missile3.pal.bin", battle_item_egg_missile3_pal);
INCLUDE_IMG("battle/move/item/egg_missile3.png", battle_item_egg_missile3_png);
INCLUDE_PAL("battle/move/item/egg_missile3.pal", battle_item_egg_missile3_pal);

#include "battle/move/item/egg_missile4.png.h"
INCLUDE_IMG("battle/move/item/egg_missile4.png.bin", battle_item_egg_missile4_png);
INCLUDE_PAL("battle/move/item/egg_missile4.pal.bin", battle_item_egg_missile4_pal);
INCLUDE_IMG("battle/move/item/egg_missile4.png", battle_item_egg_missile4_png);
INCLUDE_PAL("battle/move/item/egg_missile4.pal", battle_item_egg_missile4_pal);

Vtx N(EggMissileVtx)[] = {
{ .v = {{ -16, -16, 0 }, FALSE, { 0, 0 }, { 0, 0, 0, 255 }}},
Expand Down
4 changes: 2 additions & 2 deletions src/battle/move/item/insecticide_herb.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ API_CALLABLE(N(func_802A12E0_72AA30)) {
static s32 _pad = 0; // XXX

#include "battle/move/item/insecticide_herb.png.h"
INCLUDE_IMG("battle/move/item/insecticide_herb.png.bin", battle_item_insecticide_herb_png);
INCLUDE_PAL("battle/move/item/insecticide_herb.pal.bin", battle_item_insecticide_herb_pal);
INCLUDE_IMG("battle/move/item/insecticide_herb.png", battle_item_insecticide_herb_png);
INCLUDE_PAL("battle/move/item/insecticide_herb.pal", battle_item_insecticide_herb_pal);

Vtx N(model)[] = {
{ .v = { .ob = {-16, -16, 0}, FALSE, .tc = {0, 0}, .cn = {0, 0, 0, 255} } },
Expand Down
4 changes: 2 additions & 2 deletions src/battle/move/item/mystery.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
static s32 _pad = 0;

#include "battle/move/item/mystery.png.h"
INCLUDE_IMG("battle/move/item/mystery.png.bin", battle_item_mystery_png);
INCLUDE_PAL("battle/move/item/mystery.pal.bin", battle_item_mystery_pal);
INCLUDE_IMG("battle/move/item/mystery.png", battle_item_mystery_png);
INCLUDE_PAL("battle/move/item/mystery.pal", battle_item_mystery_pal);

Vtx N(model)[] = {
{ .v = {{ -16, -16, 0 }, FALSE, { 0, 0 }, { 0, 0, 0, 255 }}},
Expand Down
4 changes: 2 additions & 2 deletions src/battle/move/item/pebble.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
static s32 _pad = 0;

#include "battle/move/item/pebble.png.h"
INCLUDE_IMG("battle/move/item/pebble.png.bin", battle_item_pebble_png);
INCLUDE_PAL("battle/move/item/pebble.pal.bin", battle_item_pebble_pal);
INCLUDE_IMG("battle/move/item/pebble.png", battle_item_pebble_png);
INCLUDE_PAL("battle/move/item/pebble.pal", battle_item_pebble_pal);

Vtx N(model)[] = {
{ .v = { { -16, -16, 0 }, FALSE, { 0, 0 }, { 0, 0, 0, 255 } } },
Expand Down
12 changes: 6 additions & 6 deletions src/battle/move/item/sleepy_sheep.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,16 +173,16 @@ API_CALLABLE(N(func_802A1848_71EE98)) {
static s32 _pad = 0;

#include "battle/move/item/sleepy_sheep1.png.h"
INCLUDE_IMG("battle/move/item/sleepy_sheep1.png.bin", battle_item_sleepy_sheep1_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep1.pal.bin", battle_item_sleepy_sheep1_pal);
INCLUDE_IMG("battle/move/item/sleepy_sheep1.png", battle_item_sleepy_sheep1_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep1.pal", battle_item_sleepy_sheep1_pal);

#include "battle/move/item/sleepy_sheep2.png.h"
INCLUDE_IMG("battle/move/item/sleepy_sheep2.png.bin", battle_item_sleepy_sheep2_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep2.pal.bin", battle_item_sleepy_sheep2_pal);
INCLUDE_IMG("battle/move/item/sleepy_sheep2.png", battle_item_sleepy_sheep2_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep2.pal", battle_item_sleepy_sheep2_pal);

#include "battle/move/item/sleepy_sheep3.png.h"
INCLUDE_IMG("battle/move/item/sleepy_sheep3.png.bin", battle_item_sleepy_sheep3_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep3.pal.bin", battle_item_sleepy_sheep3_pal);
INCLUDE_IMG("battle/move/item/sleepy_sheep3.png", battle_item_sleepy_sheep3_png);
INCLUDE_PAL("battle/move/item/sleepy_sheep3.pal", battle_item_sleepy_sheep3_pal);

Vtx N(model)[] = {
{ .v = {{ -28, 0, 0 }, FALSE, { 0, 1536 }, { 0, 0, 0, 255 }}},
Expand Down
12 changes: 6 additions & 6 deletions src/battle/move/item/strange_cake.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
static s32 _pad = 0; // XXX

#include "battle/move/item/strange_cake1.png.h"
INCLUDE_IMG("battle/move/item/strange_cake1.png.bin", battle_item_strange_cake1_png);
INCLUDE_PAL("battle/move/item/strange_cake1.pal.bin", battle_item_strange_cake1_pal);
INCLUDE_IMG("battle/move/item/strange_cake1.png", battle_item_strange_cake1_png);
INCLUDE_PAL("battle/move/item/strange_cake1.pal", battle_item_strange_cake1_pal);

#include "battle/move/item/strange_cake2.png.h"
INCLUDE_IMG("battle/move/item/strange_cake2.png.bin", battle_item_strange_cake2_png);
INCLUDE_PAL("battle/move/item/strange_cake2.pal.bin", battle_item_strange_cake2_pal);
INCLUDE_IMG("battle/move/item/strange_cake2.png", battle_item_strange_cake2_png);
INCLUDE_PAL("battle/move/item/strange_cake2.pal", battle_item_strange_cake2_pal);

#include "battle/move/item/strange_cake3.png.h"
INCLUDE_IMG("battle/move/item/strange_cake3.png.bin", battle_item_strange_cake3_png);
INCLUDE_PAL("battle/move/item/strange_cake3.pal.bin", battle_item_strange_cake3_pal);
INCLUDE_IMG("battle/move/item/strange_cake3.png", battle_item_strange_cake3_png);
INCLUDE_PAL("battle/move/item/strange_cake3.pal", battle_item_strange_cake3_pal);

HudScript N(D_802A27D0) = HES_TEMPLATE_CI_ENUM_SIZE(battle_item_strange_cake1, 32, 32);
HudScript N(D_802A27F8) = HES_TEMPLATE_CI_ENUM_SIZE(battle_item_strange_cake2, 32, 32);
Expand Down
Loading

0 comments on commit 9066447

Please sign in to comment.