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 Nov 12, 2024
2 parents 384b78a + ebcae65 commit 20df4c9
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions Cafe.Matcha/Constant/MatchaOpcode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,49 +33,49 @@ internal static class OpcodeStorage
{
public static Dictionary<ushort, MatchaOpcode> Global = new Dictionary<ushort, MatchaOpcode>
{
{ 0x0178, MatchaOpcode.ActorControl },
{ 0x02a7, MatchaOpcode.ActorControlSelf },
{ 0x0212, MatchaOpcode.ActorControl },
{ 0x00af, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x0371, MatchaOpcode.CompanyAirshipStatus },
{ 0x00f8, MatchaOpcode.CompanySubmersibleStatus },
{ 0x014f, MatchaOpcode.ContentFinderNotifyPop },
{ 0x01e5, MatchaOpcode.CompanyAirshipStatus },
{ 0x00f3, MatchaOpcode.CompanySubmersibleStatus },
{ 0x01c4, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.ResumeEventScene32 },
{ 0x026d, MatchaOpcode.EventPlay },
{ 0x0326, MatchaOpcode.Examine },
{ 0x03ca, MatchaOpcode.EventPlay },
{ 0x03ae, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x01f1, MatchaOpcode.InitZone },
{ 0x00e8, MatchaOpcode.InventoryTransaction },
{ 0x0236, MatchaOpcode.ItemInfo },
{ 0x01c3, MatchaOpcode.MarketBoardItemListing },
{ 0x00a0, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0102, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x016c, MatchaOpcode.InitZone },
{ 0x02fc, MatchaOpcode.InventoryTransaction },
{ 0x0310, MatchaOpcode.ItemInfo },
{ 0x00f2, MatchaOpcode.MarketBoardItemListing },
{ 0x02d2, MatchaOpcode.MarketBoardItemListingCount },
{ 0x03d7, MatchaOpcode.MarketBoardItemListingHistory },
{ 0xf010, MatchaOpcode.MarketBoardRequestItemListingInfo },
{ 0x0186, MatchaOpcode.NpcSpawn },
{ 0x00c6, MatchaOpcode.PlayerSetup },
{ 0x024f, MatchaOpcode.PlayerSpawn },
{ 0x039a, MatchaOpcode.NpcSpawn },
{ 0x0226, MatchaOpcode.PlayerSetup },
{ 0x0171, MatchaOpcode.PlayerSpawn },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x0311, MatchaOpcode.ActorControl },
{ 0x01a9, MatchaOpcode.ActorControlSelf },
{ 0x02c9, MatchaOpcode.CEDirector },
{ 0x018b, MatchaOpcode.CompanyAirshipStatus },
{ 0x0371, MatchaOpcode.CompanySubmersibleStatus },
{ 0x00bf, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0089, MatchaOpcode.ResumeEventScene32 },
{ 0x039a, MatchaOpcode.EventPlay },
{ 0x02dd, MatchaOpcode.Examine },
{ 0x00a3, MatchaOpcode.FateInfo },
{ 0x025d, MatchaOpcode.InitZone },
{ 0x0356, MatchaOpcode.InventoryTransaction },
{ 0x0110, MatchaOpcode.ItemInfo },
{ 0x0171, MatchaOpcode.MarketBoardItemListing },
{ 0x03c6, MatchaOpcode.MarketBoardItemListingCount },
{ 0x0382, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x8142, MatchaOpcode.MarketBoardRequestItemListingInfo },
{ 0x021a, MatchaOpcode.NpcSpawn },
{ 0x0212, MatchaOpcode.PlayerSetup },
{ 0x0134, MatchaOpcode.PlayerSpawn },
{ 0x0084, MatchaOpcode.ActorControl },
{ 0x007b, MatchaOpcode.ActorControlSelf },
{ 0x01b5, MatchaOpcode.CEDirector },
{ 0x0069, MatchaOpcode.CompanyAirshipStatus },
{ 0x02e4, MatchaOpcode.CompanySubmersibleStatus },
{ 0x007d, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0159, MatchaOpcode.ResumeEventScene32 },
{ 0x027c, MatchaOpcode.EventPlay },
{ 0x0096, MatchaOpcode.Examine },
{ 0x0242, MatchaOpcode.FateInfo },
{ 0x0317, MatchaOpcode.InitZone },
{ 0x0073, MatchaOpcode.InventoryTransaction },
{ 0x01d6, MatchaOpcode.ItemInfo },
{ 0x031c, MatchaOpcode.MarketBoardItemListing },
{ 0x027f, MatchaOpcode.MarketBoardItemListingCount },
{ 0x00df, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x8380, MatchaOpcode.MarketBoardRequestItemListingInfo },
{ 0x00a4, MatchaOpcode.NpcSpawn },
{ 0x0207, MatchaOpcode.PlayerSetup },
{ 0x0125, MatchaOpcode.PlayerSpawn },
};
}
}

0 comments on commit 20df4c9

Please sign in to comment.