-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #679 from octorock/enemies
Use new entity structs for enemies and player
- Loading branch information
Showing
507 changed files
with
14,494 additions
and
14,141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef VAATIWRATH_H | ||
#define VAATIWRATH_H | ||
#include "enemy.h" | ||
|
||
typedef struct { | ||
/*0x00*/ Entity base; | ||
/*0x68*/ u8 unused1[5]; | ||
/*0x6d*/ u8 unk_6d; | ||
/*0x6e*/ u8 unused2[10]; | ||
/*0x78*/ u8 unk_78; | ||
/*0x79*/ u8 unk_79; | ||
/*0x7a*/ u8 unused3[1]; | ||
/*0x7b*/ u8 unk_7b; | ||
/*0x7c*/ u16 unk_7c; | ||
/*0x7e*/ u16 unk_7e; | ||
/*0x80*/ u8 unused4[4]; | ||
/*0x84*/ u8 unk_84; | ||
} VaatiWrathEntity; | ||
|
||
#endif // VAATIWRATH_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef HOUSESIGN_H | ||
#define HOUSESIGN_H | ||
|
||
#include "entity.h" | ||
|
||
typedef struct { | ||
/*0x00*/ Entity base; | ||
/*0x68*/ u8 unused1[24]; | ||
/*0x80*/ s16 unk_80; | ||
/*0x82*/ s16 unk_82; | ||
} HouseSignEntity; | ||
|
||
#endif // HOUSESIGN_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef ITEMFORSALE_H | ||
#define ITEMFORSALE_H | ||
|
||
#include "object.h" | ||
|
||
typedef struct { | ||
/*0x00*/ Entity base; | ||
/*0x68*/ u8 unk_68[0x18]; | ||
/*0x80*/ u16 unk_80; | ||
/*0x82*/ u16 unk_82; | ||
} ItemForSaleEntity; | ||
|
||
#endif // ITEMFORSALE_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#ifndef PUSHABLEFURNITURE_H | ||
#define PUSHABLEFURNITURE_H | ||
|
||
#include "object.h" | ||
|
||
typedef struct { | ||
/*0x00*/ Entity base; | ||
/*0x68*/ u8 unk_68[0x8]; | ||
/*0x70*/ u16 unk_70; | ||
/*0x72*/ u16 unk_72; | ||
/*0x74*/ u16 unk_74; | ||
/*0x76*/ u16 unk_76; | ||
/*0x78*/ u8 unk_78[0x2]; | ||
/*0x7a*/ u16 unk_7a; | ||
/*0x7c*/ u16 unk_7c; | ||
/*0x7e*/ u16 unk_7e; | ||
/*0x80*/ u8 unk_80; | ||
/*0x81*/ u8 unk_81; | ||
/*0x82*/ u8 unk_82; | ||
/*0x83*/ u8 unk_83; | ||
/*0x84*/ u8 unk_84[0x2]; | ||
/*0x86*/ u16 unk_86; | ||
} PushableFurnitureEntity; | ||
|
||
#endif // PUSHABLEFURNITURE_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef PLAYERITEMBOTTLE_H | ||
#define PLAYERITEMBOTTLE_H | ||
|
||
#include "entity.h" | ||
|
||
typedef struct { | ||
/*0x00*/ Entity base; | ||
/*0x68*/ u8 bottleIndex; /**< @see Item */ | ||
/*0x69*/ u8 unused[6]; | ||
/*0x6f*/ u8 bottleContent; /**< @see Item */ | ||
} PlayerItemBottleEntity; | ||
|
||
#endif // PLAYERITEMBOTTLE_H |
Oops, something went wrong.