Пример #1
0
 public static PKM getPKMfromDestination(SaveFile SAV)
 {
     int o = slotDestinationOffset;
     return DestinationParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }
Пример #2
0
 // PKM Get Set
 public static PKM getPKMfromSource(SaveFile SAV)
 {
     int o = slotSourceOffset;
     return SourceParty ? SAV.getPartySlot(o) : SAV.getStoredSlot(o);
 }