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 Dec 5, 2023
1 parent fd853d9 commit 963ce7b
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>
{
{ 0x00d4, MatchaOpcode.ActorControl },
{ 0x03c1, MatchaOpcode.ActorControlSelf },
{ 0x03b6, MatchaOpcode.ActorControl },
{ 0x00e2, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x034f, MatchaOpcode.CompanyAirshipStatus },
{ 0x03af, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0069, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0200, MatchaOpcode.CompanyAirshipStatus },
{ 0x006f, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0318, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x02db, MatchaOpcode.EventPlay },
{ 0x0200, MatchaOpcode.Examine },
{ 0x0331, MatchaOpcode.EventPlay },
{ 0x01d1, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x0071, MatchaOpcode.InitZone },
{ 0x03db, MatchaOpcode.InventoryTransaction },
{ 0x03a4, MatchaOpcode.ItemInfo },
{ 0x01db, MatchaOpcode.MarketBoardItemListing },
{ 0x0306, MatchaOpcode.MarketBoardItemListingCount },
{ 0x02f4, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x0091, MatchaOpcode.NpcSpawn },
{ 0x020e, MatchaOpcode.PlayerSetup },
{ 0x010e, MatchaOpcode.PlayerSpawn },
{ 0x0180, MatchaOpcode.InitZone },
{ 0x021b, MatchaOpcode.InventoryTransaction },
{ 0x0270, MatchaOpcode.ItemInfo },
{ 0x025a, MatchaOpcode.MarketBoardItemListing },
{ 0x02a5, MatchaOpcode.MarketBoardItemListingCount },
{ 0x00e7, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x023b, MatchaOpcode.NpcSpawn },
{ 0x023d, MatchaOpcode.PlayerSetup },
{ 0x007e, MatchaOpcode.PlayerSpawn },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x007a, MatchaOpcode.ActorControl },
{ 0x0139, MatchaOpcode.ActorControlSelf },
{ 0x034f, MatchaOpcode.CEDirector },
{ 0x03a5, MatchaOpcode.CompanyAirshipStatus },
{ 0x0274, MatchaOpcode.CompanySubmersibleStatus },
{ 0x00ec, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0377, MatchaOpcode.DirectorStart },
{ 0x00a0, MatchaOpcode.EventPlay },
{ 0x00f6, MatchaOpcode.Examine },
{ 0x020e, MatchaOpcode.FateInfo },
{ 0x024d, MatchaOpcode.InitZone },
{ 0x0111, MatchaOpcode.InventoryTransaction },
{ 0x0214, MatchaOpcode.ItemInfo },
{ 0x0188, MatchaOpcode.MarketBoardItemListing },
{ 0x02ba, MatchaOpcode.MarketBoardItemListingCount },
{ 0x02e4, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x00d8, MatchaOpcode.NpcSpawn },
{ 0x028d, MatchaOpcode.PlayerSetup },
{ 0x00c0, MatchaOpcode.PlayerSpawn },
{ 0x0108, MatchaOpcode.ActorControl },
{ 0x0154, MatchaOpcode.ActorControlSelf },
{ 0x02fb, MatchaOpcode.CEDirector },
{ 0x016f, MatchaOpcode.CompanyAirshipStatus },
{ 0x01db, MatchaOpcode.CompanySubmersibleStatus },
{ 0x009c, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0352, MatchaOpcode.DirectorStart },
{ 0x0398, MatchaOpcode.EventPlay },
{ 0x00ba, MatchaOpcode.Examine },
{ 0x00fe, MatchaOpcode.FateInfo },
{ 0x006e, MatchaOpcode.InitZone },
{ 0x0222, MatchaOpcode.InventoryTransaction },
{ 0x0147, MatchaOpcode.ItemInfo },
{ 0x014a, MatchaOpcode.MarketBoardItemListing },
{ 0x0353, MatchaOpcode.MarketBoardItemListingCount },
{ 0x018a, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x030c, MatchaOpcode.NpcSpawn },
{ 0x01ae, MatchaOpcode.PlayerSetup },
{ 0x00fc, MatchaOpcode.PlayerSpawn },
};
}
}

0 comments on commit 963ce7b

Please sign in to comment.