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 May 28, 2024
1 parent 536743f commit 7a70984
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>
{
{ 0x0333, MatchaOpcode.ActorControl },
{ 0x0111, MatchaOpcode.ActorControlSelf },
{ 0x0148, MatchaOpcode.ActorControl },
{ 0x025d, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x027a, MatchaOpcode.CompanyAirshipStatus },
{ 0x020c, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0225, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0123, MatchaOpcode.CompanyAirshipStatus },
{ 0x0185, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0279, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x012a, MatchaOpcode.EventPlay },
{ 0x02bf, MatchaOpcode.Examine },
{ 0x0155, MatchaOpcode.EventPlay },
{ 0x02c0, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x031b, MatchaOpcode.InitZone },
{ 0x0201, MatchaOpcode.InventoryTransaction },
{ 0x0344, MatchaOpcode.ItemInfo },
{ 0x03e5, MatchaOpcode.MarketBoardItemListing },
{ 0x02ed, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0109, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x02bd, MatchaOpcode.NpcSpawn },
{ 0x0216, MatchaOpcode.PlayerSetup },
{ 0x00f6, MatchaOpcode.PlayerSpawn },
{ 0x02d1, MatchaOpcode.InitZone },
{ 0x02bd, MatchaOpcode.InventoryTransaction },
{ 0x02f0, MatchaOpcode.ItemInfo },
{ 0x03e3, MatchaOpcode.MarketBoardItemListing },
{ 0x0286, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0229, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x00a7, MatchaOpcode.NpcSpawn },
{ 0x035f, MatchaOpcode.PlayerSetup },
{ 0x039c, MatchaOpcode.PlayerSpawn },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x030f, MatchaOpcode.ActorControl },
{ 0x01a2, MatchaOpcode.ActorControlSelf },
{ 0x0241, MatchaOpcode.CEDirector },
{ 0x0233, MatchaOpcode.CompanyAirshipStatus },
{ 0x02b6, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0222, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0101, MatchaOpcode.DirectorStart },
{ 0x00a3, MatchaOpcode.EventPlay },
{ 0x01ef, MatchaOpcode.Examine },
{ 0x0379, MatchaOpcode.FateInfo },
{ 0x0341, MatchaOpcode.InitZone },
{ 0x02c8, MatchaOpcode.InventoryTransaction },
{ 0x036d, MatchaOpcode.ItemInfo },
{ 0x01c9, MatchaOpcode.MarketBoardItemListing },
{ 0x01bf, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0074, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x01d7, MatchaOpcode.NpcSpawn },
{ 0x02c1, MatchaOpcode.PlayerSetup },
{ 0x031b, MatchaOpcode.PlayerSpawn },
{ 0x00c2, MatchaOpcode.ActorControl },
{ 0x0267, MatchaOpcode.ActorControlSelf },
{ 0x02ff, MatchaOpcode.CEDirector },
{ 0x02e1, MatchaOpcode.CompanyAirshipStatus },
{ 0x0292, MatchaOpcode.CompanySubmersibleStatus },
{ 0x02ea, MatchaOpcode.ContentFinderNotifyPop },
{ 0x03b1, MatchaOpcode.DirectorStart },
{ 0x00e1, MatchaOpcode.EventPlay },
{ 0x02fa, MatchaOpcode.Examine },
{ 0x01a9, MatchaOpcode.FateInfo },
{ 0x03b4, MatchaOpcode.InitZone },
{ 0x01f6, MatchaOpcode.InventoryTransaction },
{ 0x036b, MatchaOpcode.ItemInfo },
{ 0x006b, MatchaOpcode.MarketBoardItemListing },
{ 0x00e2, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0103, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x014c, MatchaOpcode.NpcSpawn },
{ 0x0166, MatchaOpcode.PlayerSetup },
{ 0x01f0, MatchaOpcode.PlayerSpawn },
};
}
}

0 comments on commit 7a70984

Please sign in to comment.