Skip to content

Commit

Permalink
Merge branch 'master' of github.com:thewakingsands/matcha
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyupe committed Jun 6, 2023
2 parents 1e2212d + 7ab765d commit c770b14
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>
{
{ 0x02c2, MatchaOpcode.ActorControl },
{ 0x0256, MatchaOpcode.ActorControlSelf },
{ 0x0381, MatchaOpcode.ActorControl },
{ 0x014f, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x03d0, MatchaOpcode.CompanyAirshipStatus },
{ 0x016d, MatchaOpcode.CompanySubmersibleStatus },
{ 0x038a, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0132, MatchaOpcode.CompanyAirshipStatus },
{ 0x02b7, MatchaOpcode.CompanySubmersibleStatus },
{ 0x03e0, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x0284, MatchaOpcode.EventPlay },
{ 0x022f, MatchaOpcode.Examine },
{ 0x00fb, MatchaOpcode.EventPlay },
{ 0x0364, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x01fe, MatchaOpcode.InitZone },
{ 0x031b, MatchaOpcode.InventoryTransaction },
{ 0x034d, MatchaOpcode.ItemInfo },
{ 0x0379, MatchaOpcode.MarketBoardItemListing },
{ 0x0174, MatchaOpcode.MarketBoardItemListingCount },
{ 0x03cd, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x0269, MatchaOpcode.NpcSpawn },
{ 0x02bf, MatchaOpcode.PlayerSetup },
{ 0x0094, MatchaOpcode.PlayerSpawn },
{ 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 },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x020b, MatchaOpcode.ActorControl },
{ 0x0139, MatchaOpcode.ActorControlSelf },
{ 0x0239, MatchaOpcode.CEDirector },
{ 0x00b1, MatchaOpcode.CompanyAirshipStatus },
{ 0x0177, MatchaOpcode.CompanySubmersibleStatus },
{ 0x019d, MatchaOpcode.ContentFinderNotifyPop },
{ 0x035c, MatchaOpcode.DirectorStart },
{ 0x0082, MatchaOpcode.EventPlay },
{ 0x0123, MatchaOpcode.Examine },
{ 0x017c, MatchaOpcode.FateInfo },
{ 0x01c5, MatchaOpcode.InitZone },
{ 0x0278, MatchaOpcode.InventoryTransaction },
{ 0x0335, MatchaOpcode.ItemInfo },
{ 0x01b0, MatchaOpcode.MarketBoardItemListing },
{ 0x034c, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0323, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x0267, MatchaOpcode.NpcSpawn },
{ 0x0085, MatchaOpcode.PlayerSetup },
{ 0x03ad, MatchaOpcode.PlayerSpawn },
{ 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 },
};
}
}

0 comments on commit c770b14

Please sign in to comment.