Skip to content

Commit

Permalink
Commit from GitHub Actions (Cafe.Matcha)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyupe committed Jul 11, 2023
1 parent c770b14 commit 83c4404
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions Cafe.Matcha/Constant/MatchaOpcode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,47 +32,47 @@ internal static class OpcodeStorage
{
public static Dictionary<ushort, MatchaOpcode> Global = new Dictionary<ushort, MatchaOpcode>
{
{ 0x0381, MatchaOpcode.ActorControl },
{ 0x014f, MatchaOpcode.ActorControlSelf },
{ 0x019d, MatchaOpcode.ActorControl },
{ 0x00a6, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x0132, MatchaOpcode.CompanyAirshipStatus },
{ 0x02b7, MatchaOpcode.CompanySubmersibleStatus },
{ 0x03e0, MatchaOpcode.ContentFinderNotifyPop },
{ 0x03c5, MatchaOpcode.CompanyAirshipStatus },
{ 0x0372, MatchaOpcode.CompanySubmersibleStatus },
{ 0x021a, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x00fb, MatchaOpcode.EventPlay },
{ 0x0364, MatchaOpcode.Examine },
{ 0x036f, MatchaOpcode.EventPlay },
{ 0x0228, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x0347, MatchaOpcode.InitZone },
{ 0x02e9, MatchaOpcode.InventoryTransaction },
{ 0x0128, MatchaOpcode.ItemInfo },
{ 0x00a7, MatchaOpcode.MarketBoardItemListing },
{ 0x01a4, MatchaOpcode.MarketBoardItemListingCount },
{ 0x02b4, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x01c4, MatchaOpcode.NpcSpawn },
{ 0x0218, MatchaOpcode.PlayerSetup },
{ 0x02cf, MatchaOpcode.PlayerSpawn },
{ 0x01d5, MatchaOpcode.InitZone },
{ 0x0252, MatchaOpcode.InventoryTransaction },
{ 0x0388, MatchaOpcode.ItemInfo },
{ 0x0221, MatchaOpcode.MarketBoardItemListing },
{ 0x0067, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0069, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x00ac, MatchaOpcode.NpcSpawn },
{ 0x03e6, MatchaOpcode.PlayerSetup },
{ 0x01a7, MatchaOpcode.PlayerSpawn },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x0342, MatchaOpcode.ActorControl },
{ 0x03d5, MatchaOpcode.ActorControlSelf },
{ 0x03ce, MatchaOpcode.CEDirector },
{ 0x02a7, MatchaOpcode.CompanyAirshipStatus },
{ 0x0146, MatchaOpcode.CompanySubmersibleStatus },
{ 0x00ef, MatchaOpcode.ContentFinderNotifyPop },
{ 0x01e3, MatchaOpcode.DirectorStart },
{ 0x00ae, MatchaOpcode.EventPlay },
{ 0x014e, MatchaOpcode.Examine },
{ 0x01ac, MatchaOpcode.FateInfo },
{ 0x00bc, MatchaOpcode.InitZone },
{ 0x0087, MatchaOpcode.InventoryTransaction },
{ 0x0265, MatchaOpcode.ItemInfo },
{ 0x0345, MatchaOpcode.MarketBoardItemListing },
{ 0x0069, MatchaOpcode.MarketBoardItemListingCount },
{ 0x01fd, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x01ca, MatchaOpcode.NpcSpawn },
{ 0x0322, MatchaOpcode.PlayerSetup },
{ 0x0391, MatchaOpcode.PlayerSpawn },
{ 0x02a5, MatchaOpcode.ActorControl },
{ 0x01a3, MatchaOpcode.ActorControlSelf },
{ 0x03e6, MatchaOpcode.CEDirector },
{ 0x00e1, MatchaOpcode.CompanyAirshipStatus },
{ 0x01e6, MatchaOpcode.CompanySubmersibleStatus },
{ 0x00ca, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0251, MatchaOpcode.DirectorStart },
{ 0x03ce, MatchaOpcode.EventPlay },
{ 0x0255, MatchaOpcode.Examine },
{ 0x02cf, MatchaOpcode.FateInfo },
{ 0x01e3, MatchaOpcode.InitZone },
{ 0x01fc, MatchaOpcode.InventoryTransaction },
{ 0x036b, MatchaOpcode.ItemInfo },
{ 0x03b0, MatchaOpcode.MarketBoardItemListing },
{ 0x00ef, MatchaOpcode.MarketBoardItemListingCount },
{ 0x03ac, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x0366, MatchaOpcode.NpcSpawn },
{ 0x03a8, MatchaOpcode.PlayerSetup },
{ 0x00c8, MatchaOpcode.PlayerSpawn },
};
}
}

0 comments on commit 83c4404

Please sign in to comment.