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 Apr 9, 2024
1 parent 8532d96 commit 344cdef
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>
{
{ 0x02cd, MatchaOpcode.ActorControl },
{ 0x032d, MatchaOpcode.ActorControlSelf },
{ 0x0333, MatchaOpcode.ActorControl },
{ 0x0111, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x0172, MatchaOpcode.CompanyAirshipStatus },
{ 0x031d, MatchaOpcode.CompanySubmersibleStatus },
{ 0x022c, MatchaOpcode.ContentFinderNotifyPop },
{ 0x027a, MatchaOpcode.CompanyAirshipStatus },
{ 0x020c, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0225, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x01a7, MatchaOpcode.EventPlay },
{ 0x035e, MatchaOpcode.Examine },
{ 0x012a, MatchaOpcode.EventPlay },
{ 0x02bf, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 0x0230, MatchaOpcode.InitZone },
{ 0x00c4, MatchaOpcode.InventoryTransaction },
{ 0x032a, MatchaOpcode.ItemInfo },
{ 0x0237, MatchaOpcode.MarketBoardItemListing },
{ 0x01fe, MatchaOpcode.MarketBoardItemListingCount },
{ 0x014a, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x027c, MatchaOpcode.NpcSpawn },
{ 0x025f, MatchaOpcode.PlayerSetup },
{ 0x00dd, MatchaOpcode.PlayerSpawn },
{ 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 },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x0181, MatchaOpcode.ActorControl },
{ 0x00db, MatchaOpcode.ActorControlSelf },
{ 0x00d0, MatchaOpcode.CEDirector },
{ 0x02e8, MatchaOpcode.CompanyAirshipStatus },
{ 0x0330, MatchaOpcode.CompanySubmersibleStatus },
{ 0x036c, MatchaOpcode.ContentFinderNotifyPop },
{ 0x027e, MatchaOpcode.DirectorStart },
{ 0x021d, MatchaOpcode.EventPlay },
{ 0x00fa, MatchaOpcode.Examine },
{ 0x01f2, MatchaOpcode.FateInfo },
{ 0x00a2, MatchaOpcode.InitZone },
{ 0x028c, MatchaOpcode.InventoryTransaction },
{ 0x0336, MatchaOpcode.ItemInfo },
{ 0x0315, MatchaOpcode.MarketBoardItemListing },
{ 0x0319, MatchaOpcode.MarketBoardItemListingCount },
{ 0x018f, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x02ae, MatchaOpcode.NpcSpawn },
{ 0x030d, MatchaOpcode.PlayerSetup },
{ 0x0065, MatchaOpcode.PlayerSpawn },
{ 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 },
};
}
}

0 comments on commit 344cdef

Please sign in to comment.