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 Mar 5, 2024
1 parent 7f923e4 commit f2d1161
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>
{
{ 0x03b6, MatchaOpcode.ActorControl },
{ 0x00e2, MatchaOpcode.ActorControlSelf },
{ 0x02cd, MatchaOpcode.ActorControl },
{ 0x032d, MatchaOpcode.ActorControlSelf },
{ 0xf002, MatchaOpcode.CEDirector },
{ 0x0200, MatchaOpcode.CompanyAirshipStatus },
{ 0x006f, MatchaOpcode.CompanySubmersibleStatus },
{ 0x0318, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0172, MatchaOpcode.CompanyAirshipStatus },
{ 0x031d, MatchaOpcode.CompanySubmersibleStatus },
{ 0x022c, MatchaOpcode.ContentFinderNotifyPop },
{ 0xf006, MatchaOpcode.DirectorStart },
{ 0x0331, MatchaOpcode.EventPlay },
{ 0x01d1, MatchaOpcode.Examine },
{ 0x01a7, MatchaOpcode.EventPlay },
{ 0x035e, MatchaOpcode.Examine },
{ 0xf009, MatchaOpcode.FateInfo },
{ 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 },
{ 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 },
};
public static Dictionary<ushort, MatchaOpcode> China = new Dictionary<ushort, MatchaOpcode>
{
{ 0x02c3, MatchaOpcode.ActorControl },
{ 0x0302, MatchaOpcode.ActorControlSelf },
{ 0x0362, MatchaOpcode.CEDirector },
{ 0x0269, MatchaOpcode.CompanyAirshipStatus },
{ 0x038e, MatchaOpcode.CompanySubmersibleStatus },
{ 0x01a5, MatchaOpcode.ContentFinderNotifyPop },
{ 0x00c2, MatchaOpcode.DirectorStart },
{ 0x00dc, MatchaOpcode.EventPlay },
{ 0x0192, MatchaOpcode.Examine },
{ 0x00af, MatchaOpcode.FateInfo },
{ 0x018d, MatchaOpcode.InitZone },
{ 0x03ca, MatchaOpcode.InventoryTransaction },
{ 0x01dd, MatchaOpcode.ItemInfo },
{ 0x0337, MatchaOpcode.MarketBoardItemListing },
{ 0x02d9, MatchaOpcode.MarketBoardItemListingCount },
{ 0x01bd, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x0393, MatchaOpcode.NpcSpawn },
{ 0x0283, MatchaOpcode.PlayerSetup },
{ 0x039b, MatchaOpcode.PlayerSpawn },
{ 0x0181, MatchaOpcode.ActorControl },
{ 0x00db, MatchaOpcode.ActorControlSelf },
{ 0x00d0, MatchaOpcode.CEDirector },
{ 0x02e8, MatchaOpcode.CompanyAirshipStatus },
{ 0x0330, MatchaOpcode.CompanySubmersibleStatus },
{ 0x036c, MatchaOpcode.ContentFinderNotifyPop },
{ 0x0NaN, MatchaOpcode.DirectorStart },
{ 0x0NaN, MatchaOpcode.EventPlay },
{ 0x00fa, MatchaOpcode.Examine },
{ 0x01f2, MatchaOpcode.FateInfo },
{ 0x00a2, MatchaOpcode.InitZone },
{ 0x028c, MatchaOpcode.InventoryTransaction },
{ 0x0NaN, MatchaOpcode.ItemInfo },
{ 0x0315, MatchaOpcode.MarketBoardItemListing },
{ 0x0319, MatchaOpcode.MarketBoardItemListingCount },
{ 0x018f, MatchaOpcode.MarketBoardItemListingHistory },
{ 0x02ae, MatchaOpcode.NpcSpawn },
{ 0x030d, MatchaOpcode.PlayerSetup },
{ 0x0065, MatchaOpcode.PlayerSpawn },
};
}
}

0 comments on commit f2d1161

Please sign in to comment.