├── PKHeX.Core ├── Legality │ └── Evolutions │ │ └── EvolutionSet.cs ├── Resources │ ├── text │ │ ├── script │ │ │ ├── const_oras_en.txt │ │ │ ├── const_oras_ko.txt │ │ │ ├── const_oras_zh.txt │ │ │ ├── const_frlg_en.txt │ │ │ ├── const_b2w2_zh.txt │ │ │ ├── const_b2w2_ko.txt │ │ │ └── const_b2w2_en.txt │ │ ├── zh │ │ │ ├── text_bw2_60000_zh.txt │ │ │ ├── text_sm_60000_zh.txt │ │ │ ├── text_xy_60000_zh.txt │ │ │ ├── text_tradeao_zh.txt │ │ │ └── text_Forms_zh.txt │ │ ├── ko │ │ │ ├── text_bw2_60000_ko.txt │ │ │ ├── text_sm_60000_ko.txt │ │ │ ├── text_xy_60000_ko.txt │ │ │ ├── text_tradeao_ko.txt │ │ │ ├── text_tradedppt_ko.txt │ │ │ └── text_Forms_ko.txt │ │ ├── ja │ │ │ ├── text_bw2_60000_ja.txt │ │ │ ├── text_sm_60000_ja.txt │ │ │ ├── text_tradeao_ja.txt │ │ │ ├── text_xy_60000_ja.txt │ │ │ └── text_tradedppt_ja.txt │ │ ├── de │ │ │ ├── text_bw2_60000_de.txt │ │ │ ├── text_tradeao_de.txt │ │ │ ├── text_sm_60000_de.txt │ │ │ ├── text_xy_60000_de.txt │ │ │ └── text_tradedppt_de.txt │ │ ├── en │ │ │ ├── text_bw2_60000_en.txt │ │ │ ├── text_tradeao_en.txt │ │ │ ├── text_sm_60000_en.txt │ │ │ ├── text_tradedppt_en.txt │ │ │ ├── text_xy_60000_en.txt │ │ │ └── text_Forms_en.txt │ │ ├── es │ │ │ ├── text_bw2_60000_es.txt │ │ │ ├── text_tradeao_es.txt │ │ │ ├── text_sm_60000_es.txt │ │ │ ├── text_tradedppt_es.txt │ │ │ ├── text_xy_60000_es.txt │ │ │ └── text_Forms_es.txt │ │ ├── it │ │ │ ├── text_bw2_60000_it.txt │ │ │ ├── text_tradeao_it.txt │ │ │ ├── text_sm_60000_it.txt │ │ │ ├── text_xy_60000_it.txt │ │ │ ├── text_tradedppt_it.txt │ │ │ └── text_Forms_it.txt │ │ ├── fr │ │ │ ├── text_bw2_60000_fr.txt │ │ │ ├── text_tradeao_fr.txt │ │ │ ├── text_tradedppt_fr.txt │ │ │ ├── text_sm_60000_fr.txt │ │ │ ├── text_xy_60000_fr.txt │ │ │ └── text_Forms_fr.txt │ │ └── locale │ │ │ ├── sr_ID │ │ │ ├── sr_115.txt │ │ │ └── sr_117.txt │ │ │ ├── countries.txt │ │ │ ├── languages.txt │ │ │ └── regions3ds.txt │ └── byte │ │ ├── pgf.pkl │ │ ├── wc4.pkl │ │ ├── wc6.pkl │ │ ├── wc7.pkl │ │ ├── evos_ao.pkl │ │ ├── evos_g3.pkl │ │ ├── evos_g4.pkl │ │ ├── evos_g5.pkl │ │ ├── evos_gg.pkl │ │ ├── evos_uu.pkl │ │ ├── hmtm_g3.pkl │ │ ├── personal_ao │ │ ├── personal_bw │ │ ├── personal_c │ │ ├── personal_dp │ │ ├── personal_e │ │ ├── personal_fr │ │ ├── personal_gg │ │ ├── personal_gs │ │ ├── personal_lg │ │ ├── personal_pt │ │ ├── personal_rb │ │ ├── personal_rs │ │ ├── personal_sm │ │ ├── personal_uu │ │ ├── personal_xy │ │ ├── personal_y │ │ ├── wb7full.pkl │ │ ├── wc6full.pkl │ │ ├── wc7full.pkl │ │ ├── eggmove_c.pkl │ │ ├── evos_gsc.pkl │ │ ├── evos_rby.pkl │ │ ├── lvlmove_c.pkl │ │ ├── lvlmove_e.pkl │ │ ├── lvlmove_y.pkl │ │ ├── personal_b2w2 │ │ ├── personal_hgss │ │ ├── trees_h_c.pkl │ │ ├── tutors_g3.pkl │ │ ├── tutors_g4.pkl │ │ ├── eggmove_ao.pkl │ │ ├── eggmove_bw.pkl │ │ ├── eggmove_dppt.pkl │ │ ├── eggmove_gs.pkl │ │ ├── eggmove_hgss.pkl │ │ ├── eggmove_rs.pkl │ │ ├── eggmove_sm.pkl │ │ ├── eggmove_uu.pkl │ │ ├── eggmove_xy.pkl │ │ ├── encounter_a.pkl │ │ ├── encounter_b.pkl │ │ ├── encounter_b2.pkl │ │ ├── encounter_d.pkl │ │ ├── encounter_e.pkl │ │ ├── encounter_fr.pkl │ │ ├── encounter_ge.pkl │ │ ├── encounter_gp.pkl │ │ ├── encounter_hg.pkl │ │ ├── encounter_lg.pkl │ │ ├── encounter_mn.pkl │ │ ├── encounter_o.pkl │ │ ├── encounter_p.pkl │ │ ├── encounter_pt.pkl │ │ ├── encounter_r.pkl │ │ ├── encounter_s.pkl │ │ ├── encounter_sn.pkl │ │ ├── encounter_ss.pkl │ │ ├── encounter_um.pkl │ │ ├── encounter_us.pkl │ │ ├── encounter_w.pkl │ │ ├── encounter_w2.pkl │ │ ├── encounter_x.pkl │ │ ├── encounter_y.pkl │ │ ├── lvlmove_ao.pkl │ │ ├── lvlmove_b2w2.pkl │ │ ├── lvlmove_bw.pkl │ │ ├── lvlmove_dp.pkl │ │ ├── lvlmove_fr.pkl │ │ ├── lvlmove_gg.pkl │ │ ├── lvlmove_gs.pkl │ │ ├── lvlmove_hgss.pkl │ │ ├── lvlmove_lg.pkl │ │ ├── lvlmove_pt.pkl │ │ ├── lvlmove_rb.pkl │ │ ├── lvlmove_rs.pkl │ │ ├── lvlmove_sm.pkl │ │ ├── lvlmove_uu.pkl │ │ ├── lvlmove_xy.pkl │ │ ├── encounter_blue.pkl │ │ ├── encounter_gold.pkl │ │ ├── encounter_rb_f.pkl │ │ ├── encounter_red.pkl │ │ ├── encounter_crystal.pkl │ │ ├── encounter_gold_h.pkl │ │ ├── encounter_gsc_f.pkl │ │ ├── encounter_hb_hg.pkl │ │ ├── encounter_hb_ss.pkl │ │ ├── encounter_mn_sos.pkl │ │ ├── encounter_silver.pkl │ │ ├── encounter_sn_sos.pkl │ │ ├── encounter_um_sos.pkl │ │ ├── encounter_us_sos.pkl │ │ └── encounter_yellow.pkl └── Saves │ ├── Storage │ └── SAV4Ranch.cs │ └── Blocks │ └── BlockInfoNDS.cs ├── PokeWalkerSimulator ├── .gitattributes └── Resources │ ├── PK4 │ ├── 0_00.pk4 │ ├── 0_01.pk4 │ ├── 0_10.pk4 │ ├── 0_11.pk4 │ ├── 0_20.pk4 │ ├── 0_21.pk4 │ ├── 1_00.pk4 │ ├── 1_01.pk4 │ ├── 1_10.pk4 │ ├── 1_11.pk4 │ ├── 1_20.pk4 │ ├── 1_21.pk4 │ ├── 2_00.pk4 │ ├── 2_01.pk4 │ ├── 2_10.pk4 │ ├── 2_11.pk4 │ ├── 2_20.pk4 │ ├── 2_21.pk4 │ ├── 3_00.pk4 │ ├── 3_01.pk4 │ ├── 3_10.pk4 │ ├── 3_11.pk4 │ ├── 3_20.pk4 │ ├── 3_21.pk4 │ ├── 4_00.pk4 │ ├── 4_01.pk4 │ ├── 4_10.pk4 │ ├── 4_11.pk4 │ ├── 4_20.pk4 │ ├── 4_21.pk4 │ ├── 5_00.pk4 │ ├── 5_01.pk4 │ ├── 5_10.pk4 │ ├── 5_11.pk4 │ ├── 5_20.pk4 │ ├── 5_21.pk4 │ ├── 6_00.pk4 │ ├── 6_01.pk4 │ ├── 6_10.pk4 │ ├── 6_11.pk4 │ ├── 6_20.pk4 │ ├── 6_21.pk4 │ ├── 7_00.pk4 │ ├── 7_01.pk4 │ ├── 7_10.pk4 │ ├── 7_11.pk4 │ ├── 7_20.pk4 │ ├── 7_21.pk4 │ ├── 8_00.pk4 │ ├── 8_01.pk4 │ ├── 8_10.pk4 │ ├── 8_11.pk4 │ ├── 8_20.pk4 │ ├── 8_21.pk4 │ ├── 9_00.pk4 │ ├── 9_01.pk4 │ ├── 9_10.pk4 │ ├── 9_11.pk4 │ ├── 9_20.pk4 │ ├── 9_21.pk4 │ ├── 10_00.pk4 │ ├── 10_01.pk4 │ ├── 10_10.pk4 │ ├── 10_11.pk4 │ ├── 10_20.pk4 │ ├── 10_21.pk4 │ ├── 11_00.pk4 │ ├── 11_01.pk4 │ ├── 11_10.pk4 │ ├── 11_11.pk4 │ ├── 11_20.pk4 │ ├── 11_21.pk4 │ ├── 12_00.pk4 │ ├── 12_01.pk4 │ ├── 12_10.pk4 │ ├── 12_11.pk4 │ ├── 12_20.pk4 │ ├── 12_21.pk4 │ ├── 13_00.pk4 │ ├── 13_01.pk4 │ ├── 13_10.pk4 │ ├── 13_11.pk4 │ ├── 13_20.pk4 │ ├── 13_21.pk4 │ ├── 14_00.pk4 │ ├── 14_01.pk4 │ ├── 14_10.pk4 │ ├── 14_11.pk4 │ ├── 14_20.pk4 │ ├── 14_21.pk4 │ ├── 15_00.pk4 │ ├── 15_01.pk4 │ ├── 15_10.pk4 │ ├── 15_11.pk4 │ ├── 15_20.pk4 │ ├── 15_21.pk4 │ ├── 16_00.pk4 │ ├── 16_01.pk4 │ ├── 16_10.pk4 │ ├── 16_11.pk4 │ ├── 16_20.pk4 │ ├── 16_21.pk4 │ ├── 17_00.pk4 │ ├── 17_01.pk4 │ ├── 17_10.pk4 │ ├── 17_11.pk4 │ ├── 17_20.pk4 │ ├── 17_21.pk4 │ ├── 18_00.pk4 │ ├── 18_01.pk4 │ ├── 18_10.pk4 │ ├── 18_11.pk4 │ ├── 18_20.pk4 │ ├── 18_21.pk4 │ ├── 19_00.pk4 │ ├── 19_01.pk4 │ ├── 19_10.pk4 │ ├── 19_11.pk4 │ ├── 19_20.pk4 │ ├── 19_21.pk4 │ ├── 20_00.pk4 │ ├── 20_01.pk4 │ ├── 20_10.pk4 │ ├── 20_11.pk4 │ ├── 20_20.pk4 │ ├── 20_21.pk4 │ ├── 21_00.pk4 │ ├── 21_01.pk4 │ ├── 21_10.pk4 │ ├── 21_11.pk4 │ ├── 21_20.pk4 │ ├── 21_21.pk4 │ ├── 22_00.pk4 │ ├── 22_01.pk4 │ ├── 22_10.pk4 │ ├── 22_11.pk4 │ ├── 22_20.pk4 │ ├── 22_21.pk4 │ ├── 23_00.pk4 │ ├── 23_01.pk4 │ ├── 23_10.pk4 │ ├── 23_11.pk4 │ ├── 23_20.pk4 │ ├── 23_21.pk4 │ ├── 24_00.pk4 │ ├── 24_01.pk4 │ ├── 24_10.pk4 │ ├── 24_11.pk4 │ ├── 24_20.pk4 │ ├── 24_21.pk4 │ ├── 25_00.pk4 │ ├── 25_01.pk4 │ ├── 25_10.pk4 │ ├── 25_11.pk4 │ ├── 25_20.pk4 │ ├── 25_21.pk4 │ ├── 26_00.pk4 │ ├── 26_01.pk4 │ ├── 26_10.pk4 │ ├── 26_11.pk4 │ ├── 26_20.pk4 │ └── 26_21.pk4 │ └── Route_sea2.png ├── PKHeX.WinForms ├── icon.ico └── Resources │ ├── icon.ico │ └── img │ ├── icon.png │ ├── warn.png │ ├── valid.png │ ├── Bag │ ├── Bag_Z.png │ ├── Bag_Key.png │ ├── Bag_Balls.png │ ├── Bag_Battle.png │ ├── Bag_Candy.png │ ├── Bag_Free.png │ ├── Bag_Items.png │ ├── Bag_Mail.png │ └── Bag_TMHM.png │ ├── misc │ ├── 6th.png │ ├── leaf.png │ ├── team.png │ ├── vc.png │ ├── alora.png │ ├── crown.png │ ├── locked.png │ ├── party.png │ ├── party1.png │ ├── party2.png │ ├── party3.png │ ├── party4.png │ ├── party5.png │ └── party6.png │ ├── Program │ ├── bak.png │ ├── qr.png │ ├── about.png │ ├── data.png │ ├── date.png │ ├── dump.png │ ├── exit.png │ ├── export.png │ ├── folder.png │ ├── gift.png │ ├── heart.png │ ├── import.png │ ├── load.png │ ├── main.png │ ├── open.png │ ├── other.png │ ├── redo.png │ ├── report.png │ ├── user.png │ ├── users.png │ └── wand.png │ ├── ball │ ├── _ball1.png │ ├── _ball2.png │ ├── _ball3.png │ ├── _ball4.png │ ├── _ball5.png │ ├── _ball6.png │ ├── _ball7.png │ ├── _ball8.png │ ├── _ball9.png │ ├── _ball10.png │ ├── _ball11.png │ ├── _ball12.png │ ├── _ball13.png │ ├── _ball14.png │ ├── _ball15.png │ ├── _ball16.png │ ├── _ball17.png │ ├── _ball18.png │ ├── _ball19.png │ ├── _ball20.png │ ├── _ball21.png │ ├── _ball22.png │ ├── _ball23.png │ ├── _ball24.png │ ├── _ball25.png │ └── _ball26.png │ ├── box │ ├── slotDel.png │ ├── slotSet.png │ ├── swapBox.png │ ├── slotDrag.png │ ├── slotHover.png │ ├── slotTrans.png │ └── slotView.png │ ├── item │ ├── item_1.png │ ├── item_2.png │ ├── item_3.png │ ├── item_4.png │ ├── item_5.png │ ├── item_6.png │ ├── item_7.png │ ├── item_8.png │ ├── item_9.png │ ├── item_10.png │ ├── item_100.png │ ├── item_101.png │ ├── item_102.png │ ├── item_103.png │ ├── item_104.png │ ├── item_105.png │ ├── item_106.png │ ├── item_107.png │ ├── item_108.png │ ├── item_109.png │ ├── item_11.png │ ├── item_110.png │ ├── item_112.png │ ├── item_116.png │ ├── item_117.png │ ├── item_118.png │ ├── item_119.png │ ├── item_12.png │ ├── item_13.png │ ├── item_134.png │ ├── item_135.png │ ├── item_136.png │ ├── item_14.png │ ├── item_149.png │ ├── item_15.png │ ├── item_150.png │ ├── item_151.png │ ├── item_152.png │ ├── item_153.png │ ├── item_154.png │ ├── item_155.png │ ├── item_156.png │ ├── item_157.png │ ├── item_158.png │ ├── item_159.png │ ├── item_16.png │ ├── item_160.png │ ├── item_161.png │ ├── item_162.png │ ├── item_163.png │ ├── item_164.png │ ├── item_165.png │ ├── item_166.png │ ├── item_167.png │ ├── item_168.png │ ├── item_169.png │ ├── item_17.png │ ├── item_170.png │ ├── item_171.png │ ├── item_172.png │ ├── item_173.png │ ├── item_174.png │ ├── item_175.png │ ├── item_176.png │ ├── item_177.png │ ├── item_178.png │ ├── item_179.png │ ├── item_18.png │ ├── item_180.png │ ├── item_181.png │ ├── item_182.png │ ├── item_183.png │ ├── item_184.png │ ├── item_185.png │ ├── item_186.png │ ├── item_187.png │ ├── item_188.png │ ├── item_189.png │ ├── item_19.png │ ├── item_190.png │ ├── item_191.png │ ├── item_192.png │ ├── item_193.png │ ├── item_194.png │ ├── item_195.png │ ├── item_196.png │ ├── item_197.png │ ├── item_198.png │ ├── item_199.png │ ├── item_20.png │ ├── item_200.png │ ├── item_201.png │ ├── item_202.png │ ├── item_203.png │ ├── item_204.png │ ├── item_205.png │ ├── item_206.png │ ├── item_207.png │ ├── item_208.png │ ├── item_209.png │ ├── item_21.png │ ├── item_210.png │ ├── item_211.png │ ├── item_212.png │ ├── item_213.png │ ├── item_214.png │ ├── item_215.png │ ├── item_217.png │ ├── item_218.png │ ├── item_219.png │ ├── item_22.png │ ├── item_220.png │ ├── item_221.png │ ├── item_222.png │ ├── item_223.png │ ├── item_224.png │ ├── item_225.png │ ├── item_226.png │ ├── item_227.png │ ├── item_228.png │ ├── item_229.png │ ├── item_23.png │ ├── item_230.png │ ├── item_231.png │ ├── item_232.png │ ├── item_233.png │ ├── item_234.png │ ├── item_235.png │ ├── item_236.png │ ├── item_237.png │ ├── item_238.png │ ├── item_239.png │ ├── item_24.png │ ├── item_240.png │ ├── item_241.png │ ├── item_242.png │ ├── item_243.png │ ├── item_244.png │ ├── item_245.png │ ├── item_246.png │ ├── item_247.png │ ├── item_248.png │ ├── item_249.png │ ├── item_25.png │ ├── item_250.png │ ├── item_251.png │ ├── item_252.png │ ├── item_253.png │ ├── item_254.png │ ├── item_255.png │ ├── item_256.png │ ├── item_257.png │ ├── item_258.png │ ├── item_259.png │ ├── item_26.png │ ├── item_260.png │ ├── item_261.png │ ├── item_262.png │ ├── item_263.png │ ├── item_264.png │ ├── item_265.png │ ├── item_266.png │ ├── item_267.png │ ├── item_268.png │ ├── item_269.png │ ├── item_27.png │ ├── item_270.png │ ├── item_271.png │ ├── item_272.png │ ├── item_273.png │ ├── item_274.png │ ├── item_275.png │ ├── item_276.png │ ├── item_277.png │ ├── item_278.png │ ├── item_279.png │ ├── item_28.png │ ├── item_280.png │ ├── item_281.png │ ├── item_282.png │ ├── item_283.png │ ├── item_284.png │ ├── item_285.png │ ├── item_286.png │ ├── item_287.png │ ├── item_288.png │ ├── item_289.png │ ├── item_29.png │ ├── item_290.png │ ├── item_291.png │ ├── item_292.png │ ├── item_293.png │ ├── item_294.png │ ├── item_295.png │ ├── item_296.png │ ├── item_297.png │ ├── item_298.png │ ├── item_299.png │ ├── item_30.png │ ├── item_300.png │ ├── item_301.png │ ├── item_302.png │ ├── item_303.png │ ├── item_304.png │ ├── item_305.png │ ├── item_306.png │ ├── item_307.png │ ├── item_308.png │ ├── item_309.png │ ├── item_31.png │ ├── item_310.png │ ├── item_311.png │ ├── item_312.png │ ├── item_313.png │ ├── item_314.png │ ├── item_315.png │ ├── item_316.png │ ├── item_317.png │ ├── item_318.png │ ├── item_319.png │ ├── item_32.png │ ├── item_320.png │ ├── item_321.png │ ├── item_322.png │ ├── item_323.png │ ├── item_324.png │ ├── item_325.png │ ├── item_326.png │ ├── item_327.png │ ├── item_33.png │ ├── item_34.png │ ├── item_35.png │ ├── item_36.png │ ├── item_37.png │ ├── item_38.png │ ├── item_39.png │ ├── item_40.png │ ├── item_41.png │ ├── item_42.png │ ├── item_43.png │ ├── item_44.png │ ├── item_45.png │ ├── item_46.png │ ├── item_47.png │ ├── item_48.png │ ├── item_49.png │ ├── item_50.png │ ├── item_504.png │ ├── item_51.png │ ├── item_52.png │ ├── item_53.png │ ├── item_534.png │ ├── item_535.png │ ├── item_537.png │ ├── item_538.png │ ├── item_539.png │ ├── item_54.png │ ├── item_540.png │ ├── item_541.png │ ├── item_542.png │ ├── item_543.png │ ├── item_544.png │ ├── item_545.png │ ├── item_546.png │ ├── item_547.png │ ├── item_548.png │ ├── item_549.png │ ├── item_55.png │ ├── item_550.png │ ├── item_551.png │ ├── item_552.png │ ├── item_553.png │ ├── item_554.png │ ├── item_555.png │ ├── item_556.png │ ├── item_557.png │ ├── item_558.png │ ├── item_559.png │ ├── item_56.png │ ├── item_560.png │ ├── item_561.png │ ├── item_562.png │ ├── item_563.png │ ├── item_564.png │ ├── item_565.png │ ├── item_566.png │ ├── item_567.png │ ├── item_568.png │ ├── item_569.png │ ├── item_57.png │ ├── item_570.png │ ├── item_571.png │ ├── item_572.png │ ├── item_573.png │ ├── item_577.png │ ├── item_58.png │ ├── item_580.png │ ├── item_581.png │ ├── item_582.png │ ├── item_583.png │ ├── item_584.png │ ├── item_585.png │ ├── item_586.png │ ├── item_587.png │ ├── item_588.png │ ├── item_589.png │ ├── item_59.png │ ├── item_590.png │ ├── item_591.png │ ├── item_60.png │ ├── item_61.png │ ├── item_62.png │ ├── item_63.png │ ├── item_639.png │ ├── item_64.png │ ├── item_640.png │ ├── item_644.png │ ├── item_645.png │ ├── item_646.png │ ├── item_647.png │ ├── item_648.png │ ├── item_649.png │ ├── item_65.png │ ├── item_650.png │ ├── item_652.png │ ├── item_653.png │ ├── item_654.png │ ├── item_655.png │ ├── item_656.png │ ├── item_657.png │ ├── item_658.png │ ├── item_659.png │ ├── item_66.png │ ├── item_660.png │ ├── item_661.png │ ├── item_662.png │ ├── item_663.png │ ├── item_664.png │ ├── item_665.png │ ├── item_666.png │ ├── item_667.png │ ├── item_668.png │ ├── item_669.png │ ├── item_67.png │ ├── item_670.png │ ├── item_671.png │ ├── item_672.png │ ├── item_673.png │ ├── item_674.png │ ├── item_675.png │ ├── item_676.png │ ├── item_677.png │ ├── item_678.png │ └── item_679.png │ └── badges │ ├── badge_1.png │ ├── badge_2.png │ ├── badge_3.png │ ├── badge_4.png │ ├── badge_5.png │ ├── badge_6.png │ ├── badge_7.png │ └── badge_8.png └── screenshots └── PokeWalkerSimulator_Setup.PNG /PKHeX.Core/Legality/Evolutions/EvolutionSet.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_oras_en.txt: -------------------------------------------------------------------------------- 1 | 60 Ash -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_oras_ko.txt: -------------------------------------------------------------------------------- 1 | 60 지우 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_oras_zh.txt: -------------------------------------------------------------------------------- 1 | 60 小智 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_frlg_en.txt: -------------------------------------------------------------------------------- 1 | 0x4031 Starter -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/zh/text_bw2_60000_zh.txt: -------------------------------------------------------------------------------- 1 | 远处的人 2 | 饲育屋夫妇 3 | 寻宝猎人 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_bw2_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 멀리 있는 사람 2 | 키우미집부부 3 | 브리더 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/zh/text_sm_60000_zh.txt: -------------------------------------------------------------------------------- 1 | 远处的人 2 | 寄放屋 3 | 寻宝猎人 4 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/zh/text_xy_60000_zh.txt: -------------------------------------------------------------------------------- 1 | 远处的人 2 | 饲育屋爷爷 3 | 寻宝猎人 4 | 温泉婆婆 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ja/text_bw2_60000_ja.txt: -------------------------------------------------------------------------------- 1 | とおくにいるひと 2 | そだてやふうふ 3 | トレジャーハンター -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_sm_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 멀리 있는 사람 2 | 맡기미집 3 | 트레져헌터 4 | 온천할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_xy_60000_ko.txt: -------------------------------------------------------------------------------- 1 | 멀리 있는 사람 2 | 키우미집 3 | 트레져헌터 4 | 온천할머니 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/zh/text_tradeao_zh.txt: -------------------------------------------------------------------------------- 1 | 马铃丸 2 | 贝儿 3 | 小桃桃 4 | 莫林 5 | 雪澎 6 | 小智仔 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_tradeao_ko.txt: -------------------------------------------------------------------------------- 1 | 감자군 2 | 베르베르 3 | 분홍이 4 | 모린 5 | 에이펀 6 | 스태틴 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/de/text_bw2_60000_de.txt: -------------------------------------------------------------------------------- 1 | Entfernte Person 2 | Betreuerpärchen 3 | Züchter -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_bw2_60000_en.txt: -------------------------------------------------------------------------------- 1 | Stranger 2 | Day-Care Couple 3 | PKMN Breeder -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ja/text_sm_60000_ja.txt: -------------------------------------------------------------------------------- 1 | とおくにいるひと 2 | あずかりやさん 3 | トレジャーハンター 4 | おんせんばあさん -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ja/text_tradeao_ja.txt: -------------------------------------------------------------------------------- 1 | ポテマル 2 | ベルベル 3 | モモちゃん 4 | モーリン 5 | ユキポン 6 | サトチン -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ja/text_xy_60000_ja.txt: -------------------------------------------------------------------------------- 1 | とおくにいるひと 2 | そだてやさん 3 | トレジャーハンター 4 | おんせんばあさん -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_b2w2_zh.txt: -------------------------------------------------------------------------------- 1 | 0077 连入 6:完成教程 2 | 0268 拉帝亚斯/拉帝欧斯 5:可对战,6:消失 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_bw2_60000_es.txt: -------------------------------------------------------------------------------- 1 | Persona lejana 2 | Pareja guardería 3 | Criapokémon -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_bw2_60000_it.txt: -------------------------------------------------------------------------------- 1 | Persona lontana 2 | Coppia Pensione 3 | AllevaPKMN -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_b2w2_ko.txt: -------------------------------------------------------------------------------- 1 | 0077 하일링크 6:튜토리얼 완료 2 | 0268 라티아스/라티오스 5:배틀 가능,6:사라짐 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_tradeao_en.txt: -------------------------------------------------------------------------------- 1 | Makit 2 | Skitit 3 | Coroso 4 | Darrell 5 | Elyssa 6 | Lane -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_tradeao_es.txt: -------------------------------------------------------------------------------- 1 | Makit 2 | Skitit 3 | Coroso 4 | Evelio 5 | Dalila 6 | Laila -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_bw2_60000_fr.txt: -------------------------------------------------------------------------------- 1 | Personne lointaine 2 | Couple de la Pension 3 | Éleveuse -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_tradeao_it.txt: -------------------------------------------------------------------------------- 1 | Maku 2 | Pucci 3 | Corsolina 4 | Marchetto 5 | Ele 6 | Simo -------------------------------------------------------------------------------- /PokeWalkerSimulator/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/de/text_tradeao_de.txt: -------------------------------------------------------------------------------- 1 | Makuhipsta 2 | Conec 3 | Coraso 4 | Maik 5 | Madina 6 | Liana -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_tradeao_fr.txt: -------------------------------------------------------------------------------- 1 | Edmond 2 | Minetou 3 | Rosie 4 | Allan 5 | Dorothée 6 | Marsantes -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_tradedppt_ko.txt: -------------------------------------------------------------------------------- 1 | 케이케이 2 | 조자리 3 | 고옹이 4 | 킹킹이 5 | 에이 6 | 신달 7 | 미나 8 | 마이스터 9 | -------------------------------------------------------------------------------- /PKHeX.WinForms/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/icon.ico -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/de/text_sm_60000_de.txt: -------------------------------------------------------------------------------- 1 | Ferne Person 2 | Hortleiterinnen 3 | Schatzsucher 4 | Dame der Heißen Quellen -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/de/text_xy_60000_de.txt: -------------------------------------------------------------------------------- 1 | Ferne Person 2 | Pensionsleiter 3 | Schatzsucher 4 | Dame der Heißen Quellen -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_sm_60000_es.txt: -------------------------------------------------------------------------------- 1 | Persona lejana 2 | Cuidados Pokémon 3 | Buscatesoros 4 | Anciana del Balneario -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_sm_60000_it.txt: -------------------------------------------------------------------------------- 1 | Persona lontana 2 | Ostello Pokémon 3 | Cercatesori 4 | Vecchina delle terme -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_xy_60000_it.txt: -------------------------------------------------------------------------------- 1 | Persona Lontana 2 | Pensione Pokémon 3 | Cercatesori 4 | Vecchina delle terme -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ja/text_tradedppt_ja.txt: -------------------------------------------------------------------------------- 1 | ケーケー 2 | ペッチャラ 3 | ドロりん 4 | ポッちゃん 5 | ハッシー 6 | ノブリン 7 | ミナッチ 8 | マイスター 9 | -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/pgf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/pgf.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wc4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wc4.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wc6.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wc6.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wc7.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wc7.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/de/text_tradedppt_de.txt: -------------------------------------------------------------------------------- 1 | Salla 2 | Plaupa 3 | Pollo 4 | Pador 5 | Hilary 6 | Norbert 7 | Mara 8 | Master -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_sm_60000_en.txt: -------------------------------------------------------------------------------- 1 | a stranger 2 | Nursery helpers 3 | a treasure hunter 4 | an old hot-springs visitor -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_tradedppt_en.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Hilary 6 | Norton 7 | Mindy 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_xy_60000_en.txt: -------------------------------------------------------------------------------- 1 | a stranger 2 | Day Care helpers 3 | a treasure hunter 4 | an old hot-springs visitor -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_tradedppt_es.txt: -------------------------------------------------------------------------------- 1 | Kazza 2 | Charap 3 | Gaspar 4 | Foppa 5 | Amanda 6 | Alfio 7 | Regla 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_xy_60000_es.txt: -------------------------------------------------------------------------------- 1 | Persona lejana 2 | Pareja de la Guardería 3 | Buscatesoros 4 | Anciana del Balneario -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_tradedppt_fr.txt: -------------------------------------------------------------------------------- 1 | Kazou 2 | Pijouk 3 | Trumi 4 | Bloupi 5 | Paula 6 | Pierre 7 | Marlène 8 | Meister -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_tradedppt_it.txt: -------------------------------------------------------------------------------- 1 | Keikei 2 | Charap 3 | Gaspar 4 | Mossy 5 | Hilary 6 | Norton 7 | Mindy 8 | Maestro -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/icon.ico -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_ao.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_ao.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_g3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_g3.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_g4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_g4.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_g5.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_g5.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_gg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_gg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_uu.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_uu.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/hmtm_g3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/hmtm_g3.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_ao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_ao -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_bw -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_c -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_dp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_dp -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_e -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_fr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_fr -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_gg -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_gs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_gs -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_lg -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_pt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_rb -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_rs -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_sm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_sm -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_uu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_uu -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_xy -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_y -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wb7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wb7full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wc6full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wc6full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/wc7full.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/wc7full.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/script/const_b2w2_en.txt: -------------------------------------------------------------------------------- 1 | 0077 Entralink 6:Finished Tutorial 2 | 0268 Latias/Latios 5:Battleable,6:Disappeared -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Storage/SAV4Ranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Saves/Storage/SAV4Ranch.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/icon.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/warn.png -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_c.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_c.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_gsc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_gsc.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/evos_rby.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/evos_rby.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_c.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_c.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_e.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_e.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_y.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_y.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_b2w2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_b2w2 -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/personal_hgss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/personal_hgss -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/trees_h_c.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/trees_h_c.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/tutors_g3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/tutors_g3.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/tutors_g4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/tutors_g4.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Saves/Blocks/BlockInfoNDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Saves/Blocks/BlockInfoNDS.cs -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/valid.png -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_ao.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_ao.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_bw.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_bw.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_dppt.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_dppt.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_gs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_gs.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_hgss.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_hgss.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_rs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_rs.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_sm.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_sm.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_uu.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_uu.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/eggmove_xy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/eggmove_xy.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_a.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_a.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_b.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_b.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_b2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_b2.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_d.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_d.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_e.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_e.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_fr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_fr.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_ge.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_ge.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_gp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_gp.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_hg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_hg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_lg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_lg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_mn.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_mn.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_o.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_o.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_p.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_p.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_pt.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_pt.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_r.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_r.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_s.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_s.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_sn.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_sn.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_ss.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_ss.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_um.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_um.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_us.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_us.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_w.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_w.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_w2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_w2.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_x.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_x.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_y.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_y.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_ao.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_ao.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_b2w2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_b2w2.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_bw.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_bw.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_dp.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_dp.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_fr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_fr.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_gg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_gg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_gs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_gs.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_hgss.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_hgss.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_lg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_lg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_pt.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_pt.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_rb.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_rb.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_rs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_rs.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_sm.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_sm.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_uu.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_uu.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/lvlmove_xy.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/lvlmove_xy.pkl -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Z.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/6th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/6th.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/leaf.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/team.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/vc.png -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/0_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/0_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/1_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/1_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/2_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/2_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/3_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/3_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/4_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/4_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/5_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/5_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/6_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/6_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/7_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/7_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/8_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/8_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/9_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/9_21.pk4 -------------------------------------------------------------------------------- /screenshots/PokeWalkerSimulator_Setup.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/screenshots/PokeWalkerSimulator_Setup.PNG -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_blue.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_blue.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_gold.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_gold.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_rb_f.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_rb_f.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_red.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_red.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_sm_60000_fr.txt: -------------------------------------------------------------------------------- 1 | Personne lointaine 2 | Responsable de la Garderie 3 | Chercheur de Trésors 4 | Dame des Eaux Thermales -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_xy_60000_fr.txt: -------------------------------------------------------------------------------- 1 | Personne lointaine 2 | Responsable de la Pension 3 | Chercheur de Trésors 4 | Dame des Eaux Thermales -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locale/sr_ID/sr_115.txt: -------------------------------------------------------------------------------- 1 | Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO 2 | 000,—,—,—,—,—,—,—,— 3 | 001,マリ,Mali,Mali,Mali,Mali,Malí,马里,말리, -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Key.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/bak.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/qr.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball1.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball2.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball3.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball4.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball5.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball6.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball7.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball8.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball9.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotDel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotDel.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotSet.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/swapBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/swapBox.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_1.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_2.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_3.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_4.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_5.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_6.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_7.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_8.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_9.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/alora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/alora.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/crown.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/locked.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party1.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party2.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party3.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party4.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party5.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/misc/party6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/misc/party6.png -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/10_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/10_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/11_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/11_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/12_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/12_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/13_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/13_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/14_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/14_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/15_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/15_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/16_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/16_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/17_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/17_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/18_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/18_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/19_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/19_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/20_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/20_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/21_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/21_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/22_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/22_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/23_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/23_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/24_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/24_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/25_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/25_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_00.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_00.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_01.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_01.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_10.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_10.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_11.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_11.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_20.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_20.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/PK4/26_21.pk4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/PK4/26_21.pk4 -------------------------------------------------------------------------------- /PokeWalkerSimulator/Resources/Route_sea2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PokeWalkerSimulator/Resources/Route_sea2.png -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_crystal.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_crystal.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_gold_h.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_gold_h.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_gsc_f.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_gsc_f.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_hb_hg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_hb_hg.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_hb_ss.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_hb_ss.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_mn_sos.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_mn_sos.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_silver.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_silver.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_sn_sos.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_sn_sos.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_um_sos.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_um_sos.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_us_sos.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_us_sos.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/byte/encounter_yellow.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/byte/encounter_yellow.pkl -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/en/text_Forms_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/en/text_Forms_en.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/es/text_Forms_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/es/text_Forms_es.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/fr/text_Forms_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/fr/text_Forms_fr.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/it/text_Forms_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/it/text_Forms_it.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/ko/text_Forms_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/ko/text_Forms_ko.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locale/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/locale/countries.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locale/languages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/locale/languages.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locale/regions3ds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/locale/regions3ds.txt -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/locale/sr_ID/sr_117.txt: -------------------------------------------------------------------------------- 1 | Subregion ID,JP,EN,FR,DE,IT,ES,ZH,KO 2 | 000,—,—,—,—,—,—,—,— 3 | 001,チャド,Chad,Tchad,Tschad,Ciad,Chad,乍得,차드, -------------------------------------------------------------------------------- /PKHeX.Core/Resources/text/zh/text_Forms_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.Core/Resources/text/zh/text_Forms_zh.txt -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Balls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Balls.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Battle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Battle.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Candy.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Free.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Items.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_Mail.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Bag/Bag_TMHM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Bag/Bag_TMHM.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/about.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/data.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/date.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/dump.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/exit.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/export.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/folder.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/gift.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/heart.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/import.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/load.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/main.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/open.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/other.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/redo.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/report.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/user.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/users.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/Program/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/Program/wand.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_1.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_2.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_3.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_4.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_5.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_6.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_7.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/badges/badge_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/badges/badge_8.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball10.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball11.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball12.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball13.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball14.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball15.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball16.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball17.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball18.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball19.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball20.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball21.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball22.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball23.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball24.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball25.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/ball/_ball26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/ball/_ball26.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotDrag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotDrag.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotHover.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotTrans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotTrans.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/box/slotView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/box/slotView.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_10.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_100.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_101.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_102.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_103.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_104.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_105.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_106.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_107.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_108.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_109.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_11.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_110.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_112.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_116.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_117.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_118.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_119.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_12.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_13.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_134.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_135.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_136.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_14.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_149.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_15.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_150.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_151.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_152.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_153.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_154.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_155.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_156.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_157.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_158.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_159.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_16.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_160.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_161.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_162.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_163.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_164.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_165.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_166.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_167.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_168.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_169.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_17.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_170.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_171.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_172.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_173.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_174.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_175.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_176.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_177.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_178.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_179.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_18.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_180.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_181.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_182.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_183.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_184.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_185.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_186.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_187.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_188.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_189.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_19.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_190.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_191.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_192.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_193.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_194.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_195.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_196.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_197.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_198.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_199.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_20.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_200.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_201.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_202.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_203.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_204.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_205.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_206.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_207.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_208.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_209.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_21.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_210.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_211.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_212.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_213.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_214.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_215.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_217.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_218.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_219.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_22.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_220.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_221.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_222.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_223.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_224.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_225.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_226.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_227.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_228.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_229.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_23.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_230.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_231.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_232.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_233.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_234.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_235.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_236.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_237.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_238.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_239.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_24.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_240.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_241.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_242.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_243.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_244.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_245.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_246.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_247.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_248.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_249.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_25.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_250.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_251.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_252.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_253.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_254.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_255.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_256.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_257.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_258.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_259.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_26.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_260.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_261.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_262.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_263.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_264.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_265.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_265.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_266.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_267.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_268.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_268.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_269.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_269.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_27.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_270.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_271.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_272.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_273.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_273.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_274.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_275.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_276.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_277.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_277.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_278.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_278.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_279.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_279.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_28.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_280.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_281.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_282.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_282.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_283.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_284.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_285.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_286.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_286.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_287.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_287.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_288.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_289.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_29.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_290.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_290.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_291.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_291.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_292.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_293.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_294.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_294.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_295.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_296.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_297.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_298.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_298.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_299.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_30.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_300.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_301.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_302.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_303.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_304.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_305.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_306.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_307.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_308.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_309.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_309.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_31.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_310.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_311.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_312.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_313.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_314.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_315.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_316.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_317.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_318.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_318.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_319.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_32.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_320.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_321.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_322.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_323.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_324.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_324.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_325.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_326.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_327.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_33.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_34.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_35.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_36.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_37.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_38.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_39.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_40.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_41.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_42.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_43.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_44.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_45.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_46.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_47.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_48.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_49.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_50.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_504.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_51.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_52.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_53.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_534.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_534.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_535.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_535.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_537.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_538.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_539.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_539.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_54.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_540.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_540.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_541.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_541.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_542.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_542.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_543.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_543.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_544.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_544.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_545.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_546.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_547.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_547.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_548.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_548.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_549.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_549.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_55.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_550.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_550.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_551.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_551.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_552.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_552.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_553.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_554.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_554.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_555.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_556.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_557.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_558.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_559.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_559.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_56.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_560.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_561.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_562.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_563.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_563.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_564.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_564.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_565.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_566.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_566.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_567.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_568.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_569.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_569.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_57.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_570.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_570.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_571.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_571.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_572.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_572.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_573.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_573.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_577.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_577.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_58.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_580.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_580.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_581.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_581.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_582.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_582.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_583.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_583.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_584.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_585.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_586.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_587.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_587.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_588.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_588.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_589.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_589.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_59.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_590.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_590.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_591.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_591.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_60.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_61.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_62.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_63.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_639.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_639.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_64.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_640.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_644.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_645.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_645.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_646.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_646.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_647.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_647.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_648.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_648.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_649.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_65.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_650.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_650.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_652.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_653.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_654.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_655.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_656.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_657.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_658.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_658.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_659.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_659.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_66.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_660.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_660.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_661.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_661.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_662.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_662.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_663.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_663.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_664.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_664.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_665.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_665.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_666.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_667.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_667.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_668.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_669.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_669.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_67.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_670.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_670.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_671.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_671.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_672.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_673.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_673.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_674.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_674.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_675.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_675.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_676.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_676.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_677.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_677.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_678.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_678.png -------------------------------------------------------------------------------- /PKHeX.WinForms/Resources/img/item/item_679.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aajaredc/PokeWalkerSimulator/HEAD/PKHeX.WinForms/Resources/img/item/item_679.png --------------------------------------------------------------------------------