mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Rename SWSH blocks and update Chinese HGSS Event Constant (#3131)
* Update TrainerCard8.cs * Update SaveBlockAccessor8SWSH.cs * Update const_hgss_zh.txt
This commit is contained in:
parent
d805167e7c
commit
121ae9b611
3 changed files with 7 additions and 7 deletions
|
@ -3,7 +3,7 @@
|
|||
0161 三圣兽 (烧焦塔) 0:出现了,1:游走/逃走
|
||||
0304 游走拉帝亚斯/拉帝欧斯 0:未出现,1:即将游走,2:游走中
|
||||
0067 谜之水晶 0:未解锁,1778:已解锁
|
||||
0249 埋藏之塔 0:未接受关都御三家,1:已获得关都御三家,2:获得玉,3:盖欧卡解锁/Groudon,4:盖欧卡消失/Groudon,6:烈空坐解锁,7:烈空坐已捕获,9:烈空坐消失
|
||||
0249 埋藏之塔 0:未接受关都御三家,1:已获得关都御三家,2:获得玉,3:盖欧卡解锁/固拉多,4:盖欧卡消失/固拉多,6:烈空坐解锁,7:烈空坐已捕获,9:烈空坐消失
|
||||
0251 神奥遗迹 1:未进入,4:已传送 (第一次),5:去了外面,6:可与竹兰交谈 (小屋),7:可与竹兰交谈 (台上),8:选择传说宝可梦前,10:获得第一只宝可梦,13:已传送 (第二次),14:获得第二只宝可梦
|
||||
0259 神奥第一只传说 1:帝牙卢卡,2:帕路奇亚,3:骑拉帝纳
|
||||
0258 神奥第二只阿尔宙斯 1:初始之间,2:命中注定般地遇见
|
||||
|
|
|
@ -428,9 +428,9 @@ namespace PKHeX.Core
|
|||
public const uint KSparringFairyPartySlot3Sweet = 0xB3462825; // U32 Alcremie Sweet ID if 3rd PKM used in party, otherwise -1
|
||||
|
||||
public const uint KRegielekiOrRegidragoPattern = 0xCF90B39A; // U32 Chosen Pattern for Split-Decision Ruins (0 = not chosen, 1 = electric, 2 = dragon)
|
||||
public const uint KCobalionFootprintPercentage = 0x4D50B655; // U32 Footprints of Cobalion collected on Crown Tundra; values go from 0-100
|
||||
public const uint KTerrakionFootprintPercentage = 0x771E4C88; // U32 Footprints of Terrakion collected on Crown Tundra; values from 0-100
|
||||
public const uint KVirizionFootprintPercentage = 0xAD67A297; // U32 Footprints of Virizion collected on Crown Tundra; values go from 0-100
|
||||
public const uint KFootprintPercentageCobalion = 0x4D50B655; // U32 Footprints of Cobalion collected on Crown Tundra; values go from 0-100
|
||||
public const uint KFootprintPercentageTerrakion = 0x771E4C88; // U32 Footprints of Terrakion collected on Crown Tundra; values from 0-100
|
||||
public const uint KFootprintPercentageVirizion = 0xAD67A297; // U32 Footprints of Virizion collected on Crown Tundra; values go from 0-100
|
||||
public const uint KPlayersInteractedOnline = 0x31A13425; // U32 Number of Players interacted with online
|
||||
public const uint KMaxLairSpeciesID1Noted = 0x6F669A35; // U32 Max Lair Species 1 Noted
|
||||
public const uint KMaxLairSpeciesID2Noted = 0x6F66951C; // U32 Max Lair Species 2 Noted
|
||||
|
|
|
@ -248,19 +248,19 @@ namespace PKHeX.Core
|
|||
ViewPoke(i).Clear();
|
||||
}
|
||||
|
||||
public ushort Year
|
||||
public ushort StartedYear
|
||||
{
|
||||
get => BitConverter.ToUInt16(Data, Offset + 0x170);
|
||||
set => SAV.SetData(Data, BitConverter.GetBytes(value), Offset + 0x170);
|
||||
}
|
||||
|
||||
public byte Month
|
||||
public byte StartedMonth
|
||||
{
|
||||
get => Data[Offset + 0x172];
|
||||
set => Data[Offset + 0x172] = value;
|
||||
}
|
||||
|
||||
public byte Day
|
||||
public byte StartedDay
|
||||
{
|
||||
get => Data[Offset + 0x173];
|
||||
set => Data[Offset + 0x173] = value;
|
||||
|
|
Loading…
Add table
Reference in a new issue