summaryrefslogblamecommitdiff
path: root/world/map/db/item_db.conf
blob: 1a8a6e2c089b48bb965f56727996085a74e55304 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794
13795
13796
13797
13798
13799
13800
13801
13802
13803
13804
13805
13806
13807
13808
13809
13810
13811
13812
13813
13814
13815
13816
13817
13818
13819
13820
13821
13822
13823
13824
13825
13826
13827
13828
13829
13830
13831
13832
13833
13834
13835
13836
13837
13838
13839
13840
13841
13842
13843
13844
13845
13846
13847
13848
13849
13850
13851
13852
13853
13854
13855
13856
13857
13858
13859
13860
13861
13862
13863
13864
13865
13866
13867
13868
13869
13870
13871
13872
13873
13874
13875
13876
13877
13878
13879
13880
13881
13882
13883
13884
13885
13886
13887
13888
13889
13890
13891
13892
13893
13894
13895
13896
13897
13898
13899
13900
14115
14116
14117
14118
14119
14120
14121
14122
14123
14124
14125
14126
14127
14128
14129
14130
14131
14132
14133
14134
14135
14136
14137
14138
14139
14140
14141
14142
14143
14144
14145
14146
14147
14148
14149
14150
14151
14152
14153
14154
14155
14156
14157
14158
14159
14160
14161
14162
14163
14164
14165
14166
14167
14168
14169
14170
14171
14172
14173
14174
14175
14176
14177
14178
14179
14180
14181
14182
14183
14184
14185
14186
14187
14188
14189
14190
14191
14192
14193
14194
14195
14196
14197
14198
14199
14200
14201
14202
14203
14204
14205
14206
14207
14208
14209
14210
14211
14212
14213
14214
14215
14216
14217
14218
14219
14220
14221
14222
14223
14224
14225
14226
14227
14228
14229
14230
14231
14232
14233
14234
14235
14236
14237
14238
14239
14240
14241
14242
14243
14244
14245
14246
14247
14248
14249
14250
14251
14252
14253
14254
14255
14256
14257
14258
14259
14260
14261
14262
14263
14264
14265
14266
14267
14268
14269
14270
14271
14272
14273
14274
14275
14276
14277
14278
14279
14280
14281
14282
14283
14284
14285
14286
14287
14288
14289
14290
14291
14292
14293
14294
14295
14296
14297
14298
14299
14300
14301
14302
14303
14304
14305
14306
14307
14308
14309
14310
14311
14312
14313
14314
14315
14316
14317
14318
14319
14320
14321
14322
14323
14324
14325
14326
14327
14328
14329
14330
14331
14332
14333
14334
14335
14336
14337
14338
14339
14340
14341
14342
14343
14344
14345
14346
14347
14348
14349
14350
14351
14352
14353
14354
14355
14356
14357
14358
14359
14360
14361
14362
14363
14364
14365
14366
14367
14368
14369
14370
14371
14372
14373
14374
14375
14376
14377
14378
14379
14380
14381
14382
14383
14384
14385
14429
14430
14431
14432
14433
14434
14435
14436
14437
14438
14439
14440
14441
14442
14443
14444
14445
14446
14447
14448
14449
14450
14451
14452
14453
14454
14455
14456
14457
14458
14459
14460
14461
14462
14463
14464
14465
14466
14467
14468
14469
14470
14471
14472
14473
14474
14475
14476
14477
14478
14479
14480
14481
14482
14483
14484
14485
14486
14487
14488
14489
14490
14491
14492
14493
14494
14495
14496
14497
14498
14499
14500
14501
14502
14503
14504
14505
14506
14507
14508
14509
14510
14511
14512
14513
14514
14515
14516
14517
14518
14519
14520
14521
14522
14523
14524
14525
14526
14527
14528
14529
14530
14531
14532
14533
14534
14535
14536
14537
14538
14539
14540
14541
14542
14543
14544
14545
14546
14547
14548
14549
14550
14551
14552
14553
14554
14555
14556
14557
14558
14559
14560
14561
14562
14563
14564
14565
14566
14567
14568
14569
14570
14571
14572
14573
14574
14575
14576
14577
14578
14579
14580
14581
14582
14583
14584
14585
14586
14587
14588
14589
14590
14591
14592
14593
14594
14595
14596
14597
14598
14599
14600
14601
14602
14603
14604
14605
14606
14607
14608
14609
14610
14611
14612
14613
14614
14615
14616
14617
14618
14619
14620
14621
14622
14623
14624
14625
14626
14627
14628
14629
14630
14631
14632
14633
14634
14635
14636
14637
14638
14639
14640
14641
14642
14643
14644
14645
14646
14647
14648
14649
14650
14651
14652
14653
14654
14655
14656
14657
14658
14659
14660
14661
14662
14663
14664
14665
14666
14667
14668
14669
14670
14671
14672
14673
14674
14675
14676
14677
14678
14679
14680
14681
14682
14683
14684
14685
14686
14687
14688
14689
14690
14691
14692
14693
14694
14695
14696
14697
14698
14699
14700
14701
14702
14703
14704
14705
14706
14707
14708
14709
14710
14711
14712
14713
14714
14715
14716
14717
14718
14719
14720
14721
14722
14723
14724
14725
14726
14727
14728
14729
14730
14731
14732
14733
14734
14735
14736
14737
14738
14739
14740
14741
14742
14743
14744
14745
14746
14747
14748
14749
14750
14751
14752
14753
14754
14755
14756
14757
14758
14759
14760
14761
14762
14763
14764
14765
14766
14767
14768
14769
14770
14771
14772
14773
14774
14775
14776
14777
14778
14779
14780
14781
14782
14783
14784
14785
14786
14787
14788
14789
14790
14791
14792
14793
14794
14795
14796
14797
14798
14799
14800
14801
14802
14803
14804
14805
14806
14807
14808
14809
14810
14811
14812
14813
14814
14815
14816
14817
14818
14819
14820
14821
14822
14823
14824
14825
14826
14827
14828
14829
14830
14831
14832
14833
14834
14835
14836
14837
14838
14839
14840
14841
14842
14843
14844
14845
14846
14847
14848
14849
14850
14851
14852
14853
14854
14855
14856
14857
14858
14859
14860
14861
14862
14863
14864
14865
14866
14867
14868
14869
14870
14871
14872
14873
14874
14875
14876
14877
14878
14879
14880
14881
14882
14883
14884
14885
14886
14887
14888
14889
14890
14891
14892
14893
14894
14895
14896
14897
14898
14899
14900
14901
14902
14903
14904
14905
14906
14907
14908
14909
14910
14911
14912
14913
14914
14915
14916
14917
14918
14919
14920
14921
14922
14923
14924
14925
14926
14927
14928
14929
14930
14931
14932
14933
14934
14935
14936
14937
14938
14939
14940
14941
14942
14943
14944
14945
14946
14947
14948
14949
14950
14951
14952
14953
14954
14955
14956
14957
14958
14959
14960
14961
14962
14963
14964
14965
14966
14967
14968
14969
14970
14971
14972
14973
14974
14975
14976
14977
14978
14979
14980
14981
14982
14983
14984
14985
14986
14987
14988
14989
14990
14991
14992
14993
14994
14995
14996
14997
14998
14999
15000
15001
15002
15003
15004
15005
15006
15007
15008
15009
15010
15011
15012
15013
15014
15015
15016
15017
15018
15019
15020
15021
15022
15023
15024
15025
15026
15027
15028
15029
15030
15031
15032
15033
15034
15035
15036
15037
15038
15039
15040
15041
15042
15043
15044
15045
15046
15047
15048
15049
15050
15051
15052
15053
15054
15055
15056
15057
15058
15059
15060
15061
15062
15063
15064
15065
15066
15067
15068
15069
15070
15071
15072
15073
15074
15075
15076
15077
15078
15079
15080
15081
15082
15083
15084
15085
15086
15087
15088
15089
15090
15091
15092
15093
15094
15095
15096
15097
15098
15099
15100
15101
15102
15103
15104
15105
15106
15107
15108
15109
15110
15111
15112
15113
15114
15115
15116
15117
15118
15119
15120
15121
15122
15123
15124
15125
15126
15127
15128
15129
15130
15131
15132
15133
15134
15135
15136
15137
15138
15139
15140
15141
15142
15143
15144
15145
15146
15147
15148
15149
15150
15151
15152
15153
15154
15155
15156
15157
15158
15159
15160
15161
15162
15163
15164
15165
15166
15167
15168
15169
15170
15171
15172
15173
15174
15175
15176
15177
15178
15179
15180
15181
15182
15183
15184
15185
15186
15187
15188
15189
15190
15191
15192
15193
15194
15195
15196
15197
15198
15199
15200
15201
15202
15203
15204
15205
15206
15207
15208
15209
15210
15211
15212
15213
15214
15215
15216
15217
15218
15219
15220
15221
15222
15223
15224
15225
15226
15227
15228
15229
15230
15231
15232
15233
15234
15235
15236
15237
15238
15239
15240
15241
15242
15243
15244
15245
15246
15247
15248
15249
15250
15251
15252
15253
15254
15255
15256
15257
15258
15259
15260
15261
15262
15263
15264
15265
15266
15267
15268
15269
15270
15271
15272
15273
15274
15275
15276
15277
15278
15279
15280
15281
15282
15283
15284
15285
15286
15287
15288
15289
15290
15291
15292
15293
15294
15295
15296
15297
15298
15299
15300
15301
15302
15303
15304
15305
15306
15307
15308
15309
15310
15311
15312
15313
15314
15315
15316
15317
15318
15319
15320
15321
15322
15323
15324
15325
15326
15327
15328
15329
15330
15331
15332
15333
15334
15335
15336
15337
15338
15339
15340
15341
15342
15343
15344
15345
15346
15347
15348
15349
15350
15351
15352
15353
15354
15355
15356
15357
15358
15359
15360
15361
15362
15363
15364
15365
15366
15367
15368
15369
15370
15371
15372
15373
15374
15375
15376
15377
15378
15379
15380
15381
15382
15383
15384
15385
15386
15387
15388
15389
15390
15391
15392
15393
15394
15395
15396
15397
15398
15399
15400
15401
15402
15403
15404
15405
15406
15407










                                                                               
















































































































                                                                                                    











                                                                               
                
















                               
                




















                              



                                                   









                             
                
                
                












                                         


                                                       








                               

                    
                
                















                              
                
                
                












                                         


                                                       








                             


                    
                

















                                                      

                
                
                

















                                                      
                
                
                

















                                                      
                
                
                

















                                                      
                
                
                













                              
                   

                
                













                           
                   

                
                





                           


                                                             







                             

                   
                
                
















                                                      
                   

                
                








                                                      

                                     









                                 
                
                
                


















                                                      
                 
                
                















                                                      















                                                       
                






















                                                             











                             
                




                         
                            

                                                 




                                                      

                  
                                         

                                     
                                                              










                              
                
                

















                                                      
                
                
                







                                        
                              











                              
                



















                                
                



















                                                      
                



















                                                      
                



















                                                      
                
















                                                      
                    


                
                
                         



                     
                            
                  





                                            








                          

                    
                
                
















                                                      

                    
                
                










                                                      





                                
                    

                
                
                
                         

                   


                            






                                                             
                  


                                   
                                                             


          





                              

                    
                
                

















                                                      
                
                
                
















                                                      


                    
                
                

















                                                      

                
                
                




                                         
                            







                                

                   
               
                
                
                
























                                                                    
                
                









                                                             


                                                                    










                         
               
                
                









                                                            
                                             

















                                    

                                                   









                               
                
                
                


















                               
                
                
                















                                                             


                                             
                                        




                                                       








                              
                  

                
                








                                         



                                                         














                                



                                                     







                            
                   

                
                



                                         
                         

  





                              
                   

                
                










                                         
                         

  












                          



                                                   









                         
                
                
                












                                         


                                                       











                          
                
















                             
                






















                                   

                                                   















                             

































































                                                    










                                 
                








                         



                                                        


                
                              
                         





                         
                











                           



                                                         
























                                   
               





                        
                                             










                              
               




                        


                                             








                                            
               

                
                        


                       
                                             










                                           
               

                
                        


                       
                                             










                                         
               

                
                        


                       
                                             










                                         
               

                
                        


                       
                                             









                              
                   
               





                        
                                             













                                 




                                     
                                       


          




























                                              
















                                   
















                              





                                     
                  
















                                 
                 




                        
                                               









                                
                  















                              
                  















                                
                  















                                 
                  















                              
                  















                                 
                  















                               
                 












                                  
                  




                        



                                       




















                                  
                 









                              
                




                              
                 
                






                              
                                              
                                 

                                       


          
                




                                 
                 










                                                   
                                 

  
                




                                   
                  










                                                   
                                 








                          
                   
                




                        


                                              







                             
                   
                




                        


                                              







                               
                   
                 




                        


                                               








                                
               




                        


                                             








                                  
                







                                                   
                                              









                                  
                




                        


                                              








                                 
                 





                        
                                               








                                   
                  
               




                        


                                             







                                     
                  
               




                        


                                             







                                        
                  
               




                        


                                             







                                      
                  
               




                        


                                             







                                         
                  
               




                        


                                             







                                    
                  
               




                        


                                             







                                     
                  
               




                        


                                             







                                      
                  
               




                        


                                             







                                      
                  
               




                        


                                             







                                         
                  
               




                        


                                             








                                 
               




                        


                                             

  


















                                               




























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                          
                 


























































































































































































































































































                                      
                 










                               
                 










                                  
                 










                                   
                 










                                
                 










                                   
                 






























































                                         
                   










                                     
                   










                                   
                   










                                      
                   










                                         
                   










                                        
                   










































































































                                       
                  


































                                   
                  






















































































































                                       
                 










                                       
                 










                                      
                 










                                       
                 










                                    
                 










































































































































































                                         
                                 




























































































































































































































































































































































































                                         
                                 






























































































































































































































































































































































                                         
                                 












                              
                                 











                        
                                 























                                   
                                 











                               
                                 











                               
                                 











                               
                                 











                               
                                 











                               
                                 











                               
                                 











                                   
                                 






















































































































































































































































                                     
                                 









                                
                                 


















                                 






























                                            

































                                   







                                


                     


















                                 
                  


                        
  





















                                  











                               

















































































































                                     




















                                           







                                 
                   
                 





                           
                                               








                                
                   
                 





                           
                                               








                               
                   
                 




                           


                                               







                                 
                   
                 




                           


                                               








                                   
                  





                           
                                                









                                   
                  





                           
                                                









                                    
                  





                           
                                                








                                         
                  
                





                           
                                              
                              
                                       








                                         
                  
                





                           
                                              
                              
                                       








                                    
                  
                





                           
                                              








                                    
                  
                





                           
                                              








                                   
                  
                





                           
                                              
                              
                                       









                                 
                  





                           
                                                









                                       
                  





                           
                                                









                            
                




                           


                                              








                                 
                




                           


                                              







                             
                  






























                                  
                


                           



                       

                                                                
                               




                                              









                                        
                 





                           
                                               
                              
                                









                                
                 





                           
                                               










                                    
               




                           


                                             








                                  
                 





                           
                                               









                                  
                  





                           
                                                









                                
                





                           
                                              










                              
                




                           


                                             








                                 
                


                           







                                                               







                                              









                                
               




                           


                                             








                                          
                 




                           


                                               








                                          
                 




                           


                                               






















                                         
                 




                           


                                               






















                                         
                




                           


                                              








                                   
                




                           


                                              








                                     
                




                           


                                              








                                        
                




                           


                                              








                                      
                




                           


                                              








                                         
                




                           


                                              








                                    
                




                           


                                              








                                     
                




                           


                                              








                                      
                




                           


                                              








                                      
                




                           


                                              








                                         
                




                           


                                              







                                    
                   
                 




                           


                                               







                                      
                   
                 




                           


                                               







                                         
                   
                 




                           


                                               







                                       
                   
                 




                           


                                               







                                          
                   
                 




                           


                                               







                                     
                   
                 




                           


                                               







                                      
                   
                 




                           


                                               







                                       
                   
                 




                           


                                               







                                       
                   
                 




                           


                                               







                                          
                   
                 




                           


                                               







                                  
                   
                 




                           


                                               







                                    
                   
                 




                           


                                               







                                       
                   
                 




                           


                                               







                                     
                   
                 




                           


                                               







                                        
                   
                 




                           


                                               







                                   
                   
                 




                           


                                               







                                    
                   
                 




                           


                                               







                                     
                   
                 




                           


                                               







                                     
                   
                 




                           


                                               







                                        
                   
                 




                           


                                               







                                
                  












                                  
                  












                                     
                  












                                   
                  












                                      
                  












                                 
                  












                                  
                  












                                   
                  












                                   
                  












                                      
                  













                               
                




                           


                                              








                                 
                




                           


                                              








                                    
                




                           


                                              








                                  
                




                           


                                              








                                     
                




                           


                                              








                                
                




                           


                                              








                                 
                




                           


                                              








                                  
                




                           


                                              








                                  
                




                           


                                              








                                     
                




                           


                                              








                                    
                




                           


                                              








                                      
                




                           


                                              








                                         
                




                           


                                              








                                       
                




                           


                                              








                                          
                




                           


                                              








                                     
                




                           


                                              








                                      
                




                           


                                              








                                       
                




                           


                                              








                                       
                




                           


                                              








                                          
                




                           


                                              








                                   
                





                           
                                              










                                     
                





                           
                                              










                                        
                





                           
                                              










                                      
                





                           
                                              










                                         
                





                           
                                              










                                    
                





                           
                                              










                                     
                





                           
                                              










                                      
                





                           
                                              










                                      
                





                           
                                              










                                         
                





                           
                                              










                                 
                




                           


                                             








                                   
                




                           


                                             








                                      
                




                           


                                             








                                    
                




                           


                                             








                                       
                




                           


                                             








                                  
                




                           


                                             








                                   
                




                           


                                             








                                    
                




                           


                                             








                                    
                




                           


                                             








                                       
                




                           


                                             








                                     
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                  
                





                           
                                              










                                     
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                  
                





                           
                                              










                                      
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                         
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                   
                





                           
                                              










                                     
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                  
                





                           
                                              










                                    
                





                           
                                              










                                      
                





                           
                                              










                                         
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                     
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                 
                





                           
                                              










                                     
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                  
                





                           
                                              










                                      
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                         
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                   
                





                           
                                              










                                      
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                         
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                   
                





                           
                                              










                                      
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                         
                





                           
                                              










                                         
                





                           
                                              










                                            
                





                           
                                              










                                   
                





                           
                                              










                                     
                





                           
                                              










                                       
                





                           
                                              










                                          
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                      
                





                           
                                              










                                       
                





                           
                                              










                                        
                





                           
                                              










                                        
                





                           
                                              










                                           
                





                           
                                              










                                  
                





                           
                                              










                                   
               




                           


                                             








                                     
               




                           


                                             








                                        
               




                           


                                             








                                      
               




                           


                                             








                                         
               




                           


                                             








                                    
               




                           


                                             








                                     
               




                           


                                             








                                      
               




                           


                                             








                                      
               




                           


                                             








                                         
               




                           


                                             








                                
                 





                           
                                               
                              
                                  









                                
                 





                           
                                               

                              
                                   




                           







































































































































































































                                               





















































                                                









                                                          
                




                           


                                              






















                              
                




                           


                                              








                                     
                




                           


                                              








                                 
                 




                           


                                               








                                  
                




                           


                                              








                           
                




                           


                                              








                              
                




                           


                                              




































                                   
               




                           


                                             




































                             
               




                           


                                             








                             
               




                           


                                             




































                                    
               




                           


                                             






















                                  
                 





                           
                                               









                                  
                 





                           
                                               









                                   
                 





                           
                                               









                                  
                 





                           
                                               









                                   
                 





                           
                                               









                                   
                 





                           
                                               























                                  
               




                           


                                             









































                                  


                              








                            
               




                           


                                             








                              
               




                           


                                             








                                    
                





                           
                                              










                                       
                





                           
                                              










                                
                




                           


                                              






















                                   
               







                            


                                             








                              
               




                           


                                             








                              
                




                           


                                              







                                   
                   












                                    


                    




                           


                                                               
                                                                              
                                 








                                 

                   




                           



                                               







                              
                  












                                
                  













                                    
                 





                           
                                               
























                                  
                 





                           
                                               
























                                     
                 





                           
                                               









                                   
               




                           


                                             








                                 
                 





                           
                                               










                              
                




                           


                                              








                                
               




                           


                                             








                               
               




                           


                                             






















                               
                 


                           








                                                               
                                               


















                                         


                       


                               











                                    


                       


                               











                                      


                       


                               











                                     


                       


                               











                                      


                       


                               











                                    


                       


                               








                                  
                








                            





                                              























                                  
               




                           


                                             








                               
               




                           


                                             








                                 
               




                           


                                             








                                
               




                           


                                             








                                  
               




                           


                                             








                                  
               




                           


                                             








                                
               




                           


                                             






















                                
                




                           


                                              








                                  
                 




                           


                                               








                               
               




                           


                                             








                                  
               




                           


                                             

























                              
                




                           


                                              








                              
               




                           


                                             






















                                     
               




                           


                                             








                              
               




                           


                                             






















                               
               





                           
                                             










                              
                





                           
                                              












































                                                                             
               




                           


                                             








                                
                




                           


                                              








                                 
               




                           


                                             








                               
               


                           


                        


                                             











                                



























































                                   

               




                           

                                             























                                 
                




                           


                                              








                                   
                




                           


                                              








                                      
                




                           


                                              








                                    
                




                           


                                              








                                       
                




                           


                                              








                                  
                




                           


                                              








                                   
                




                           


                                              








                                    
                




                           


                                              








                                    
                




                           


                                              








                                       
                




                           


                                              




















































































































































                                            
               


                           


                        


                                             








                                    
               


                           


                        


                                             








                                       
               


                           


                        


                                             








                                     
               


                           


                        


                                             








                                        
               


                           


                        


                                             








                                   
               


                           


                        


                                             








                                    
               


                           


                        


                                             








                                     
               


                           


                        


                                             








                                     
               


                           


                        


                                             








                                        
               


                           


                        


                                             








                                 
               


                           



                        
                                             










                                   
               


                           



                        
                                             










                                      
               


                           



                        
                                             










                                    
               


                           



                        
                                             










                                       
               


                           



                        
                                             










                                  
               


                           



                        
                                             










                                   
               


                           



                        
                                             










                                    
               


                           



                        
                                             










                                    
               


                           



                        
                                             










                                       
               


                           



                        
                                             










                                 
               




                           


                                             








                                   
               




                           


                                             








                                      
               




                           


                                             








                                    
               




                           


                                             








                                       
               




                           


                                             








                                  
               




                           


                                             








                                   
               





                           
                                             









                                    
               




                           


                                             








                                    
               




                           


                                             








                                       
               




                           


                                             








                                      
               




                           


                                             








                                        
               




                           


                                             








                                           
               




                           


                                             








                                         
               




                           


                                             








                                            
               




                           


                                             








                                       
               




                           


                                             








                                        
               




                           


                                             








                                         
               




                           


                                             








                                         
               




                           


                                             








                                            
               




                           


                                             


















































































































































































                                   
                





                           
                                              










                                    
                





                           
                                              










                                     
                





                           
                                              










                                     
                





                           
                                              










                                       
                





                           
                                              










                                 
                 





                           
                                               
                              
                               









                             
                 





                           
                                               









                              
               


                           



                        
                                             










                              
               




                           


                                             















                              

                                    









                           
                 





                           
                                               









                            
               




                           


                                             








                            
               




                           


                                             














                             
                                     
                                       
                                             















                                   
                                                         
                                   


                                             









                               
                





                           


                                                 









                                   

               




                           

                                             












                           




                              

                                    









                             
               




                           


                                             








                                  
               





                           
                                             























                                  
                




                           


                                              








                                  
                 





                           
                                               
                               

                              









                              
               




                           


                                             








                             
               




                           


                                             








                                 
                




                           


                                              















                                        
                                                     
          
                                 




















































































































































































































































































































                                          
                





                           
                                              






































                                   
              








                              
                





                                 
                













                                                      
                                              














                                  


                              










































                               


















                                      





















































                                               














































































































































































































































































                                          
                               






















                                          
                
                
                 














                                         
                 


















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                  

                                                    



                

                                    










































































































































































































                                           
                               






























                                         
                             



                                                                                                     














                              

                                                                                                         


































                                          
                






                                   




                                                                 


          
                






                                 




                                                                 


          
                






                                  




                                                                  


          
                






                                




                                                                


          
                






                                  




                                                               




















                                     

                                               
          
                                 
















                                          












                             
                                                                 







                                                                          































                                                                 













                                           









                                 
                


                           


                       


                                              








                                
                




                           


                                              








                                
                


                           


                       


                                              








                               
                





                           
                                              









                                   
                


                           


                       


                                              








                                  
                







                                                      
                                              









                                  
                






                              

                                              









                              
                


                           


                       


                                              








                                 
                 




                           


                                               








                                    
                






                              
                                              









                                 
                


                           


                       


                                              











                              











                                   
                


                           


                        


                                              








                                     
                


                           


                        


                                              








                                        
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                    
                


                           


                        


                                              








                                     
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                    
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                          
                


                           


                        


                                              








                                     
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                          
                


                           


                        


                                              








                                 
                


                           


                        


                                              








                                   
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                    
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                  
                


                           


                        


                                              








                                   
                


                           


                        


                                              








                                    
                


                           


                        


                                              








                                    
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                      
                


                           


                        


                                              








                                        
                


                           


                        


                                              








                                           
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                            
                


                           


                        


                                              








                                       
                


                           


                        


                                              








                                        
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                         
                


                           


                        


                                              








                                            
                


                           


                        


                                              








                                
                 





                          
                                               









                                  
                 





                          
                                               









                                 
                 




                          


                                               








                                 
                 




                          


                                               








                                   
                







                                                     
                                              









                                   
                 





                          
                                               























                                    
                 




                          


                                               








                                      
                 




                          


                                               








                                         
                 




                          


                                               








                                       
                 




                          


                                               








                                          
                 




                          


                                               








                                     
                 




                          


                                               








                                      
                 




                          


                                               








                                       
                 




                          


                                               








                                       
                 




                          


                                               








                                          
                 




                          


                                               










                                                        
               


                         


                       


                                             








                                
                  





                         
                                                









                                 
                 





                         
                                               









                                  
                 





                         
                                               









                                   
                  





                         
                                                
          
                                 








                                 

                  




                         
                                                
          
























                                     
                                 

  
//=========================================================================
//= Items Database
//=========================================================================

item_db: (
//  Items Database
//
/******************************************************************************
 ************* Entry structure ************************************************
 ******************************************************************************
{
    // =================== Mandatory fields ===============================
    Id: ID						(int)
    AegisName: "Aegis_Name"	   (string)
    Name: "Item Name"			 (string)
    // =================== Optional fields ================================
    Type: Item Type			   (string, defaults to "IT_ETC")
    Buy: Buy Price				(int, defaults to Sell * 2)
    Sell: Sell Price			  (int, defaults to Buy / 2)
    Weight: Item Weight		   (int, defaults to 0)
    Atk: Attack				   (int, defaults to 0)
    Matk: Magical Attack		  (int, defaults to 0, ignored in pre-re)
    Def: Defense				  (int, defaults to 0)
    Range: Attack Range		   (int, defaults to 0)
    MinRange: Minimal Attack Range (int, defaults to 0)
    Slots: Slots				  (int, defaults to 0)
    Job: Job mask				 (int, defaults to all jobs = 0xFFFFFFFF)
    Upper: Upper mask			 (bitmask array, string or int, defaults to "ITEMUPPER_ALL")
    Gender: Gender				(string, defaults to "SEX_ANY")
    Loc: Equip location		   (bitmask array, string or int, required value for equipment)
    WeaponLv: Weapon Level		(int, defaults to 0)
    EquipLv: Equip required level (int, defaults to 0)
    EquipLv: [min, max]		   (alternative syntax with min / max level)
    Refine: Refineable			(boolean, defaults to true)
    DisableOptions: true/false	(boolean, defaults to false !!for equipments only!!) [Smokexyz]
    Subtype: Item Subtype		 (int, defaults to 0)
            W_FIST,	  ///< Bare hands
            W_DAGGER,	//1
            W_1HSWORD,   //2
            W_2HSWORD,   //3
            W_1HSPEAR,   //4
            W_2HSPEAR,   //5
            W_1HAXE,	 //6
            W_2HAXE,	 //7
            W_MACE,	  //8
            W_2HMACE,	//9
            W_STAFF,	 //10
            W_BOW,	   //11
            W_KNUCKLE,   //12
            W_MUSICAL,   //13
            W_WHIP,	  //14
            W_BOOK,	  //15
            W_KATAR,	 //16
            W_REVOLVER,  //17
            W_RIFLE,	 //18
            W_GATLING,   //19
            W_SHOTGUN,   //20
            W_GRENADE,   //21
            W_HUUMA,	 //22
            W_2HSTAFF,   //23
    ViewSprite: Sprite view ID	(int, defaults to 0)
    BindOnEquip: true/false	   (boolean, defaults to false)
    ForceSerial: true/false	   (boolean, defaults to false)
    BuyingStore: true/false	   (boolean, defaults to false)
    Delay: Delay to use item	  (int, defaults to 0)
    FloorLifeTime: Delay to remove item from ground (int, default flooritem_lifetime)
    KeepAfterUse: true/false	  (boolean, defaults to false)
    DropAnnounce: true/false	  (boolean, defaults to false)
    AllowPickup: true/false	   (boolean, defaults to true)
    Charm: true/false			 (boolean, defaults to false)
    MaxFloorOffset: [x, y]		(int, defaults to 8)
    MaxFloorOffset: offset		(int, defaults to 8)
    Identified: true/false		(boolean, default to true)
    RequiredStr: required strength (int, default to 0)
    RequiredAgi: required agility  (int, default to 0)
    RequiredVit: required vitality (int, default to 0)
    RequiredInt: required intellect (int, default to 0)
    RequiredDex: required dexterity (int, default to 0)
    RequiredLuk: required luck	 (int, default to 0)
    RequiredMaxHp: required max hp (int, default to 0)
    RequiredMaxSp: required max sp (int, default to 0)
    RequiredAtk: required attack   (int, default to 0)
    RequiredMAtkMin: required minimal magic attack (int, default to 0)
    RequiredMAtkMax: required maximum magic attack (int, default to 0)
    RequiredDef: required defence  (int, default to 0)
    RequiredMDef: required magic defence (int, default to 0)
    RequiredSkill: required skill (int, default to 0)
    UseEffect: effect if use/equip item success (int, default to -1)
    UseFailEffect: effect if use/equip item failed (int, default to -1)
    UnequipEffect: effect if unequip item success (int, default to -1)
    UnequipFailEffect: effect if unequip item failed (int, default to -1)
    Trade: {					  (defaults to no restrictions)
        override: GroupID			 (int, defaults to 100)
        nodrop: true/false			(boolean, defaults to false)
        notrade: true/false		   (boolean, defaults to false)
        partneroverride: true/false   (boolean, defaults to false)
        noselltonpc: true/false	   (boolean, defaults to false)
        nocart: true/false			(boolean, defaults to false)
        nostorage: true/false		 (boolean, defaults to false)
        nogstorage: true/false		(boolean, defaults to false)
        nomail: true/false			(boolean, defaults to false)
        noauction: true/false		 (boolean, defaults to false)
    }
    Nouse: {					  (defaults to no restrictions)
        override: GroupID			 (int, defaults to 100)
        sitting: true/false		   (boolean, defaults to false)
    }
    Stack: [amount, type]		 (int, defaults to 0)
    Sprite: SpriteID			  (int, defaults to 0)
    Script: <"
        Script
        (it can be multi-line)
    ">
    OnEquipScript: <" OnEquip Script (can also be multi-line) ">
    OnUnequipScript: <" OnUnequip Script (can also be multi-line) ">
    OnDropScript: <" OnDrop Script (can also be multi-line) ">
    OnTakeScript: <" OnTake Script (can also be multi-line) ">
    OnInsertCardScript: <" OnInsert card Script (can also be multi-line) ">
    AllowCards: {
        idNUM: amount		 (NUM is id number, amount is amount)
    }
    AllowAmmo: {
        idNUM: something	  (NUM is id number)
    }
},
******************************************************************************/
{
	Id: 521
	AegisName: "Dagger"
	Name: "Dagger"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 200
	Atk: 15
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
},
{
	Id: 522
	AegisName: "SharpKnife"
	Name: "SharpKnife"
	Type: "IT_WEAPON"
	Buy: 100
	Sell: 50
	Weight: 150
	Atk: 10
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
},
{
	Id: 529
	AegisName: "IronArrow"
	Name: "IronArrow"
	Type: "IT_AMMO"
	Buy: 4
	Sell: 2
	Weight: 1
	Atk: 40
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 529
	Subtype: "A_ARROW"
	Script: <"
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 530
	AegisName: "ShortBow"
	Name: "ShortBow"
	Type: "IT_WEAPON"
	Buy: 2500
	Sell: 1000
	Weight: 600
	Atk: 50
	Matk: -5
	Range: 5
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 4
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	Script: <"
		bonus bMatkRate, -5; // @EVOL2
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 536
	AegisName: "ShortSword"
	Name: "ShortSword"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1200
	Atk: 110
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
},
{
	Id: 545
	AegisName: "ForestBow"
	Name: "ForestBow"
	Type: "IT_WEAPON"
	Buy: 20000
	Sell: 5000
	Weight: 1200
	Atk: 70
	Matk: -7
	Range: 5
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	Script: <"
		bonus bMatkRate, -7; // @EVOL2
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 547
	AegisName: "Bardiche"
	Name: "Bardiche"
	Type: "IT_WEAPON"
	Buy: 20
	Sell: 10
	Weight: 1200
	Atk: 200
	Range: 2
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSPEAR"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 548
	AegisName: "Halberd"
	Name: "Halberd"
	Type: "IT_WEAPON"
	Buy: 20
	Sell: 10
	Weight: 1400
	Atk: 250
	Def: 10
	Range: 2
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 2
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_2HSPEAR"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 549
	AegisName: "Axe"
	Name: "Axe"
	Type: "IT_WEAPON"
	Buy: 20
	Sell: 10
	Weight: 1200
	Atk: 120
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HAXE"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 550
	AegisName: "BlacksmithsAxe"
	Name: "BlacksmithsAxe"
	Type: "IT_WEAPON"
	Buy: 20
	Sell: 10
	Weight: 1200
	Atk: 120
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HAXE"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 561
	AegisName: "Sabre"
	Name: "Sabre"
	Type: "IT_WEAPON"
	Buy: 10000
	Sell: 5000
	Weight: 300
	Atk: 120
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
},
{
	Id: 570
	AegisName: "BoneKnife"
	Name: "BoneKnife"
	Type: "IT_WEAPON"
	Buy: 10000
	Sell: 6000
	Weight: 250
	Atk: 115
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
},
{
	Id: 571
	AegisName: "Setzer"
	Name: "Setzer"
	Type: "IT_WEAPON"
	Buy: 20000
	Sell: 8000
	Weight: 500
	Atk: 100
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
	Script: <"
		//bonus bBaseWeaponDelayAdjust, -25; // @TMWA
	">
},
{
	Id: 572
	AegisName: "Scimitar"
	Name: "Scimitar"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 700
	Atk: 120
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 573
	AegisName: "Falchion"
	Name: "Falchion"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 900
	Atk: 270
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
		bonus bDoubleAddRate, 40;
		bonus bHit, -25;
		bonus bCritical, -25;
	">
},
{
	Id: 574
	AegisName: "ScorpionKing"
	Name: "Scorpion King"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 600
	Atk: 120
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSPEAR"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 575
	AegisName: "DesertBow"
	Name: "DesertBow"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1200
	Atk: 85
	Matk: -10
	Range: 7
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 609
	AegisName: "ImperialBow"
	Name: "Imperial Bow"
	Type: "IT_WEAPON"
	Buy: 101000
	Sell: 40000
	Weight: 900
	Atk: 110
	Matk: -9
	Range: 6
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 90
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	OnEquipScript: <"
		callfunc "RequireStat", bDex, 80, EQI_HAND_R;
	">
	Script: <"
		bonus bMatkRate, -9; // @EVOL2
		bonus2 bHPDrainRate, 100, 4;
		bonus bCriticalDef, 10;
		bonus bFlee, 10;
		bonus bAspdRate, 10;
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 576
	AegisName: "Beheader"
	Name: "Beheader"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 2000
	Atk: 999
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	OnEquipScript: <"
		callfunc "NoBowItem", EQI_HAND_R;
		if (readparam(bInt) > 1) // @EVOL2
			unequip(EQI_HAND_R); // @EVOL2
		//set @bStat, Int; // @TMWA
		//set @maxbStatVal, 1; // @TMWA
		//callfunc "RequireMaxStat"; // @TMWA
	">
	Script: <"
		bonus bDoubleAddRate, 50;
		bonus bHit, -20;
		bonus bCritical, -25;
		//bonus bBaseWeaponDelayAdjust, 1150; // @TMWA
	">
},
{
	Id: 577
	AegisName: "BoneDarts"
	Name: "BoneDarts"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 300
	Atk: 100
	Range: 3
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_HUUMA"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 578
	AegisName: "SandCutter"
	Name: "SandCutter"
	Type: "IT_WEAPON"
	Buy: 30000
	Sell: 15000
	Weight: 1500
	Atk: 160
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 2
	EquipLv: 80
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		bonus bDoubleAddRate, 5;
		bonus bHit, 3;
	">
},
{
	Id: 579
	AegisName: "RockKnife"
	Name: "RockKnife"
	Type: "IT_WEAPON"
	Buy: 15000
	Sell: 7500
	Weight: 500
	Atk: 110
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
	Script: <"
		bonus bVit, 3;
	">
},
{
	Id: 580
	AegisName: "StaffOfLife"
	Name: "StaffOfLife"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1500
	Atk: 100
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_STAFF"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 581
	AegisName: "CrescentRod"
	Name: "CrescentRod"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1500
	Atk: 100
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_STAFF"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 582
	AegisName: "StaffOfFire"
	Name: "StaffOfFire"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1500
	Atk: 100
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_STAFF"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 583
	AegisName: "StaffOfIce"
	Name: "StaffOfIce"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1500
	Atk: 100
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_STAFF"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 584
	AegisName: "Jackal"
	Name: "Jackal"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1500
	Def: 5
	Atk: 150
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		bonus bMaxHP, 50;
		bonus2 bHPDrainRate, 100, 5;
		bonus bCriticalDef, 2;
		bonus bStr, 1;
		bonus bAspdRate, 1;
		bonus bHit, 5;
	">
},
{
	Id: 587
	AegisName: "Sword"
	Name: "Sword"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 1500
	Atk: 140
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 588
	AegisName: "BastardSword"
	Name: "BastardSword"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 1500
	Atk: 150
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 590
	AegisName: "DragonSword"
	Name: "Dragon Sword"
	Type: "IT_WEAPON"
	Buy: 8000
	Sell: 4000
	Weight: 1050
	Atk: 171
	Def: 0
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 2
	EquipLv: 99
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	OnEquipScript: <"
		callfunc "RequireStat", bStr, 50, EQI_HAND_R;
		callfunc "RequireStat", bAgi, 50, EQI_HAND_R;
		callfunc "RequireStat", bVit, 50, EQI_HAND_R;
		callfunc "RequireStat", bDex, 50, EQI_HAND_R;
		callfunc "RequireStat", bLuk, 50, EQI_HAND_R;
	">
	Script: <"
		bonus bStr, 5;
		bonus bAspdRate, 2;
		bonus bHit, 5;
		//bonus bBaseWeaponDelayAdjust, -25; // @TMWA
	">
},
{
	Id: 591
	AegisName: "LongSword"
	Name: "LongSword"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 1300
	Atk: 150
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 594
	AegisName: "Spear"
	Name: "Spear"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 200
	Atk: 110
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSPEAR"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 596
	AegisName: "Pike"
	Name: "Pike"
	Type: "IT_WEAPON"
	Buy: 20
	Sell: 10
	Weight: 3000
	Def: 8
	Atk: 170
	Range: 2
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 2
	EquipLv: 0
	Refine: false
	ViewSprite: 1
	Subtype: "W_2HSPEAR"
	Script: <"
		callfunc "UnreleasedItem", EQI_HAND_R;
	">
},
{
	Id: 623
	AegisName: "Scythe"
	Name: "Scythe"
	Type: "IT_WEAPON"
	Buy: 100
	Sell: 50
	Weight: 1200
	Def: 5
	Atk: 120
	Range: 2
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 2
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_2HSTAFF"
},
{
	Id: 758
	AegisName: "WoodenStaff"
	Name: "WoodenStaff"
	Type: "IT_WEAPON"
	Buy: 4000
	Sell: 2000
	Weight: 800
	Def: 3
	Atk: 50
	Matk: 10
	Range: 2
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_2HSTAFF"
	OnEquipScript: <"
		callfunc "RequireStat", bInt, 60, EQI_HAND_R;
	">
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		if (getskilllv(SKILL_CONFRINGO)) // @EVOL2
			addtoskill(SKILL_CONFRINGO, 1, 2); // @EVOL2
	">
},
{
	Id: 1170
	AegisName: "SweetTooth"
	Name: "Sweet Tooth"
	Type: "IT_WEAPON"
	Buy: 4000
	Sell: 2000
	Weight: 1000
	Atk: 50
	Matk: 15
	Range: 2
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_2HSTAFF"
	OnEquipScript: <"
		callfunc "RequireStat", bInt, 60, EQI_HAND_R;
	">
	Script: <"
		bonus bMatkRate, 15; // @EVOL2
		if (getskilllv(SKILL_CONFRINGO)) // @EVOL2
			addtoskill(SKILL_CONFRINGO, 1, 2); // @EVOL2
	">
},
{
	Id: 1171
	AegisName: "Wand"
	Name: "Wand"
	Type: "IT_WEAPON"
	Buy: 400
	Sell: 200
	Weight: 100
	Atk: 1
	Matk: 5
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_STAFF"
	OnEquipScript: <"
		callfunc "RequireStat", bInt, 5, EQI_HAND_R;
	">
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 762
	AegisName: "TerraniteArrow"
	Name: "TerraniteArrow"
	Type: "IT_AMMO"
	Buy: 80
	Sell: 20
	Weight: 1
	Atk: 50
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 762
	Subtype: "A_ARROW"
	Script: <"
		bonus bCritical, 20;
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 867
	AegisName: "IceGladius"
	Name: "IceGladius"
	Type: "IT_WEAPON"
	Buy: 2000
	Sell: 1000
	Weight: 1000
	Atk: 130
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
	Script: <"
		bonus bLuk, 1;
	">
},
{
	Id: 878
	AegisName: "BansheeBow"
	Name: "BansheeBow"
	Type: "IT_WEAPON"
	Buy: 101000
	Sell: 40000
	Weight: 900
	Atk: 140
	Matk: -9
	Range: 6
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 90
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	OnEquipScript: <"
		callfunc "RequireStat", bDex, 80, EQI_HAND_R;
	">
	Script: <"
		bonus2 bHPDrainRate, 100, -2;
		bonus bAspdRate, 20;
		bonus bMaxHP, -150;
		bonus bSpeedAddRate, 10;
		bonus bDefRate, -40;
		bonus bDef2Rate, -35;
		bonus bMatkRate, -9; // @EVOL2
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 903
	AegisName: "SlingShot"
	Name: "SlingShot"
	Type: "IT_WEAPON"
	Buy: 500
	Sell: 50
	Weight: 50
	Atk: 5
	Range: 4
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id904: 1
	}
	Script: <"
		//set @LauncherType, AMMO_SLING; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 904
	AegisName: "SlingBullet"
	Name: "SlingBullet"
	Type: "IT_AMMO"
	Buy: 1
	Sell: 0
	Weight: 1
	Atk: 3
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 904
	Subtype: "A_ARROW"
	Script: <"
		//set @AmmoType, AMMO_SLING; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 906
	AegisName: "KidBook"
	Name: "KidBook"
	Type: "IT_WEAPON"
	Buy: 10000
	Sell: 5000
	Weight: 350
	Atk: 1
	Range: 3
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	Subtype: "W_BOOK"
},
{
	Id: 907
	AegisName: "FloydBook"
	Name: "FloydBook"
	Type: "IT_WEAPON"
	Buy: 10000
	Sell: 5000
	Weight: 350
	Atk: 1
	Range: 3
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 135
	Refine: false
	Trade: {
		nodrop: true
		notrade: true
		noselltonpc: true
		nomail: true
		noauction: true
	}
	Subtype: "W_BOOK"
},
{
	Id: 1199
	AegisName: "Arrow"
	Name: "Arrow"
	Type: "IT_AMMO"
	Buy: 1
	Sell: 0
	Weight: 1
	Atk: 20
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 1199
	Subtype: "A_ARROW"
	Script: <"
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 1200
	AegisName: "Bow"
	Name: "Bow"
	Type: "IT_WEAPON"
	Buy: 1000
	Sell: 500
	Weight: 20
	Atk: 20
	Matk: -2
	Range: 5
	Slots: 1
	Loc: ["EQP_HAND_L", "EQP_HAND_R"]
	WeaponLv: 1
	EquipLv: 4
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id529: 1
		Id762: 1
		Id1199: 1
		Id1282: 1
	}
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
		//set @LauncherType, AMMO_BOW; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 1201
	AegisName: "Knife"
	Name: "Knife"
	Type: "IT_WEAPON"
	Buy: 50
	Sell: 25
	Weight: 120
	Atk: 5
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_DAGGER"
},
{
	Id: 1215
	AegisName: "ToySabre"
	Name: "ToySabre"
	Type: "IT_WEAPON"
	Buy: 2000000
	Sell: 25
	Weight: 1
	Atk: 1
	Range: 1
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_1HSWORD"
},
{
	Id: 1282
	AegisName: "BoneArrows"
	Name: "BoneArrows"
	Type: "IT_AMMO"
	Buy: 50
	Sell: 20
	Weight: 0
	Atk: 55
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 1282
	Subtype: "A_ARROW"
	Script: <"
		bonus bCritical, 1;
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 5260
	AegisName: "Snowball"
	Name: "Snowball"
	Type: "IT_AMMO"
	Buy: 1
	Sell: 0
	Weight: 1
	Atk: 20
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 5260
	Subtype: "A_SHELL"
	Script: <"
		//set @AmmoType, AMMO_XMAS; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 5289
	AegisName: "ArmorBreaker"
	Name: "Armor Breaker Arrow"
	Type: "IT_AMMO"
	Buy: 90
	Sell: 40
	Weight: 2
	Atk: -120
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 5289
	Subtype: "A_ARROW"
	Script: <"
		bonus bCritical, 75;
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 5290
	AegisName: "SilverArrow"
	Name: "Silver Arrow"
	Type: "IT_AMMO"
	Buy: 60
	Sell: 30
	Weight: 1
	Atk: 65
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 5290
	Subtype: "A_ARROW"
	Script: <"
		bonus bCritical, 1;
		bonus bAtkRange, 2;
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 5291
	AegisName: "ThornArrow"
	Name: "Thorn Arrow"
	Type: "IT_AMMO"
	Buy: 90
	Sell: 40
	Weight: 1
	Atk: 65
	Slots: 0
	Loc: "EQP_AMMO"
	Refine: false
	ViewSprite: 5291
	Subtype: "A_ARROW"
	Script: <"
		bonus bCritical, 10;
		bonus bHit, 25;
		//set @AmmoType, AMMO_BOW; // @TMWA
		//callfunc "CheckAmmo"; // @TMWA
	">
},
{
	Id: 5261
	AegisName: "SnowLauncher"
	Name: "SnowLauncher"
	Type: "IT_WEAPON"
	Buy: 500
	Sell: 50
	Weight: 10
	Atk: 20
	Range: 3
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 1
	Subtype: "W_BOW"
	AllowAmmo: {
		Id5260: 1
	}
	Script: <"
		//set @LauncherType, AMMO_XMAS; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},
{
	Id: 5284
	AegisName: "Flintlock"
	Name: "Flintlock"
	Type: "IT_WEAPON"
	Buy: 150000
	Sell: 500
	Weight: 3000
	Atk: 120
	Range: 5
	Slots: 1
	Loc: "EQP_HAND_R"
	WeaponLv: 1
	EquipLv: 1
	Refine: false
	ViewSprite: 5284
	Subtype: "W_BOW"
	AllowAmmo: {
		Id904: 1
	}
	Nouse: {
		override: 1
	}
	Script: <"
		//set @LauncherType, AMMO_SLING; // @TMWA
		//callfunc "CheckLauncher"; // @TMWA
	">
},

/* Rings & Accessories */
{
	Id: 702
	AegisName: "WeddingRing"
	Name: "WeddingRing"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 702
},
{
	Id: 742
	AegisName: "FourLeafClover"
	Name: "FourLeafClover"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 1
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_L"
	Refine: false
	ViewSprite: 742
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bLuk, 1;
	">
},
{
	Id: 749
	AegisName: "Towel"
	Name: "Towel"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 250
	Weight: 50
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_L"
	Refine: false
	ViewSprite: 749
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 829
	AegisName: "CrozeniteFourLeafAmulet"
	Name: "CrozeniteFourLeafAmulet"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 1000
	Weight: 10
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 829
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bLuk, 1;
	">
},
{
	Id: 830
	AegisName: "BromenalFourLeafAmulet"
	Name: "BromenalFourLeafAmulet"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 2000
	Weight: 10
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 830
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bLuk, 2;
	">
},
{
	Id: 831
	AegisName: "SilverFourLeafAmulet"
	Name: "SilverFourLeafAmulet"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 10
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 831
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bLuk, 3;
	">
},
{
	Id: 832
	AegisName: "GoldenFourLeafAmulet"
	Name: "GoldenFourLeafAmulet"
	Type: "IT_ARMOR"
	Buy: 40000
	Sell: 4000
	Weight: 10
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 832
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bLuk, 4;
	">
},
{
	Id: 865
	AegisName: "Grimoire"
	Name: "Grimoire"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 222
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_L"
	Refine: false
	ViewSprite: 865
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bMaxSP, 30;
	">
},
{
	Id: 879
	AegisName: "HeartOfIsis"
	Name: "HeartOfIsis"
	Type: "IT_ARMOR"
	Buy: 70000
	Sell: 35000
	Weight: 40
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_L"
	EquipLv: 85
	Refine: false
	ViewSprite: 879
	Script: <"
		bonus bMaxHPrate, 15;
		bonus bHPrecovRate, 60;
	">
},
{
	Id: 908
	AegisName: "GMAmulet"
	Name: "GMAmulet"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 1
	Def: 50
	Matk: 20
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 908
	Nouse: {
		override: 50
	}
	Script: <"
		bonus bMaxHP, 31000;
		bonus bHPrecovRate, 200;
		bonus bCriticalDef, 50;
		bonus bMdef, 50;
		bonus bFlee, 20;
		bonus bMatkRate, 20; // @EVOL2
		bonus bHit, 50;
		bonus bCritical, 50;
		bonus bAspdRate, 20;
	">
},
{
	Id: 909
	AegisName: "LeprechaunHead"
	Name: "LeprechaunHead"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 100
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 909
	Script: <"
		bonus bLuk, 3;
	">
},
{
	Id: 910
	AegisName: "Rainerang"
	Name: "Rainerang"
	Type: "IT_WEAPON"
	Buy: 10000
	Sell: 5000
	Weight: 115
	Atk: 60
	Range: 4
	Slots: 1
	WeaponLv: 1
	Loc: "EQP_HAND_R"
	Refine: false
	ViewSprite: 910
	Subtype: "W_1HAXE"
},
{
	Id: 1227
	AegisName: "EnchantersAmulet"
	Name: "EnchantersAmulet"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 10
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 1227
	Script: <"
		bonus bHit, 22;
	">
},
{
	Id: 1244
	AegisName: "DarkTalisman"
	Name: "DarkTalisman"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 0
	Matk: 100
	Slots: 0
	Loc: "EQP_ACC_L"
	Refine: false
	ViewSprite: 1244
	Script: <"
		bonus bMatkRate, 100; // @EVOL2
		bonus bMdef, 30;
	">
},
{
	Id: 4008
	AegisName: "DiamondRing"
	Name: "DiamondRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4008
	Script: <"
		bonus bVit, 1;
	">
},
{
	Id: 4009
	AegisName: "RubyRing"
	Name: "RubyRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4009
	Script: <"
		bonus bStr, 1;
	">
},
{
	Id: 4010
	AegisName: "EmeraldRing"
	Name: "EmeraldRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4010
	Script: <"
		bonus bLuk, 1;
	">
},
{
	Id: 4011
	AegisName: "SapphireRing"
	Name: "SapphireRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4011
	Script: <"
		bonus bInt, 1;
	">
},
{
	Id: 4012
	AegisName: "TopazRing"
	Name: "TopazRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4012
	Script: <"
		bonus bAgi, 1;
	">
},
{
	Id: 4013
	AegisName: "AmethystRing"
	Name: "AmethystRing"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 25
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4013
	Script: <"
		bonus bDex, 1;
	">
},
{
	Id: 4014
	AegisName: "SimpleRing"
	Name: "SimpleRing"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 2500
	Weight: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 4014
},
{
	Id: 677
	AegisName: "HeartNecklace"
	Name: "HeartNecklace"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 0
	Weight: 20
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_L"
	Refine: false
	ViewSprite: 677
	Script: <"
		bonus bMaxHP, 50;
		bonus bHPrecovRate, 25;
	">},
{
	Id: 5252
	AegisName: "GuardianWings"
	Name: "GuardianWings"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 5252
},
{
	Id: 5253
	AegisName: "MageRing"
	Name: "MageRing"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 3
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 5253
	Script: <"
		bonus bInt, 1;
	">
},
{
	Id: 5270
	AegisName: "ManaPearl"
	Name: "Mana Pearl"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 3
	Matk: 22
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 5272
	Script: <"
		bonus bInt, 1;
		bonus bMatkRate, 22; // @EVOL2
		bonus bMaxSP, 55;
		bonus bMdef, 22;
		bonus bSPrecovRate, 33;
	">
},
{
	Id: 5268
	AegisName: "AssassinRing"
	Name: "Assassin Ring"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 5
	Def: 0
	Slots: 0
	Loc: "EQP_ACC_R"
	Refine: false
	ViewSprite: 5274
	Script: <"
		callfunc "BrawlingItem", EQI_ACC_R;
		bonus bAgi, 1;
		bonus bCritical, 5;
		bonus bAspdRate, 5;
	">
	//Disabled: true // @TMWA
},
{
	Id: 5269
	AegisName: "AssassinAmulet"
	Name: "Assassin Amulet"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 10
	Def: 0
	Slots: 0
	Loc: "EQP_ARMOR"
	Refine: false
	ViewSprite: 5275
	Script: <"
		callfunc "BrawlingItem", EQI_ARMOR;
		bonus bAgi, 1;
		bonus bDoubleAddRate, 5;
		bonus bHit, 25;
	">
	//Disabled: true // @TMWA
},
/* Boots */
{
	Id: 528
	AegisName: "Boots"
	Name: "Boots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 100
	Matk: -2
	Def: 2
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 528
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 655
	AegisName: "FurBoots"
	Name: "FurBoots"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 600
	Weight: 110
	Matk: -3
	Def: 3
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 655
	Script: <"
		bonus bMatkRate, -3; // @EVOL2
	">
},
{
	Id: 734
	AegisName: "BlackBoots"
	Name: "BlackBoots"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 3000
	Weight: 110
	Matk: -10
	Def: 3
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 734
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 735
	AegisName: "CottonBoots"
	Name: "CottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 735
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 757
	AegisName: "AssassinBoots"
	Name: "AssassinBoots"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 2000
	Weight: 10
	Matk: -3
	Def: 3
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 757
	Script: <"
		callfunc "BrawlingItem", EQI_SHOES;
		bonus bAgi, 4;
		bonus bMatkRate, -3; // @EVOL2
	">
},
{
	Id: 792
	AegisName: "BromenalBoots"
	Name: "BromenalBoots"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 500
	Weight: 30
	Matk: -2
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 792
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 876
	AegisName: "WarlordBoots"
	Name: "WarlordBoots"
	Type: "IT_ARMOR"
	Buy: 19000
	Sell: 2000
	Weight: 550
	Matk: -22
	Def: 5
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 876
	Script: <"
		bonus bMatkRate, -22; // @EVOL2
	">
},
{
	Id: 2150
	AegisName: "RedCottonBoots"
	Name: "RedCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2150
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2151
	AegisName: "GreenCottonBoots"
	Name: "GreenCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2151
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2152
	AegisName: "DarkBlueCottonBoots"
	Name: "DarkBlueCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2152
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2153
	AegisName: "YellowCottonBoots"
	Name: "YellowCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2153
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2154
	AegisName: "LightBlueCottonBoots"
	Name: "LightBlueCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2154
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2155
	AegisName: "PinkCottonBoots"
	Name: "PinkCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2155
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2156
	AegisName: "BlackCottonBoots"
	Name: "BlackCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2156
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2157
	AegisName: "OrangeCottonBoots"
	Name: "OrangeCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2157
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2158
	AegisName: "PurpleCottonBoots"
	Name: "PurpleCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2158
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 2159
	AegisName: "DarkGreenCottonBoots"
	Name: "DarkGreenCottonBoots"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 2159
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 1188
	AegisName: "RedStockings"
	Name: "RedStockings"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 2000
	Weight: 10
	Matk: 2
	Def: 1
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 1188
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 5323
	AegisName: "BlackWarlordBoots"
	Name: "BlackWarlordBoots"
	Type: "IT_ARMOR"
	Buy: 19000
	Sell: 2000
	Weight: 550
	Matk: -22
	Def: 5
	Slots: 0
	Loc: "EQP_SHOES"
	Refine: false
	ViewSprite: 5323
	Script: <"
		bonus bMatkRate, -22; // @EVOL2
	">
},
/* Items */
{
	Id: 503
	AegisName: "CasinoCoins"
	Name: "CasinoCoins"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 503
},
{
	Id: 504
	AegisName: "DecorCandy"
	Name: "DecorCandy"
	Type: "IT_ETC"
	Buy: 25
	Sell: 10
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 504
},
{
	Id: 505
	AegisName: "MaggotSlime"
	Name: "MaggotSlime"
	Type: "IT_ETC"
	Buy: 8
	Sell: 4
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 505
},
{
	Id: 507
	AegisName: "ScorpionStinger"
	Name: "ScorpionStinger"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 507
},
{
	Id: 515
	AegisName: "PurplePresentBox"
	Name: "PurplePresentBox"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 515
},
{
	Id: 516
	AegisName: "BluePresentBox"
	Name: "BluePresentBox"
	Type: "IT_ETC"
	Buy: 60
	Sell: 30
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 516
},
{
	Id: 517
	AegisName: "RedScorpionStinger"
	Name: "RedScorpionStinger"
	Type: "IT_ETC"
	Buy: 170
	Sell: 85
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 517
},
{
	Id: 518
	AegisName: "BugLeg"
	Name: "BugLeg"
	Type: "IT_ETC"
	Buy: 100
	Sell: 25
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 518
},
{
	Id: 526
	AegisName: "CoinBag"
	Name: "CoinBag"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 526
},
{
	Id: 537
	AegisName: "TreasureKey"
	Name: "TreasureKey"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 537
},
{
	Id: 538
	AegisName: "GreenPresentBox"
	Name: "GreenPresentBox"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 538
},
{
	Id: 540
	AegisName: "EmptyBottle"
	Name: "EmptyBottle"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 540
},
{
	Id: 542
	AegisName: "BottleOfSand"
	Name: "BottleOfSand"
	Type: "IT_ETC"
	Buy: 70
	Sell: 35
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 542
},
{
	Id: 551
	AegisName: "AquaHint"
	Name: "AquaHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 551
},
{
	Id: 552
	AegisName: "MagentaHint"
	Name: "MagentaHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 552
},
{
	Id: 553
	AegisName: "YellowHint"
	Name: "YellowHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 553
},
{
	Id: 554
	AegisName: "GreenHint"
	Name: "GreenHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 554
},
{
	Id: 555
	AegisName: "TealHint"
	Name: "TealHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 555
},
{
	Id: 556
	AegisName: "PurpleHint"
	Name: "PurpleHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 556
},
{
	Id: 557
	AegisName: "RedHint"
	Name: "RedHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 557
},
{
	Id: 558
	AegisName: "BlueHint"
	Name: "BlueHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 558
},
{
	Id: 559
	AegisName: "OrangeHint"
	Name: "OrangeHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 559
},
{
	Id: 560
	AegisName: "GrayHint"
	Name: "GrayHint"
	Type: "IT_ETC"
	Buy: 20
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 560
},
{
	Id: 569
	AegisName: "RawLog"
	Name: "RawLog"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 569
},
{
	Id: 589
	AegisName: "Toothbrush"
	Name: "Toothbrush"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 589
},
{
	Id: 611
	AegisName: "WhiteFur"
	Name: "WhiteFur"
	Type: "IT_ETC"
	Buy: 8
	Sell: 4
	Weight: 8
	Def: 0
	Refine: false
	ViewSprite: 611
},
{
	Id: 612
	AegisName: "CaveSnakeLamp"
	Name: "CaveSnakeLamp"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 612
},
{
	Id: 613
	AegisName: "HardSpike"
	Name: "HardSpike"
	Type: "IT_ETC"
	Buy: 40
	Sell: 10
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 613
},
{
	Id: 614
	AegisName: "PinkAntenna"
	Name: "PinkAntenna"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 614
},
{
	Id: 631
	AegisName: "DarkCrystal"
	Name: "DarkCrystal"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 250
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 631
},
{
	Id: 635
	AegisName: "SantaCookie"
	Name: "SantaCookie"
	Type: "IT_ETC"
	Buy: 1
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 635
},
{
	Id: 640
	AegisName: "IronOre"
	Name: "IronOre"
	Type: "IT_ETC"
	Buy: 250
	Sell: 100
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 640
},
{
	Id: 641
	AegisName: "SnakeSkin"
	Name: "SnakeSkin"
	Type: "IT_ETC"
	Buy: 250
	Sell: 100
	Weight: 15
	Def: 0
	Refine: false
	ViewSprite: 641
},
{
	Id: 660
	AegisName: "CottonCloth"
	Name: "CottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 660
},
{
	Id: 661
	AegisName: "RedRose"
	Name: "RedRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 661
},
{
	Id: 662
	AegisName: "WhiteRose"
	Name: "WhiteRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 662
},
{
	Id: 663
	AegisName: "DarkRedRose"
	Name: "DarkRedRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 663
},
{
	Id: 664
	AegisName: "PinkRose"
	Name: "PinkRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 664
},
{
	Id: 665
	AegisName: "YellowRose"
	Name: "YellowRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 665
},
{
	Id: 666
	AegisName: "BlackRose"
	Name: "BlackRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 666
},
{
	Id: 667
	AegisName: "OrangeRose"
	Name: "OrangeRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 667
},
{
	Id: 668
	AegisName: "BlueRose"
	Name: "BlueRose"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 668
},
{
	Id: 669
	AegisName: "YellowTulip"
	Name: "YellowTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 669
},
{
	Id: 670
	AegisName: "PurpleTulip"
	Name: "PurpleTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 670
},
{
	Id: 671
	AegisName: "RedTulip"
	Name: "RedTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 671
},
{
	Id: 672
	AegisName: "WhiteTulip"
	Name: "WhiteTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 672
},
{
	Id: 673
	AegisName: "PinkTulip"
	Name: "PinkTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 673
},
{
	Id: 674
	AegisName: "OrangeTulip"
	Name: "OrangeTulip"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 674
},
{
	Id: 680
	AegisName: "MauveHerb"
	Name: "MauveHerb"
	Type: "IT_ETC"
	Buy: 2
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 680
},
{
	Id: 681
	AegisName: "CobaltHerb"
	Name: "CobaltHerb"
	Type: "IT_ETC"
	Buy: 2
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 681
},
{
	Id: 682
	AegisName: "GambogeHerb"
	Name: "GambogeHerb"
	Type: "IT_ETC"
	Buy: 2
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 682
},
{
	Id: 683
	AegisName: "AlizarinHerb"
	Name: "AlizarinHerb"
	Type: "IT_ETC"
	Buy: 2
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 683
},
{
	Id: 690
	AegisName: "RedDye"
	Name: "RedDye"
	Type: "IT_ETC"
	Buy: 100
	Sell: 20
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 690
},
{
	Id: 691
	AegisName: "GreenDye"
	Name: "GreenDye"
	Type: "IT_ETC"
	Buy: 2500
	Sell: 1000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 691
},
{
	Id: 692
	AegisName: "DarkBlueDye"
	Name: "DarkBlueDye"
	Type: "IT_ETC"
	Buy: 40000
	Sell: 15000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 692
},
{
	Id: 693
	AegisName: "YellowDye"
	Name: "YellowDye"
	Type: "IT_ETC"
	Buy: 100
	Sell: 20
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 693
},
{
	Id: 694
	AegisName: "LightBlueDye"
	Name: "LightBlueDye"
	Type: "IT_ETC"
	Buy: 100
	Sell: 20
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 694
},
{
	Id: 695
	AegisName: "PinkDye"
	Name: "PinkDye"
	Type: "IT_ETC"
	Buy: 2500
	Sell: 1000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 695
},
{
	Id: 696
	AegisName: "BlackDye"
	Name: "BlackDye"
	Type: "IT_ETC"
	Buy: 30000
	Sell: 15000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 696
},
{
	Id: 697
	AegisName: "OrangeDye"
	Name: "OrangeDye"
	Type: "IT_ETC"
	Buy: 2500
	Sell: 1000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 697
},
{
	Id: 698
	AegisName: "PurpleDye"
	Name: "PurpleDye"
	Type: "IT_ETC"
	Buy: 70000
	Sell: 35000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 698
},
{
	Id: 699
	AegisName: "DarkGreenDye"
	Name: "DarkGreenDye"
	Type: "IT_ETC"
	Buy: 2000
	Sell: 1000
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 699
},
{
	Id: 700
	AegisName: "Pearl"
	Name: "Pearl"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 3000
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 700
},
{
	Id: 701
	AegisName: "PileOfAsh"
	Name: "PileOfAsh"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 100
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 701
},
{
	Id: 703
	AegisName: "SulphurPowder"
	Name: "SulphurPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 25
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 703
},
{
	Id: 704
	AegisName: "IronPowder"
	Name: "IronPowder"
	Type: "IT_ETC"
	Buy: 800
	Sell: 80
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 704
},
{
	Id: 706
	AegisName: "GoldenScorpionStinger"
	Name: "GoldenScorpionStinger"
	Type: "IT_ETC"
	Buy: 2000
	Sell: 500
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 706
},
{
	Id: 707
	AegisName: "MonsterOilPotion"
	Name: "MonsterOilPotion"
	Type: "IT_ETC"
	Buy: 10000
	Sell: 2000
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 707
},
{
	Id: 708
	AegisName: "LeatherPatch"
	Name: "LeatherPatch"
	Type: "IT_ETC"
	Buy: 300
	Sell: 150
	Weight: 18
	Def: 0
	Refine: false
	ViewSprite: 708
},
{
	Id: 709
	AegisName: "BlackScorpionStinger"
	Name: "BlackScorpionStinger"
	Type: "IT_ETC"
	Buy: 250
	Sell: 100
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 709
},
{
	Id: 710
	AegisName: "SnakeTongue"
	Name: "SnakeTongue"
	Type: "IT_ETC"
	Buy: 60
	Sell: 30
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 710
},
{
	Id: 711
	AegisName: "MountainSnakeTongue"
	Name: "MountainSnakeTongue"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 711
},
{
	Id: 712
	AegisName: "GrassSnakeTongue"
	Name: "GrassSnakeTongue"
	Type: "IT_ETC"
	Buy: 160
	Sell: 80
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 712
},
{
	Id: 713
	AegisName: "CaveSnakeTongue"
	Name: "CaveSnakeTongue"
	Type: "IT_ETC"
	Buy: 120
	Sell: 60
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 713
},
{
	Id: 718
	AegisName: "SilkCocoon"
	Name: "SilkCocoon"
	Type: "IT_ETC"
	Buy: 200
	Sell: 3
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 718
},
{
	Id: 727
	AegisName: "Iten"
	Name: "Iten"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 8000
	Def: 0
	Refine: false
	ViewSprite: 727
},
{
	Id: 728
	AegisName: "MoubooFigurine"
	Name: "MoubooFigurine"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 9
	Def: 0
	Refine: false
	ViewSprite: 728
},
{
	Id: 729
	AegisName: "WarpedLog"
	Name: "WarpedLog"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 8
	Def: 0
	Refine: false
	ViewSprite: 729
},
{
	Id: 730
	AegisName: "Lifestone"
	Name: "Lifestone"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 730
},
{
	Id: 732
	AegisName: "DruidTreeBranch"
	Name: "DruidTreeBranch"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 732
},
{
	Id: 740
	AegisName: "Root"
	Name: "Root"
	Type: "IT_ETC"
	Buy: 500
	Sell: 200
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 740
},
{
	Id: 746
	AegisName: "MopoxCurePotion"
	Name: "MopoxCurePotion"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 746
},
{
	Id: 753
	AegisName: "BatWing"
	Name: "BatWing"
	Type: "IT_ETC"
	Buy: 500
	Sell: 10
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 753
},
{
	Id: 754
	AegisName: "BatTeeth"
	Name: "BatTeeth"
	Type: "IT_ETC"
	Buy: 600
	Sell: 12
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 754
},
{
	Id: 763
	AegisName: "TerraniteOre"
	Name: "TerraniteOre"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 763
},
{
	Id: 772
	AegisName: "WispPowder"
	Name: "WispPowder"
	Type: "IT_ETC"
	Buy: 700
	Sell: 350
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 772
},
{
	Id: 773
	AegisName: "SpectrePowder"
	Name: "SpectrePowder"
	Type: "IT_ETC"
	Buy: 700
	Sell: 350
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 773
},
{
	Id: 774
	AegisName: "PoltergeistPowder"
	Name: "PoltergeistPowder"
	Type: "IT_ETC"
	Buy: 700
	Sell: 350
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 774
},
{
	Id: 775
	AegisName: "Bone"
	Name: "Bone"
	Type: "IT_ETC"
	Buy: 140
	Sell: 70
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 775
},
{
	Id: 776
	AegisName: "Skull"
	Name: "Skull"
	Type: "IT_ETC"
	Buy: 900
	Sell: 450
	Weight: 30
	Def: 0
	Refine: false
	ViewSprite: 776
},
{
	Id: 777
	AegisName: "RottenRags"
	Name: "RottenRags"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 15
	Def: 0
	Refine: false
	ViewSprite: 777
},
{
	Id: 778
	AegisName: "DiseasedHeart"
	Name: "DiseasedHeart"
	Type: "IT_ETC"
	Buy: 180
	Sell: 90
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 778
},
{
	Id: 779
	AegisName: "UndeadEar"
	Name: "UndeadEar"
	Type: "IT_ETC"
	Buy: 30
	Sell: 15
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 779
},
{
	Id: 780
	AegisName: "UndeadEye"
	Name: "UndeadEye"
	Type: "IT_ETC"
	Buy: 30
	Sell: 15
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 780
},
{
	Id: 799
	AegisName: "MylarinDust"
	Name: "MylarinDust"
	Type: "IT_ETC"
	Buy: 10000
	Sell: 5000
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 799
},
{
	Id: 802
	AegisName: "EasterBasket"
	Name: "EasterBasket"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 802
},
{
	Id: 803
	AegisName: "GrassLiner"
	Name: "GrassLiner"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 803
},
{
	Id: 804
	AegisName: "JellyBeans"
	Name: "JellyBeans"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 804
},
{
	Id: 805
	AegisName: "ChocolateMouboo"
	Name: "ChocolateMouboo"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 805
},
{
	Id: 806
	AegisName: "ReedBundle"
	Name: "ReedBundle"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 7
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 806
},
{
	Id: 807
	AegisName: "GrassSeed"
	Name: "GrassSeed"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 807
},
{
	Id: 819
	AegisName: "DiamondPowder"
	Name: "DiamondPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 819
},
{
	Id: 820
	AegisName: "RubyPowder"
	Name: "RubyPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 820
},
{
	Id: 821
	AegisName: "EmeraldPowder"
	Name: "EmeraldPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 821
},
{
	Id: 822
	AegisName: "SapphirePowder"
	Name: "SapphirePowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 822
},
{
	Id: 823
	AegisName: "TopazPowder"
	Name: "TopazPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 823
},
{
	Id: 824
	AegisName: "AmethystPowder"
	Name: "AmethystPowder"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 500
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 824
},
{
	Id: 833
	AegisName: "BrokenFourLeafAmulet"
	Name: "BrokenFourLeafAmulet"
	Type: "IT_ETC"
	Buy: 100
	Sell: 1
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 833
},
{
	Id: 834
	AegisName: "BrokenDoll"
	Name: "BrokenDoll"
	Type: "IT_ETC"
	Buy: 20
	Sell: 5
	Weight: 15
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 834
},
{
	Id: 835
	AegisName: "HyvernStinger"
	Name: "HyvernStinger"
	Type: "IT_ETC"
	Buy: 100
	Sell: 25
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 835
},
{
	Id: 836
	AegisName: "GrubSlime"
	Name: "GrubSlime"
	Type: "IT_ETC"
	Buy: 40
	Sell: 10
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 836
},
{
	Id: 841
	AegisName: "RedDottedWrap"
	Name: "RedDottedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 841
},
{
	Id: 842
	AegisName: "YellowDottedWrap"
	Name: "YellowDottedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 842
},
{
	Id: 843
	AegisName: "BlueDottedWrap"
	Name: "BlueDottedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 843
},
{
	Id: 844
	AegisName: "PurpleStripedWrap"
	Name: "PurpleStripedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 844
},
{
	Id: 845
	AegisName: "RedGoldenStripedWrap"
	Name: "RedGoldenStripedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 845
},
{
	Id: 846
	AegisName: "GreenRedStripedWrap"
	Name: "GreenRedStripedWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 846
},
{
	Id: 847
	AegisName: "PlushMouboo"
	Name: "PlushMouboo"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 847
},
{
	Id: 849
	AegisName: "OpenPresentBox"
	Name: "OpenPresentBox"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 849
},
{
	Id: 850
	AegisName: "ClosedChristmasBox"
	Name: "ClosedChristmasBox"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 850
},
{
	Id: 851
	AegisName: "StickReinboo"
	Name: "StickReinboo"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 851
},
{
	Id: 852
	AegisName: "LeatherBall"
	Name: "LeatherBall"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 852
},
{
	Id: 853
	AegisName: "Doll"
	Name: "Doll"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 30
	Def: 0
	Refine: false
	ViewSprite: 853
},
{
	Id: 858
	AegisName: "WolvernTooth"
	Name: "WolvernTooth"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 858
},
{
	Id: 859
	AegisName: "WolvernPelt"
	Name: "WolvernPelt"
	Type: "IT_ETC"
	Buy: 500
	Sell: 250
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 859
},
{
	Id: 860
	AegisName: "SquirrelPelt"
	Name: "SquirrelPelt"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 860
},
{
	Id: 861
	AegisName: "WhiteBellTuber"
	Name: "WhiteBellTuber"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 3
	Def: 0
	Refine: false
	ViewSprite: 861
},
{
	Id: 862
	AegisName: "IcedWater"
	Name: "IcedWater"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 862
},
{
	Id: 863
	AegisName: "SilverMirror"
	Name: "SilverMirror"
	Type: "IT_ETC"
	Buy: 500
	Sell: 250
	Weight: 25
	Def: 0
	Refine: false
	ViewSprite: 863
},
{
	Id: 864
	AegisName: "BookPage"
	Name: "BookPage"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 864
},
{
	Id: 866
	AegisName: "LeatherSuitcase"
	Name: "LeatherSuitcase"
	Type: "IT_ETC"
	Buy: 4000
	Sell: 2000
	Weight: 12000
	Def: 0
	Refine: false
	ViewSprite: 866
},
{
	Id: 869
	AegisName: "Antlers"
	Name: "Antlers"
	Type: "IT_ETC"
	Buy: 4000
	Sell: 2000
	Weight: 3000
	Def: 0
	Refine: false
	ViewSprite: 869
},
{
	Id: 871
	AegisName: "SealedSoul"
	Name: "SealedSoul"
	Type: "IT_ETC"
	Buy: 12000
	Sell: 1000
	Weight: 75
	Def: 0
	Refine: false
	ViewSprite: 871
},
{
	Id: 872
	AegisName: "LockPicks"
	Name: "LockPicks"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1500
	Weight: 150
	Def: 0
	Refine: false
	ViewSprite: 872
},
{
	Id: 873
	AegisName: "LazuriteShard"
	Name: "LazuriteShard"
	Type: "IT_ETC"
	Buy: 500
	Sell: 50
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 873
},
{
	Id: 874
	AegisName: "LazuriteCrystal"
	Name: "LazuriteCrystal"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 200
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 874
},
{
	Id: 875
	AegisName: "HeartOfLazurite"
	Name: "HeartOfLazurite"
	Type: "IT_ETC"
	Buy: 10000
	Sell: 400
	Weight: 15
	Def: 0
	Refine: false
	ViewSprite: 875
},
{
	Id: 891
	AegisName: "SilkSheet"
	Name: "SilkSheet"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 250
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 891
},
{
	Id: 892
	AegisName: "OrangeSummonFlower"
	Name: "OrangeSummonFlower"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 7
	Def: 0
	Refine: false
	ViewSprite: 892
},
{
	Id: 893
	AegisName: "PurpleSummonFlower"
	Name: "PurpleSummonFlower"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 7
	Def: 0
	Refine: false
	ViewSprite: 893
},
{
	Id: 894
	AegisName: "WhiteSummonFlower"
	Name: "WhiteSummonFlower"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 7
	Def: 0
	Refine: false
	ViewSprite: 894
},
{
	Id: 895
	AegisName: "YellowSummonFlower"
	Name: "YellowSummonFlower"
	Type: "IT_ETC"
	Buy: 400
	Sell: 200
	Weight: 7
	Def: 0
	Refine: false
	ViewSprite: 895
},
{
	Id: 896
	AegisName: "RedSummonFlower"
	Name: "RedSummonFlower"
	Type: "IT_ETC"
	Buy: 600
	Sell: 300
	Weight: 7
	Def: 0
	Refine: false
	ViewSprite: 896
},
{
	Id: 1191
	AegisName: "WhiteWrap"
	Name: "WhiteWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 1191
},
{
	Id: 1192
	AegisName: "YellowWrap"
	Name: "YellowWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 1192
},
{
	Id: 1193
	AegisName: "BlueWrap"
	Name: "BlueWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 1193
},
{
	Id: 1194
	AegisName: "PurpleWrap"
	Name: "PurpleWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 1194
},
{
	Id: 1195
	AegisName: "GreenWrap"
	Name: "GreenWrap"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 1195
},
{
	Id: 1198
	AegisName: "Soul"
	Name: "Soul"
	Type: "IT_ETC"
	Buy: 100000
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 1198
},
{
	Id: 1207
	AegisName: "RedChristmasStocking"
	Name: "RedChristmasStocking"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1207
},
{
	Id: 1208
	AegisName: "RedEasterEgg"
	Name: "RedEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1208
},
{
	Id: 1209
	AegisName: "GreenEasterEgg"
	Name: "GreenEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1209
},
{
	Id: 1210
	AegisName: "BlueEasterEgg"
	Name: "BlueEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1210
},
{
	Id: 1211
	AegisName: "YellowEasterEgg"
	Name: "YellowEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1211
},
{
	Id: 1212
	AegisName: "PinkEasterEgg"
	Name: "PinkEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1212
},
{
	Id: 1213
	AegisName: "TealEasterEgg"
	Name: "TealEasterEgg"
	Type: "IT_ETC"
	Buy: 80
	Sell: 40
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1213
},
{
	Id: 1228
	AegisName: "LightCrystal"
	Name: "LightCrystal"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 250
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1228
	//Disabled: true // @TMWA
},
{
	Id: 1233
	AegisName: "FakeFangs"
	Name: "FakeFangs"
	Type: "IT_ETC"
	Buy: 20000
	Sell: 10000
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1233
},
{
	Id: 1234
	AegisName: "RedOrnament"
	Name: "RedOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1234
},
{
	Id: 1235
	AegisName: "YellowOrnament"
	Name: "YellowOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1235
},
{
	Id: 1236
	AegisName: "GreenOrnament"
	Name: "GreenOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1236
},
{
	Id: 1237
	AegisName: "AquaOrnament"
	Name: "AquaOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1237
},
{
	Id: 1238
	AegisName: "BlueOrnament"
	Name: "BlueOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1238
},
{
	Id: 1239
	AegisName: "MagentaOrnament"
	Name: "MagentaOrnament"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1239
},
{
	Id: 1240
	AegisName: "SantaSnowGlobe"
	Name: "SantaSnowGlobe"
	Type: "IT_ETC"
	Buy: 7500
	Sell: 3750
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1240
},
{
	Id: 1241
	AegisName: "SnowmanSnowGlobe"
	Name: "SnowmanSnowGlobe"
	Type: "IT_ETC"
	Buy: 7500
	Sell: 3750
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1241
},
{
	Id: 1245
	AegisName: "BentNeedle"
	Name: "BentNeedle"
	Type: "IT_ETC"
	Buy: 700
	Sell: 1
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1245
},
{
	Id: 1246
	AegisName: "DarkEasterEgg"
	Name: "DarkEasterEgg"
	Type: "IT_ETC"
	Buy: 700
	Sell: 50
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1246
},
{
	Id: 1249
	AegisName: "StrangeCoin"
	Name: "StrangeCoin"
	Type: "IT_ETC"
	Buy: 7000
	Sell: 3500
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1249
},
{
	Id: 1254
	AegisName: "DarkPetal"
	Name: "DarkPetal"
	Type: "IT_ETC"
	Buy: 15000
	Sell: 8000
	Weight: 250
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1254
},
{
	Id: 1257
	AegisName: "FlawedLens"
	Name: "FlawedLens"
	Type: "IT_ETC"
	Buy: 10000
	Sell: 5000
	Weight: 3
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1257
},
{
	Id: 2250
	AegisName: "RedCottonCloth"
	Name: "RedCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2250
},
{
	Id: 2251
	AegisName: "GreenCottonCloth"
	Name: "GreenCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2251
},
{
	Id: 2252
	AegisName: "DarkBlueCottonCloth"
	Name: "DarkBlueCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2252
},
{
	Id: 2253
	AegisName: "YellowCottonCloth"
	Name: "YellowCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2253
},
{
	Id: 2254
	AegisName: "LightBlueCottonCloth"
	Name: "LightBlueCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2254
},
{
	Id: 2255
	AegisName: "PinkCottonCloth"
	Name: "PinkCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2255
},
{
	Id: 2256
	AegisName: "BlackCottonCloth"
	Name: "BlackCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2256
},
{
	Id: 2257
	AegisName: "OrangeCottonCloth"
	Name: "OrangeCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2257
},
{
	Id: 2258
	AegisName: "PurpleCottonCloth"
	Name: "PurpleCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2258
},
{
	Id: 2259
	AegisName: "DarkGreenCottonCloth"
	Name: "DarkGreenCottonCloth"
	Type: "IT_ETC"
	Buy: 400
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 2259
},
{
	Id: 3000
	AegisName: "JackOLantern"
	Name: "JackOLantern"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 1000
	Def: 0
	Refine: false
	ViewSprite: 3000
},
{
	Id: 3002
	AegisName: "RealisticBrain"
	Name: "RealisticBrain"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 3002
},
{
	Id: 3003
	AegisName: "JarofBlood"
	Name: "JarofBlood"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 375
	Def: 0
	Refine: false
	ViewSprite: 3003
},
{
	Id: 3004
	AegisName: "Tongue"
	Name: "Tongue"
	Type: "IT_ETC"
	Buy: 5
	Sell: 1
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 3004
},
{
	Id: 3011
	AegisName: "PumpkinSeeds"
	Name: "PumpkinSeeds"
	Type: "IT_ETC"
	Buy: 5
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 3011
},
{
	Id: 3012
	AegisName: "BossMedal"
	Name: "Boss Medal"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 1
	ViewSprite: 3012
	Trade: {
		override: 60
		nodrop: true
		notrade: true
		noselltonpc: true
		nogstorage: true
		nomail: true
		noauction: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 4000
	AegisName: "AngryScorpionStinger"
	Name: "AngryScorpionStinger"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 4000
},
{
	Id: 4001
	AegisName: "Coal"
	Name: "Coal"
	Type: "IT_ETC"
	Buy: 250
	Sell: 100
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4001
},
{
	Id: 4002
	AegisName: "Diamond"
	Name: "Diamond"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4002
},
{
	Id: 4003
	AegisName: "Ruby"
	Name: "Ruby"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4003
},
{
	Id: 4004
	AegisName: "Emerald"
	Name: "Emerald"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4004
},
{
	Id: 4005
	AegisName: "Sapphire"
	Name: "Sapphire"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4005
},
{
	Id: 4006
	AegisName: "Topaz"
	Name: "Topaz"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4006
},
{
	Id: 4007
	AegisName: "Amethyst"
	Name: "Amethyst"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 4007
},
{
	Id: 4015
	AegisName: "IronIngot"
	Name: "IronIngot"
	Type: "IT_ETC"
	Buy: 500
	Sell: 250
	Weight: 200
	Def: 0
	Refine: false
	ViewSprite: 4015
},
{
	Id: 4016
	AegisName: "BanditHood"
	Name: "BanditHood"
	Type: "IT_ETC"
	Buy: 100
	Sell: 50
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 4016
},
{
	Id: 4017
	AegisName: "RedPowder"
	Name: "RedPowder"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 5
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 4017
},
{
	Id: 4018
	AegisName: "YellowPowder"
	Name: "YellowPowder"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 5
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 4018
},
{
	Id: 4019
	AegisName: "BluePowder"
	Name: "BluePowder"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 5
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 4019
},
{
	Id: 4021
	AegisName: "YellowPresentBox"
	Name: "YellowPresentBox"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 4021
},
{
	Id: 4022
	AegisName: "WhitePresentBox"
	Name: "WhitePresentBox"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 4022
},
{
	Id: 4023
	AegisName: "AnimalBones"
	Name: "AnimalBones"
	Type: "IT_ETC"
	Buy: 50
	Sell: 25
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 4023
},
{
	Id: 4024
	AegisName: "FrozenYetiTear"
	Name: "FrozenYetiTear"
	Type: "IT_ETC"
	Buy: 500
	Sell: 250
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 4024
},
{
	Id: 4025
	AegisName: "YetiClaw"
	Name: "YetiClaw"
	Type: "IT_ETC"
	Buy: 150
	Sell: 75
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 4025
},
{
	Id: 4026
	AegisName: "IceCube"
	Name: "IceCube"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 4026
},
{
	Id: 4029
	AegisName: "GrimaceOfDementia"
	Name: "GrimaceOfDementia"
	Type: "IT_ETC"
	Buy: 20
	Sell: 10
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 4029
},
{
	Id: 4034
	AegisName: "BlackPearl"
	Name: "BlackPearl"
	Type: "IT_ETC"
	Buy: 8000
	Sell: 4000
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 4034
},
{
	Id: 4037
	AegisName: "WhiteBlanket"
	Name: "WhiteBlanket"
	Type: "IT_ETC"
	Buy: 600
	Sell: 125
	Weight: 50
	Def: 0
	Refine: false
	ViewSprite: 4037
},
{
	Id: 4038
	AegisName: "WhiteSaddleRug"
	Name: "WhiteSaddleRug"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 250
	Weight: 100
	Def: 0
	Refine: false
	ViewSprite: 4038
},
{
	Id: 4039
	AegisName: "RedSaddleRug"
	Name: "RedSaddleRug"
	Type: "IT_ETC"
	Buy: 1200
	Sell: 300
	Weight: 110
	Def: 0
	Refine: false
	ViewSprite: 4039
},
{
	Id: 4040
	AegisName: "RawTalisman"
	Name: "RawTalisman"
	Type: "IT_ETC"
	Buy: 800
	Sell: 200
	Weight: 8
	Def: 0
	Refine: false
	ViewSprite: 4040
},
{
	Id: 4041
	AegisName: "FlightTalisman"
	Name: "FlightTalisman"
	Type: "IT_ETC"
	Buy: 5000
	Sell: 1200
	Weight: 12
	Def: 0
	Refine: false
	ViewSprite: 4041
},
{
	Id: 5110
	AegisName: "Bloodstone"
	Name: "Bloodstone"
	Type: "IT_ETC"
	Buy: 2000
	Sell: 250
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5110
},
{
	Id: 5111
	AegisName: "BrainStem"
	Name: "BrainStem"
	Type: "IT_ETC"
	Buy: 180
	Sell: 90
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5111
},
{
	Id: 5112
	AegisName: "CryptKey"
	Name: "CryptKey"
	Type: "IT_ETC"
	Buy: 300
	Sell: 150
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 5112
	//Disabled: true // @TMWA
},
{
	Id: 5113
	AegisName: "Ectoplasm"
	Name: "Ectoplasm"
	Type: "IT_ETC"
	Buy: 80
	Sell: 20
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5113
	//Disabled: true // @TMWA
},
{
	Id: 5114
	AegisName: "Urn"
	Name: "Urn"
	Type: "IT_ETC"
	Buy: 40
	Sell: 20
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 5114
	//Disabled: true // @TMWA
},
{
	Id: 5115
	AegisName: "VampireBatWing"
	Name: "VampireBatWing"
	Type: "IT_ETC"
	Buy: 700
	Sell: 20
	Weight: 4
	Def: 0
	Refine: false
	ViewSprite: 5115
},
{
	Id: 5116
	AegisName: "WraithHorn"
	Name: "WraithHorn"
	Type: "IT_ETC"
	Buy: 700
	Sell: 20
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5116
	//Disabled: true // @TMWA
},
{
	Id: 5117
	AegisName: "AstralCube"
	Name: "AstralCube"
	Type: "IT_ETC"
	Buy: 10000
	Sell: 10
	Weight: 800
	Def: 0
	Refine: false
	ViewSprite: 5117
	//Disabled: true // @TMWA
},
{
	Id: 5118
	AegisName: "RunestoneA"
	Name: "RunestoneA"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5118
	//Disabled: true // @TMWA
},
{
	Id: 5119
	AegisName: "RunestoneL"
	Name: "RunestoneL"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5119
	//Disabled: true // @TMWA
},
{
	Id: 5120
	AegisName: "RunestoneN"
	Name: "RunestoneN"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5120
	//Disabled: true // @TMWA
},
{
	Id: 5121
	AegisName: "RunestoneT"
	Name: "RunestoneT"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5121
	//Disabled: true // @TMWA
},
{
	Id: 5122
	AegisName: "RunestoneW"
	Name: "RunestoneW"
	Type: "IT_ETC"
	Buy: 1000
	Sell: 100
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5122
	//Disabled: true // @TMWA
},
{
	Id: 5123
	AegisName: "QuillOfBinding"
	Name: "QuillOfBinding"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5123
	//Disabled: true // @TMWA
},
{
	Id: 5124
	AegisName: "BloodInk"
	Name: "BloodInk"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 4
	Def: 0
	Refine: false
	ViewSprite: 5124
},
{
	Id: 5125
	AegisName: "UnderworldKey"
	Name: "UnderworldKey"
	Type: "IT_ETC"
	Buy: 10
	Sell: 5
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 5125
},
{
	Id: 5127
	AegisName: "JarofOwnBlood"
	Name: "JarofOwnBlood"
	Type: "IT_ETC"
	Buy: 200
	Sell: 100
	Weight: 375
	Def: 0
	Refine: false
	ViewSprite: 5127
},
{
	Id: 1197
	AegisName: "SkeletonCharm"
	Name: "SkeletonCharm"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 1197
},
{
	Id: 5211
	AegisName: "ActivatedSulphur"
	Name: "ActivatedSulphur"
	Type: "IT_ETC"
	Buy: 3000
	Sell: 5
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5211
},
{
	Id: 5212
	AegisName: "FairTradeSoil"
	Name: "FairTradeSoil"
	Type: "IT_ETC"
	Buy: 500
	Sell: 23
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 5212
},
{
	Id: 5215
	AegisName: "FreeRangeMoss"
	Name: "FreeRangeMoss"
	Type: "IT_ETC"
	Buy: 830
	Sell: 20
	Weight: 5
	Def: 0
	Refine: false
	ViewSprite: 5215
},
{
	Id: 5216
	AegisName: "JadeEgg"
	Name: "JadeEgg"
	Type: "IT_ETC"
	Buy: 938
	Sell: 250
	Weight: 2
	Def: 0
	Refine: false
	ViewSprite: 5216
},
{
	Id: 5217
	AegisName: "RawAir"
	Name: "RawAir"
	Type: "IT_ETC"
	Buy: 1999
	Sell: 10
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5217
},
{
	Id: 5218
	AegisName: "RedTicket"
	Name: "RedTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5218
},
{
	Id: 5219
	AegisName: "YellowTicket"
	Name: "YellowTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5219
},
{
	Id: 5220
	AegisName: "GoldTicket"
	Name: "GoldTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5220
},
{
	Id: 5221
	AegisName: "GreenTicket"
	Name: "GreenTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5221
},
{
	Id: 5222
	AegisName: "AquaTicket"
	Name: "AquaTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5222
},
{
	Id: 5223
	AegisName: "BlueTicket"
	Name: "BlueTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5223
},
{
	Id: 5224
	AegisName: "PurpleTicket"
	Name: "PurpleTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5224
},
{
	Id: 5225
	AegisName: "PinkTicket"
	Name: "PinkTicket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5225
},
{
	Id: 5256
	AegisName: "PVPCoin"
	Name: "PVPCoin"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5256
},
{
	Id: 5265
	AegisName: "LoveLetter"
	Name: "LoveLetter"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5265
},
{
	Id: 5276
	AegisName: "ThermalNapalm"
	Name: "Thermal Napalm"
	Type: "IT_ETC"
	Buy: 9999
	Sell: 0
	Weight: 1
	ViewSprite: 5276
	Trade: {
		partneroverride: true
		notrade: false
		nodrop: true
		nogstorage: true
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5278
	AegisName: "XmasTicket"
	Name: "Christmas Ticket"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 0
	ViewSprite: 5278
	//Disabled: true // @TMWA
},
{
	Id: 5279
	AegisName: "Carrot"
	Name: "Legendary Carrot"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 0
	ViewSprite: 5279
	Trade: {
		notrade: true
		nodrop: true
		nogstorage: true
		nomail: true
		noauction: true
		noselltonpc: true
	}
},
{
	Id: 5288
	AegisName: "Naftalin"
	Name: "Naphthalene"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5288
},
{
	Id: 5292
	AegisName: "SilverOre"
	Name: "Silver Ore"
	Type: "IT_ETC"
	Buy: 1600
	Sell: 800
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 5292
},
{
	Id: 5293
	AegisName: "CrystallizedDragonBlood"
	Name: "Crystallized Dragon Blood"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1111
	Refine: false
	ViewSprite: 5293
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5295
	AegisName: "PinkFlowerSeed"
	Name: "Pink Flower Seed"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5295
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
},
{
	Id: 5296
	AegisName: "SilverIngot"
	Name: "Silver Ingot"
	Type: "IT_ETC"
	Buy: 20000
	Sell: 2200
	Weight: 1000
	Def: 0
	Refine: false
	ViewSprite: 5296
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5297
	AegisName: "GoldenTooth"
	Name: "Golden Tooth"
	Type: "IT_ETC"
	Buy: 20000
	Sell: 2000
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 5297
},
{
	Id: 5298
	AegisName: "CloverDrawing"
	Name: "Clover Drawing"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 10
	Def: 0
	Refine: false
	ViewSprite: 5298
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5311
	AegisName: "ShadowHerb"
	Name: "ShadowHerb"
	Type: "IT_ETC"
	Buy: 2
	Sell: 1
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5311
},
{
	Id: 5313
	AegisName: "CrozeniteCrystal"
	Name: "CrozeniteCrystal"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 555
	Def: 0
	Refine: false
	ViewSprite: 5313
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5314
	AegisName: "GoldOre"
	Name: "GoldOre"
	Type: "IT_ETC"
	Buy: 3200
	Sell: 1600
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 5314
	//Disabled: true // @TMWA
},
{
	Id: 5315
	AegisName: "GoldIngot"
	Name: "GoldIngot"
	Type: "IT_ETC"
	Buy: 40000
	Sell: 4400
	Weight: 1000
	Def: 0
	Refine: false
	ViewSprite: 5315
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5316
	AegisName: "BromenalOre"
	Name: "BromenalOre"
	Type: "IT_ETC"
	Buy: 3200
	Sell: 1600
	Weight: 40
	Def: 0
	Refine: false
	ViewSprite: 5316
	//Disabled: true // @TMWA
},
{
	Id: 5317
	AegisName: "BromenalIngot"
	Name: "BromenalIngot"
	Type: "IT_ETC"
	Buy: 30000
	Sell: 3300
	Weight: 1000
	Def: 0
	Refine: false
	ViewSprite: 5317
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5318
	AegisName: "BromenalDroplet"
	Name: "BromenalDroplet"
	Type: "IT_ETC"
	Buy: 15000
	Sell: 1500
	Weight: 20
	Def: 0
	Refine: false
	ViewSprite: 5318
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
	//Disabled: true // @TMWA
},
{
	Id: 5319
	AegisName: "ShadowPlantCrystalDust"
	Name: "ShadowPlantCrystalDust"
	Type: "IT_ETC"
	Buy: 0
	Sell: 0
	Weight: 1
	Def: 0
	Refine: false
	ViewSprite: 5319
	Trade: {
		notrade: true
		nodrop: true
		nostorage: false
		nogstorage: false
		nomail: true
		noauction: true
		noselltonpc: true
	}
},
/* Chest Armor */
{
	Id: 523
	AegisName: "LeatherShirt"
	Name: "LeatherShirt"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 120
	Matk: -12
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 523
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 546
	AegisName: "DesertShirt"
	Name: "DesertShirt"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 140
	Matk: -18
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 546
	Script: <"
		bonus bMatkRate, -18; // @EVOL2
	">
},
{
	Id: 564
	AegisName: "Turtleneck"
	Name: "Turtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 130
	Matk: -18
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 564
	Script: <"
		bonus bMatkRate, -18; // @EVOL2
	">
},
{
	Id: 624
	AegisName: "VNeckSweater"
	Name: "VNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -24
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 624
	Script: <"
		bonus bMatkRate, -24; // @EVOL2
	">
},
{
	Id: 625
	AegisName: "ChainmailShirt"
	Name: "ChainmailShirt"
	Type: "IT_ARMOR"
	Buy: 15000
	Sell: 1500
	Weight: 800
	Matk: -120
	Def: 20
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 625
	Script: <"
		bonus bMatkRate, -120; // @EVOL2
	">
},
{
	Id: 626
	AegisName: "LightPlatemail"
	Name: "LightPlatemail"
	Type: "IT_ARMOR"
	Buy: 50000
	Sell: 2500
	Weight: 1200
	Matk: -150
	Def: 25
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 626
	Script: <"
		bonus bMatkRate, -150; // @EVOL2
	">
},
{
	Id: 645
	AegisName: "GoldenPlatemail"
	Name: "GoldenPlatemail"
	Type: "IT_ARMOR"
	Buy: 9999000
	Sell: 3000
	Weight: 4500
	Matk: -100
	Def: 25
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 645
	Script: <"
		bonus bMatkRate, -100; // @EVOL2
	">
},
{
	Id: 649
	AegisName: "WhiteEvokersRobeBlue"
	Name: "WhiteEvokersRobeBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 50
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 649
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
		bonus bCriticalDef, 10;
	">
},
{
	Id: 650
	AegisName: "BlackEvokersRobeBlue"
	Name: "BlackEvokersRobeBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 50
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 650
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
		bonus bCriticalDef, 10;
	">
},
{
	Id: 651
	AegisName: "WhiteWizardRobe"
	Name: "WhiteWizardRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 50
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 651
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
	">
},
{
	Id: 652
	AegisName: "BlackWizardRobe"
	Name: "BlackWizardRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 50
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 652
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
	">
},
{
	Id: 653
	AegisName: "ApprenticeRobe"
	Name: "ApprenticeRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 50
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 653
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
		bonus bCriticalDef, 10;
	">
},
{
	Id: 658
	AegisName: "WarlordPlate"
	Name: "WarlordPlate"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 3000
	Weight: 2600
	Matk: -170
	Def: 27
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 658
	Script: <"
		bonus bMatkRate, -170; // @EVOL2
	">
},
{
	Id: 659
	AegisName: "GoldenWarlordPlate"
	Name: "GoldenWarlordPlate"
	Type: "IT_ARMOR"
	Buy: 500000
	Sell: 4000
	Weight: 7600
	Matk: -110
	Def: 27
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 659
	Script: <"
		bonus bMatkRate, -110; // @EVOL2
	">
},
{
	Id: 688
	AegisName: "TankTop"
	Name: "TankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 10
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 688
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 689
	AegisName: "ShortTankTop"
	Name: "ShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 689
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 720
	AegisName: "SilkRobe"
	Name: "SilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 720
},
{
	Id: 726
	AegisName: "GMRobe"
	Name: "GMRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 0
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 726
	Nouse: {
		override: 60
	}
},
{
	Id: 755
	AegisName: "AssassinShirt"
	Name: "AssassinShirt"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 3000
	Weight: 15
	Matk: -5
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_MID"
	EquipLv: 90
	Refine: false
	ViewSprite: 755
	Script: <"
		callfunc "BrawlingItem", EQI_HEAD_MID; // @EVOL2
		//callfunc "BrawlingItem"; // @TMWA
		bonus bAgi, 15;
		bonus bSpeedAddRate, 10;
		bonus bFlee, 20;
		bonus bHit, 20;
		bonus bMaxHP, 200;
		bonus bMatkRate, -5; // @EVOL2
	">
},
{
	Id: 767
	AegisName: "TerraniteChestArmor"
	Name: "TerraniteChestArmor"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 3000
	Weight: 800
	Matk: -70
	Def: 20
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 767
	Script: <"
		bonus bMatkRate, -70; // @EVOL2
		bonus bDex, 1;
		bonus bMdef, 10;
	">
},
{
	Id: 782
	AegisName: "ForestArmor"
	Name: "ForestArmor"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 40
	Matk: -20
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 782
	Script: <"
		bonus bMatkRate, -20; // @EVOL2
		bonus bDex, 3;
	">
},
{
	Id: 783
	AegisName: "PlatynaRedDress"
	Name: "PlatynaRedDress"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 50000
	Weight: 35
	Matk: 3
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 783
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 791
	AegisName: "YetiSkinShirt"
	Name: "YetiSkinShirt"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 10000
	Weight: 20
	Matk: -12
	Def: 12
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 791
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 793
	AegisName: "BromenalChest"
	Name: "BromenalChest"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 3000
	Weight: 2000
	Matk: -170
	Def: 25
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 793
	Script: <"
		bonus bMatkRate, -170; // @EVOL2
	">
},
{
	Id: 798
	AegisName: "SorcererRed"
	Name: "SorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 5
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 798
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 870
	AegisName: "FineDress"
	Name: "FineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 870
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 880
	AegisName: "LazuriteRobe"
	Name: "LazuriteRobe"
	Type: "IT_ARMOR"
	Buy: 92000
	Sell: 52000
	Weight: 30
	Matk: 60
	Def: 7
	Slots: 0
	Loc: "EQP_HEAD_MID"
	EquipLv: 90
	Refine: false
	ViewSprite: 880
	OnEquipScript: <"
		callfunc "RequireStat", bInt, 70, EQI_HEAD_MID;
		callfunc "RequireStat", bVit, 40, EQI_HEAD_MID;
	">
	Script: <"
		bonus bDef2Rate, -40;
		bonus bMatkRate, 60; // @EVOL2
		bonus bMdef, 60;
		bonus bVit, -1;
		bonus bInt, 7;
		bonus bLuk, -1;
		bonus bDex, -1;
		bonus bStr, -1;
	">
},
{
	Id: 1178
	AegisName: "Contributor"
	Name: "Contributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1178
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 1183
	AegisName: "AmberChristmasSweater"
	Name: "AmberChristmasSweater"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 35
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1183
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 1184
	AegisName: "FunkyChristmasSweater"
	Name: "FunkyChristmasSweater"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 35
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1184
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 1185
	AegisName: "PinkChristmasSweater"
	Name: "PinkChristmasSweater"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1185
},
{
	Id: 1186
	AegisName: "DarkChristmasSweater"
	Name: "DarkChristmasSweater"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 35
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1186
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 1187
	AegisName: "BlueChristmasSweater"
	Name: "BlueChristmasSweater"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1187
},
{
	Id: 1202
	AegisName: "CottonShirt"
	Name: "CottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 13
	Matk: -2
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 1202
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 2050
	AegisName: "RedCottonShirt"
	Name: "RedCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2050
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2051
	AegisName: "GreenCottonShirt"
	Name: "GreenCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2051
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2052
	AegisName: "DarkBlueCottonShirt"
	Name: "DarkBlueCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2052
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2053
	AegisName: "YellowCottonShirt"
	Name: "YellowCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2053
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2054
	AegisName: "LightBlueCottonShirt"
	Name: "LightBlueCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2054
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2055
	AegisName: "PinkCottonShirt"
	Name: "PinkCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2055
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2056
	AegisName: "BlackCottonShirt"
	Name: "BlackCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2056
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2057
	AegisName: "OrangeCottonShirt"
	Name: "OrangeCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2057
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2058
	AegisName: "PurpleCottonShirt"
	Name: "PurpleCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2058
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2059
	AegisName: "DarkGreenCottonShirt"
	Name: "DarkGreenCottonShirt"
	Type: "IT_ARMOR"
	Buy: 300
	Sell: 5
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2059
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2060
	AegisName: "RedVNeckSweater"
	Name: "RedVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2060
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2061
	AegisName: "GreenVNeckSweater"
	Name: "GreenVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2061
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2062
	AegisName: "DarkBlueVNeckSweater"
	Name: "DarkBlueVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2062
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2063
	AegisName: "YellowVNeckSweater"
	Name: "YellowVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2063
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2064
	AegisName: "LightBlueVNeckSweater"
	Name: "LightBlueVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2064
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2065
	AegisName: "PinkVNeckSweater"
	Name: "PinkVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2065
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2066
	AegisName: "BlackVNeckSweater"
	Name: "BlackVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2066
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2067
	AegisName: "OrangeVNeckSweater"
	Name: "OrangeVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2067
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2068
	AegisName: "PurpleVNeckSweater"
	Name: "PurpleVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2068
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2069
	AegisName: "DarkGreenVNeckSweater"
	Name: "DarkGreenVNeckSweater"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 135
	Matk: -16
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2069
	Script: <"
		bonus bMatkRate, -16; // @EVOL2
	">
},
{
	Id: 2070
	AegisName: "RedTurtleneck"
	Name: "RedTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2070
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2071
	AegisName: "GreenTurtleneck"
	Name: "GreenTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2071
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2072
	AegisName: "DarkBlueTurtleneck"
	Name: "DarkBlueTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2072
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2073
	AegisName: "YellowTurtleneck"
	Name: "YellowTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2073
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2074
	AegisName: "LightBlueTurtleneck"
	Name: "LightBlueTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2074
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2075
	AegisName: "PinkTurtleneck"
	Name: "PinkTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2075
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2076
	AegisName: "BlackTurtleneck"
	Name: "BlackTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2076
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2077
	AegisName: "OrangeTurtleneck"
	Name: "OrangeTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2077
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2078
	AegisName: "PurpleTurtleneck"
	Name: "PurpleTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2078
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2079
	AegisName: "DarkGreenTurtleneck"
	Name: "DarkGreenTurtleneck"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 135
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2079
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 2080
	AegisName: "RedSilkRobe"
	Name: "RedSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2080
},
{
	Id: 2081
	AegisName: "GreenSilkRobe"
	Name: "GreenSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2081
},
{
	Id: 2082
	AegisName: "DarkBlueSilkRobe"
	Name: "DarkBlueSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2082
},
{
	Id: 2083
	AegisName: "YellowSilkRobe"
	Name: "YellowSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2083
},
{
	Id: 2084
	AegisName: "LightBlueSilkRobe"
	Name: "LightBlueSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2084
},
{
	Id: 2085
	AegisName: "PinkSilkRobe"
	Name: "PinkSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2085
},
{
	Id: 2086
	AegisName: "BlackSilkRobe"
	Name: "BlackSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2086
},
{
	Id: 2087
	AegisName: "OrangeSilkRobe"
	Name: "OrangeSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2087
},
{
	Id: 2088
	AegisName: "PurpleSilkRobe"
	Name: "PurpleSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2088
},
{
	Id: 2089
	AegisName: "DarkGreenSilkRobe"
	Name: "DarkGreenSilkRobe"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 90
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2089
},
{
	Id: 2090
	AegisName: "RedTankTop"
	Name: "RedTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2090
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2091
	AegisName: "GreenTankTop"
	Name: "GreenTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2091
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2092
	AegisName: "DarkBlueTankTop"
	Name: "DarkBlueTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2092
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2093
	AegisName: "YellowTankTop"
	Name: "YellowTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2093
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2094
	AegisName: "LightBlueTankTop"
	Name: "LightBlueTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2094
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2095
	AegisName: "PinkTankTop"
	Name: "PinkTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2095
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2096
	AegisName: "BlackTankTop"
	Name: "BlackTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2096
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2097
	AegisName: "OrangeTankTop"
	Name: "OrangeTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2097
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2098
	AegisName: "PurpleTankTop"
	Name: "PurpleTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2098
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2099
	AegisName: "DarkGreenTankTop"
	Name: "DarkGreenTankTop"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 12
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2099
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2120
	AegisName: "RedShortTankTop"
	Name: "RedShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2120
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2121
	AegisName: "GreenShortTankTop"
	Name: "GreenShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2121
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2122
	AegisName: "DarkBlueShortTankTop"
	Name: "DarkBlueShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2122
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2123
	AegisName: "YellowShortTankTop"
	Name: "YellowShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2123
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2124
	AegisName: "LightBlueShortTankTop"
	Name: "LightBlueShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2124
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2125
	AegisName: "PinkShortTankTop"
	Name: "PinkShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2125
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2126
	AegisName: "BlackShortTankTop"
	Name: "BlackShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2126
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2127
	AegisName: "OrangeShortTankTop"
	Name: "OrangeShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2127
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2128
	AegisName: "PurpleShortTankTop"
	Name: "PurpleShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2128
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2129
	AegisName: "DarkGreenShortTankTop"
	Name: "DarkGreenShortTankTop"
	Type: "IT_ARMOR"
	Buy: 600
	Sell: 300
	Weight: 8
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2129
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2220
	AegisName: "RedSorcererRed"
	Name: "RedSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2220
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2221
	AegisName: "GreenSorcererRed"
	Name: "GreenSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2221
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2222
	AegisName: "DarkBlueSorcererRed"
	Name: "DarkBlueSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2222
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2223
	AegisName: "YellowSorcererRed"
	Name: "YellowSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2223
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2224
	AegisName: "LightBlueSorcererRed"
	Name: "LightBlueSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2224
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2225
	AegisName: "PinkSorcererRed"
	Name: "PinkSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2225
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2226
	AegisName: "BlackSorcererRed"
	Name: "BlackSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2226
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2227
	AegisName: "OrangeSorcererRed"
	Name: "OrangeSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2227
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2228
	AegisName: "PurpleSorcererRed"
	Name: "PurpleSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2228
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2229
	AegisName: "DarkGreenSorcererRed"
	Name: "DarkGreenSorcererRed"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2229
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 2240
	AegisName: "RedFineDress"
	Name: "RedFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2240
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2241
	AegisName: "GreenFineDress"
	Name: "GreenFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2241
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2242
	AegisName: "DarkBlueFineDress"
	Name: "DarkBlueFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2242
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2243
	AegisName: "YellowFineDress"
	Name: "YellowFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2243
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2244
	AegisName: "LightBlueFineDress"
	Name: "LightBlueFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2244
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2245
	AegisName: "PinkFineDress"
	Name: "PinkFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2245
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2246
	AegisName: "BlackFineDress"
	Name: "BlackFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2246
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2247
	AegisName: "OrangeFineDress"
	Name: "OrangeFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2247
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2248
	AegisName: "PurpleFineDress"
	Name: "PurpleFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2248
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 2249
	AegisName: "DarkGreenFineDress"
	Name: "DarkGreenFineDress"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 35
	Matk: 20
	Def: 8
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 2249
	Script: <"
		bonus bMatkRate, 3; // @EVOL2
	">
},
{
	Id: 5000
	AegisName: "RedSorcererGreen"
	Name: "RedSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5000
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5001
	AegisName: "GreenSorcererGreen"
	Name: "GreenSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5001
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5002
	AegisName: "DarkBlueSorcererGreen"
	Name: "DarkBlueSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5002
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5003
	AegisName: "YellowSorcererGreen"
	Name: "YellowSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5003
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5004
	AegisName: "LightBlueSorcererGreen"
	Name: "LightBlueSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5004
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5005
	AegisName: "PinkSorcererGreen"
	Name: "PinkSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5005
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5006
	AegisName: "BlackSorcererGreen"
	Name: "BlackSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5006
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5007
	AegisName: "OrangeSorcererGreen"
	Name: "OrangeSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5007
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5008
	AegisName: "PurpleSorcererGreen"
	Name: "PurpleSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5008
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5009
	AegisName: "DarkGreenSorcererGreen"
	Name: "DarkGreenSorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5009
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5010
	AegisName: "SorcererGreen"
	Name: "SorcererGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5010
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5011
	AegisName: "RedSorcererDBlue"
	Name: "RedSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5011
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5012
	AegisName: "GreenSorcererDBlue"
	Name: "GreenSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5012
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5013
	AegisName: "DarkBlueSorcererDBlue"
	Name: "DarkBlueSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5013
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5014
	AegisName: "YellowSorcererDBlue"
	Name: "YellowSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5014
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5015
	AegisName: "LightBlueSorcererDBlue"
	Name: "LightBlueSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5015
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5016
	AegisName: "PinkSorcererDBlue"
	Name: "PinkSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5016
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5017
	AegisName: "BlackSorcererDBlue"
	Name: "BlackSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5017
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5018
	AegisName: "OrangeSorcererDBlue"
	Name: "OrangeSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5018
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5019
	AegisName: "PurpleSorcererDBlue"
	Name: "PurpleSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5019
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5020
	AegisName: "DarkGreenSorcererDBlue"
	Name: "DarkGreenSorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5020
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5021
	AegisName: "SorcererDBlue"
	Name: "SorcererDBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5021
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5022
	AegisName: "RedSorcererYellow"
	Name: "RedSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5022
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5023
	AegisName: "GreenSorcererYellow"
	Name: "GreenSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5023
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5024
	AegisName: "DarkBlueSorcererYellow"
	Name: "DarkBlueSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5024
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5025
	AegisName: "YellowSorcererYellow"
	Name: "YellowSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5025
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5026
	AegisName: "LightBlueSorcererYellow"
	Name: "LightBlueSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5026
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5027
	AegisName: "PinkSorcererYellow"
	Name: "PinkSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5027
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5028
	AegisName: "BlackSorcererYellow"
	Name: "BlackSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5028
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5029
	AegisName: "OrangeSorcererYellow"
	Name: "OrangeSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5029
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5030
	AegisName: "PurpleSorcererYellow"
	Name: "PurpleSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5030
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5031
	AegisName: "DarkGreenSorcererYellow"
	Name: "DarkGreenSorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5031
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5032
	AegisName: "SorcererYellow"
	Name: "SorcererYellow"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5032
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5033
	AegisName: "RedSorcererLBlue"
	Name: "RedSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5033
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5034
	AegisName: "GreenSorcererLBlue"
	Name: "GreenSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5034
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5035
	AegisName: "DarkBlueSorcererLBlue"
	Name: "DarkBlueSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5035
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5036
	AegisName: "YellowSorcererLBlue"
	Name: "YellowSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5036
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5037
	AegisName: "LightBlueSorcererLBlue"
	Name: "LightBlueSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5037
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5038
	AegisName: "PinkSorcererLBlue"
	Name: "PinkSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5038
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5039
	AegisName: "BlackSorcererLBlue"
	Name: "BlackSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5039
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5040
	AegisName: "OrangeSorcererLBlue"
	Name: "OrangeSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5040
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5041
	AegisName: "PurpleSorcererLBlue"
	Name: "PurpleSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5041
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5042
	AegisName: "DarkGreenSorcererLBlue"
	Name: "DarkGreenSorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5042
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5043
	AegisName: "SorcererLBlue"
	Name: "SorcererLBlue"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5043
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5044
	AegisName: "RedSorcererPink"
	Name: "RedSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5044
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5045
	AegisName: "GreenSorcererPink"
	Name: "GreenSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5045
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5046
	AegisName: "DarkBlueSorcererPink"
	Name: "DarkBlueSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5046
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5047
	AegisName: "YellowSorcererPink"
	Name: "YellowSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5047
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5048
	AegisName: "LightBlueSorcererPink"
	Name: "LightBlueSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5048
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5049
	AegisName: "PinkSorcererPink"
	Name: "PinkSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5049
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5050
	AegisName: "BlackSorcererPink"
	Name: "BlackSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5050
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5051
	AegisName: "OrangeSorcererPink"
	Name: "OrangeSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5051
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5052
	AegisName: "PurpleSorcererPink"
	Name: "PurpleSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5052
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5053
	AegisName: "DarkGreenSorcererPink"
	Name: "DarkGreenSorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5053
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5054
	AegisName: "SorcererPink"
	Name: "SorcererPink"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5054
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5055
	AegisName: "RedSorcererBlack"
	Name: "RedSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5055
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5056
	AegisName: "GreenSorcererBlack"
	Name: "GreenSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5056
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5057
	AegisName: "DarkBlueSorcererBlack"
	Name: "DarkBlueSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5057
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5058
	AegisName: "YellowSorcererBlack"
	Name: "YellowSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5058
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5059
	AegisName: "LightBlueSorcererBlack"
	Name: "LightBlueSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5059
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5060
	AegisName: "PinkSorcererBlack"
	Name: "PinkSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5060
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5061
	AegisName: "BlackSorcererBlack"
	Name: "BlackSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5061
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5062
	AegisName: "OrangeSorcererBlack"
	Name: "OrangeSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5062
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5063
	AegisName: "PurpleSorcererBlack"
	Name: "PurpleSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5063
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5064
	AegisName: "DarkGreenSorcererBlack"
	Name: "DarkGreenSorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5064
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5065
	AegisName: "SorcererBlack"
	Name: "SorcererBlack"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5065
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5066
	AegisName: "RedSorcererOrange"
	Name: "RedSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5066
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5067
	AegisName: "GreenSorcererOrange"
	Name: "GreenSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5067
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5068
	AegisName: "DarkBlueSorcererOrange"
	Name: "DarkBlueSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5068
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5069
	AegisName: "YellowSorcererOrange"
	Name: "YellowSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5069
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5070
	AegisName: "LightBlueSorcererOrange"
	Name: "LightBlueSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5070
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5071
	AegisName: "PinkSorcererOrange"
	Name: "PinkSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5071
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5072
	AegisName: "BlackSorcererOrange"
	Name: "BlackSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5072
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5073
	AegisName: "OrangeSorcererOrange"
	Name: "OrangeSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5073
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5074
	AegisName: "PurpleSorcererOrange"
	Name: "PurpleSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5074
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5075
	AegisName: "DarkGreenSorcererOrange"
	Name: "DarkGreenSorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5075
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5076
	AegisName: "SorcererOrange"
	Name: "SorcererOrange"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5076
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5077
	AegisName: "RedSorcererPurple"
	Name: "RedSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5077
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5078
	AegisName: "GreenSorcererPurple"
	Name: "GreenSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5078
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5079
	AegisName: "DarkBlueSorcererPurple"
	Name: "DarkBlueSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5079
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5080
	AegisName: "YellowSorcererPurple"
	Name: "YellowSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5080
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5081
	AegisName: "LightBlueSorcererPurple"
	Name: "LightBlueSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5081
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5082
	AegisName: "PinkSorcererPurple"
	Name: "PinkSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5082
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5083
	AegisName: "BlackSorcererPurple"
	Name: "BlackSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5083
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5084
	AegisName: "OrangeSorcererPurple"
	Name: "OrangeSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5084
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5085
	AegisName: "PurpleSorcererPurple"
	Name: "PurpleSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5085
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5086
	AegisName: "DarkGreenSorcererPurple"
	Name: "DarkGreenSorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5086
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5087
	AegisName: "SorcererPurple"
	Name: "SorcererPurple"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5087
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5088
	AegisName: "RedSorcererDGreen"
	Name: "RedSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5088
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5089
	AegisName: "GreenSorcererDGreen"
	Name: "GreenSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5089
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5090
	AegisName: "DarkBlueSorcererDGreen"
	Name: "DarkBlueSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5090
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5091
	AegisName: "YellowSorcererDGreen"
	Name: "YellowSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5091
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5092
	AegisName: "LightBlueSorcererDGreen"
	Name: "LightBlueSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5092
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5093
	AegisName: "PinkSorcererDGreen"
	Name: "PinkSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5093
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5094
	AegisName: "BlackSorcererDGreen"
	Name: "BlackSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5094
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5095
	AegisName: "OrangeSorcererDGreen"
	Name: "OrangeSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5095
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5096
	AegisName: "PurpleSorcererDGreen"
	Name: "PurpleSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5096
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5097
	AegisName: "DarkGreenSorcererDGreen"
	Name: "DarkGreenSorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5097
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5098
	AegisName: "SorcererDGreen"
	Name: "SorcererDGreen"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5098
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5099
	AegisName: "RedSorcererWhite"
	Name: "RedSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5099
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5100
	AegisName: "GreenSorcererWhite"
	Name: "GreenSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5100
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5101
	AegisName: "DarkBlueSorcererWhite"
	Name: "DarkBlueSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5101
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5102
	AegisName: "YellowSorcererWhite"
	Name: "YellowSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5102
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5103
	AegisName: "LightBlueSorcererWhite"
	Name: "LightBlueSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5103
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5104
	AegisName: "PinkSorcererWhite"
	Name: "PinkSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5104
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5105
	AegisName: "BlackSorcererWhite"
	Name: "BlackSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5105
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5106
	AegisName: "OrangeSorcererWhite"
	Name: "OrangeSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5106
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5107
	AegisName: "PurpleSorcererWhite"
	Name: "PurpleSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5107
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5108
	AegisName: "DarkGreenSorcererWhite"
	Name: "DarkGreenSorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5108
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5109
	AegisName: "SorcererWhite"
	Name: "SorcererWhite"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 30
	Matk: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5109
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bAgi, 1;
	">
},
{
	Id: 5131
	AegisName: "RedContributor"
	Name: "RedContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5131
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5132
	AegisName: "GreenContributor"
	Name: "GreenContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5132
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5133
	AegisName: "DarkBlueContributor"
	Name: "DarkBlueContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5133
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5134
	AegisName: "YellowContributor"
	Name: "YellowContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5134
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5135
	AegisName: "LightBlueContributor"
	Name: "LightBlueContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5135
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5136
	AegisName: "PinkContributor"
	Name: "PinkContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5136
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5137
	AegisName: "BlackContributor"
	Name: "BlackContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5137
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5138
	AegisName: "OrangeContributor"
	Name: "OrangeContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5138
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5139
	AegisName: "PurpleContributor"
	Name: "PurpleContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5139
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5140
	AegisName: "DarkGreenContributor"
	Name: "DarkGreenContributor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5140
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5254
	AegisName: "SaviorArmor"
	Name: "SaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5254
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5286
	AegisName: "RedArmor"
	Name: "Red Knight Armor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -40
	Def: 27
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5286
	Script: <"
		bonus bMatkRate, -40; // @EVOL2
		bonus bDex, 1;
		bonus bAgi, 1;
		bonus bMaxHP, 1500;
	">
	Nouse: {
		override: 1
	}
},
{
	Id: 5299
	AegisName: "RedSaviorArmor"
	Name: "RedSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5299
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5300
	AegisName: "GreenSaviorArmor"
	Name: "GreenSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5300
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5301
	AegisName: "DarkBlueSaviorArmor"
	Name: "DarkBlueSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5301
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5302
	AegisName: "YellowSaviorArmor"
	Name: "YellowSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5302
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5303
	AegisName: "LightBlueSaviorArmor"
	Name: "LightBlueSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5303
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5304
	AegisName: "PinkSaviorArmor"
	Name: "PinkSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5304
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5305
	AegisName: "BlackSaviorArmor"
	Name: "BlackSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5305
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5306
	AegisName: "OrangeSaviorArmor"
	Name: "OrangeSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5306
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5307
	AegisName: "PurpleSaviorArmor"
	Name: "PurpleSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5307
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5308
	AegisName: "DarkGreenSaviorArmor"
	Name: "DarkGreenSaviorArmor"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 2000
	Matk: -90
	Def: 24
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5308
	Script: <"
		bonus bMatkRate, -90; // @EVOL2
		bonus bDex, 1;
		bonus bMaxHP, 100;
	">
},
{
	Id: 5320
	AegisName: "BlackChainmailShirt"
	Name: "BlackChainmailShirt"
	Type: "IT_ARMOR"
	Buy: 15000
	Sell: 1500
	Weight: 800
	Matk: -120
	Def: 20
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5320
	Script: <"
		bonus bMatkRate, -120; // @EVOL2
	">
},
{
	Id: 5321
	AegisName: "BlackLightPlatemail"
	Name: "BlackLightPlatemail"
	Type: "IT_ARMOR"
	Buy: 50000
	Sell: 2500
	Weight: 1200
	Matk: -150
	Def: 25
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5321
	Script: <"
		bonus bMatkRate, -150; // @EVOL2
	">
},
{
	Id: 5322
	AegisName: "BlackWarlordPlate"
	Name: "BlackWarlordPlate"
	Type: "IT_ARMOR"
	Buy: 200000
	Sell: 6000
	Weight: 2600
	Matk: -170
	Def: 27
	Slots: 0
	Loc: "EQP_HEAD_MID"
	Refine: false
	ViewSprite: 5322
	Script: <"
		bonus bMatkRate, -170; // @EVOL2
	">
},
//////////////////////////////////////////////////////////
// Hats
{
	Id: 511
	AegisName: "SantaHat"
	Name: "SantaHat"
	Type: "IT_ARMOR"
	Buy: 400
	Sell: 200
	Weight: 20
	Matk: -2
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 511
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 524
	AegisName: "FancyHat"
	Name: "FancyHat"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 524
},
{
	Id: 525
	AegisName: "MinersHat"
	Name: "MinersHat"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 40
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 525
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 543
	AegisName: "StandardHeadband"
	Name: "StandardHeadband"
	Type: "IT_ARMOR"
	Buy: 800
	Sell: 400
	Weight: 10
	Matk: -3
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 543
	Script: <"
		bonus bMatkRate, -3; // @EVOL2
	">
},
{
	Id: 544
	AegisName: "SilkHeadband"
	Name: "SilkHeadband"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2000
	Weight: 10
	Matk: -10
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 544
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 615
	AegisName: "PumpkinHelmet"
	Name: "PumpkinHelmet"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 60
	Matk: -4
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 615
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 616
	AegisName: "AxeHat"
	Name: "AxeHat"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 50
	Matk: -4
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 616
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 617
	AegisName: "PirateHat"
	Name: "PirateHat"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 40
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 617
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 618
	AegisName: "Goggles"
	Name: "Goggles"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 618
},
{
	Id: 619
	AegisName: "LeatherGoggles"
	Name: "LeatherGoggles"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 619
},
{
	Id: 620
	AegisName: "Circlet"
	Name: "Circlet"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 25
	Matk: 5
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 620
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 621
	AegisName: "Eyepatch"
	Name: "Eyepatch"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 5
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 621
},
{
	Id: 622
	AegisName: "Bandana"
	Name: "Bandana"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 622
},
{
	Id: 627
	AegisName: "TopHat"
	Name: "TopHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 627
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 628
	AegisName: "FunkyHat"
	Name: "FunkyHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 20
	Matk: 2
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 628
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 629
	AegisName: "MushHat"
	Name: "MushHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 629
},
{
	Id: 630
	AegisName: "ShroomHat"
	Name: "ShroomHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 30
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 630
},
{
	Id: 633
	AegisName: "ChristmasElfHat"
	Name: "ChristmasElfHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 30
	Matk: 2
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 633
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 634
	AegisName: "FaceMask"
	Name: "FaceMask"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 50
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 634
},
{
	Id: 636
	AegisName: "WarlordHelmet"
	Name: "WarlordHelmet"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 900
	Matk: -36
	Def: 18
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 636
	Script: <"
		bonus bMatkRate, -36; // @EVOL2
	">
},
{
	Id: 637
	AegisName: "KnightsHelmet"
	Name: "KnightsHelmet"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 2000
	Weight: 600
	Matk: -30
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 637
	Script: <"
		bonus bMatkRate, -30; // @EVOL2
	">
},
{
	Id: 638
	AegisName: "InfantryHelmet"
	Name: "InfantryHelmet"
	Type: "IT_ARMOR"
	Buy: 15000
	Sell: 1500
	Weight: 400
	Matk: -30
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 638
	Script: <"
		bonus bMatkRate, -30; // @EVOL2
	">
},
{
	Id: 639
	AegisName: "CrusadeHelmet"
	Name: "CrusadeHelmet"
	Type: "IT_ARMOR"
	Buy: 25000
	Sell: 2500
	Weight: 1300
	Matk: -36
	Def: 18
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 639
	Script: <"
		bonus bMatkRate, -36; // @EVOL2
	">
},
{
	Id: 643
	AegisName: "WhiteCowboyHat"
	Name: "WhiteCowboyHat"
	Type: "IT_ARMOR"
	Buy: 1800
	Sell: 900
	Weight: 30
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 643
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 644
	AegisName: "BlackCowboyHat"
	Name: "BlackCowboyHat"
	Type: "IT_ARMOR"
	Buy: 1800
	Sell: 900
	Weight: 30
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 644
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 646
	AegisName: "Crown"
	Name: "Crown"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 240
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 646
},
{
	Id: 647
	AegisName: "DevelopersCap"
	Name: "DevelopersCap"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 647
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 654
	AegisName: "Cap"
	Name: "Cap"
	Type: "IT_ARMOR"
	Buy: 4000000
	Sell: 500
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 654
},
{
	Id: 656
	AegisName: "SerfHat"
	Name: "SerfHat"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 656
},
{
	Id: 675
	AegisName: "GraduationCap"
	Name: "GraduationCap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 250
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 675
	Script: <"
		bonus bInt, 1;
	">
},
{
	Id: 678
	AegisName: "NohMask"
	Name: "NohMask"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 1000
	Weight: 18
	Matk: 1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 678
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 679
	AegisName: "DemonMask"
	Name: "DemonMask"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 23
	Matk: 5
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 679
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 721
	AegisName: "HighPriestCrown"
	Name: "HighPriestCrown"
	Type: "IT_ARMOR"
	Buy: 6000000
	Sell: 5000
	Weight: 400
	Matk: 20
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 721
	Script: <"
		bonus bMatkRate, 20; // @EVOL2
		bonus bMaxSP, 20;
	">
},
{
	Id: 722
	AegisName: "MonsterSkullHelmet"
	Name: "MonsterSkullHelmet"
	Type: "IT_ARMOR"
	Buy: 6000000
	Sell: 3000
	Weight: 250
	Matk: 10
	Def: 7
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 722
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 20;
	">
},
{
	Id: 723
	AegisName: "DesertHat"
	Name: "DesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 723
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 724
	AegisName: "CottonHeadband"
	Name: "CottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 724
},
{
	Id: 725
	AegisName: "GMCap"
	Name: "GMCap"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 0
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 725
	Nouse: {
		override: 60
	}
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 751
	AegisName: "PinkieHat"
	Name: "PinkieHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 5
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 751
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 752
	AegisName: "FluffyHat"
	Name: "FluffyHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 2000
	Weight: 10
	Matk: -5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 752
	Script: <"
		bonus bMatkRate, -5; // @EVOL2
	">
},
{
	Id: 759
	AegisName: "PaladinsHelmet"
	Name: "PaladinsHelmet"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 500
	Def: 19
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 759
},
{
	Id: 760
	AegisName: "OverlordsHelmet"
	Name: "OverlordsHelmet"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 1800
	Matk: -60
	Def: 44
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 760
	Script: <"
		//bonus bSpeedCap, DEFAULT_WALK_SPEED; // @TMWA
		bonus bMatkRate, -60; // @EVOL2
		bonus bMdef, -60;
		//bonus bAllStats, -2; // @//TMWA (TODO: Disabled temporarily)
		bonus bFlee, -20;
	">
},
{
	Id: 761
	AegisName: "DesertHelmet"
	Name: "DesertHelmet"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 600
	Matk: -25
	Def: 21
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 761
	Script: <"
		bonus bMatkRate, -25; // @EVOL2
	">
	//Disabled: true // @TMWA
},
{
	Id: 764
	AegisName: "SailorHat"
	Name: "SailorHat"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 764
},
{
	Id: 765
	AegisName: "CaptainsHat"
	Name: "CaptainsHat"
	Type: "IT_ARMOR"
	Buy: 0
	Sell: 0
	Weight: 20
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 765
},
{
	Id: 766
	AegisName: "TerraniteHelmet"
	Name: "TerraniteHelmet"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 300
	Matk: -12
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 766
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 769
	AegisName: "GuyFawkesMask"
	Name: "GuyFawkesMask"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 769
},
{
	Id: 770
	AegisName: "FairyHat"
	Name: "FairyHat"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 20
	Matk: -10
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 770
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
		bonus bLuk, 3;
	">
},
{
	Id: 781
	AegisName: "WitchDoctorsMask"
	Name: "WitchDoctorsMask"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 100
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 781
},
{
	Id: 795
	AegisName: "BromenalHelmet"
	Name: "BromenalHelmet"
	Type: "IT_ARMOR"
	Buy: 15000
	Sell: 1500
	Weight: 400
	Matk: -30
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 795
	Script: <"
		bonus bMatkRate, -30; // @EVOL2
	">
},
{
	Id: 800
	AegisName: "BowlerHatBrown"
	Name: "BowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 800
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 801
	AegisName: "PinkieHelmet"
	Name: "PinkieHelmet"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 1500
	Weight: 800
	Matk: -20
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 801
	Script: <"
		bonus bMatkRate, -20; // @EVOL2
		bonus bLuk, 1;
	">
},
{
	Id: 848
	AegisName: "Earmuffs"
	Name: "Earmuffs"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -1
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 848
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 854
	AegisName: "ElfNightcap"
	Name: "ElfNightcap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Matk: 5
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 854
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 855
	AegisName: "Sunglasses"
	Name: "Sunglasses"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 10
	Matk: 6
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 855
	Script: <"
		bonus bMatkRate, 6; // @EVOL2
	">
},
{
	Id: 856
	AegisName: "KnitCap"
	Name: "KnitCap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 856
},
{
	Id: 877
	AegisName: "BullHelmet"
	Name: "BullHelmet"
	Type: "IT_ARMOR"
	Buy: 90000
	Sell: 45000
	Weight: 1300
	Matk: -52
	Def: 19
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 90
	Refine: false
	ViewSprite: 877
	OnEquipScript: <"
		callfunc "RequireStat", bStr, 70, EQI_HEAD_TOP;
		callfunc "RequireStat", bVit, 50, EQI_HEAD_TOP;
		callfunc "RequireStat", bLuk, 50, EQI_HEAD_TOP;
	">
	Script: <"
		bonus bMatkRate, -52; // @EVOL2
		bonus bDoubleAddRate, 20;
		bonus bStr, 10;
		bonus bCritical, 15;
		bonus bAspdRate, 10;
		bonus bDef2Rate, -39;
		bonus bHit, -15;
	">
},
{
	Id: 882
	AegisName: "RedEggshellHat"
	Name: "RedEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 882
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 883
	AegisName: "BlueEggshellHat"
	Name: "BlueEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 883
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 884
	AegisName: "YellowEggshellHat"
	Name: "YellowEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 884
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 885
	AegisName: "GreenEggshellHat"
	Name: "GreenEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 885
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 886
	AegisName: "OrangeEggshellHat"
	Name: "OrangeEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 886
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 887
	AegisName: "DarkEggshellHat"
	Name: "DarkEggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 887
	Script: <"
		bonus bMdef, 3;
	">
},
{
	Id: 888
	AegisName: "MagicGMTopHat"
	Name: "MagicGMTopHat"
	Type: "IT_ARMOR"
	Buy: 4200
	Sell: 1900
	Weight: 30
	Matk: 20
	Def: 60
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 888
	Nouse: {
		override: 50
	}
	Script: <"
		bonus bMaxHP, 31000;
		bonus bFlee, -200;
		bonus bHPrecovRate, -400;
		bonus bCriticalDef, 250;
		bonus bMdef, 89;
		bonus bMatkRate, 20; // @EVOL2
	">
},
{
	Id: 889
	AegisName: "MurdererCrown"
	Name: "MurdererCrown"
	Type: "IT_ARMOR"
	Buy: 75000
	Sell: 12000
	Weight: 240
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 889
},
{
	Id: 890
	AegisName: "BeanieCopter"
	Name: "BeanieCopter"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 2000
	Weight: 20
	Matk: 2
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 890
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 897
	AegisName: "RedRoseHat"
	Name: "RedRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 897
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 898
	AegisName: "WhiteRoseHat"
	Name: "WhiteRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 898
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 899
	AegisName: "PinkRoseHat"
	Name: "PinkRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 899
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 900
	AegisName: "YellowRoseHat"
	Name: "YellowRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 900
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 901
	AegisName: "OrangeRoseHat"
	Name: "OrangeRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 901
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 902
	AegisName: "BlueRoseHat"
	Name: "BlueRoseHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 1000
	Weight: 0
	Matk: 8
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 902
	Script: <"
		bonus bMatkRate, 8; // @EVOL2
	">
},
{
	Id: 905
	AegisName: "BucketHat"
	Name: "BucketHat"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 905
},
{
	Id: 1173
	AegisName: "TamOShanter"
	Name: "TamOShanter"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 500
	Weight: 20
	Matk: -2
	Def: 9
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1173
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 1174
	AegisName: "CashiersShade"
	Name: "CashiersShade"
	Type: "IT_ARMOR"
	Buy: 4000
	Sell: 500
	Weight: 15
	Matk: -10
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1174
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 1175
	AegisName: "AutumnMask"
	Name: "AutumnMask"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 500
	Weight: 10
	Matk: 4
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1175
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 1190
	AegisName: "NutcrackerHat"
	Name: "NutcrackerHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: 2
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1190
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 1196
	AegisName: "Beret"
	Name: "Beret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1196
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 1203
	AegisName: "RangerHat"
	Name: "RangerHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -1
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1203
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 1204
	AegisName: "AntlerHat"
	Name: "AntlerHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 15
	Matk: 2
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1204
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 1205
	AegisName: "ChristmasTreeHat"
	Name: "ChristmasTreeHat"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1205
},
{
	Id: 1206
	AegisName: "SantaBeardHat"
	Name: "SantaBeardHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: 2
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1206
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 1214
	AegisName: "BunnyEars"
	Name: "BunnyEars"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2000
	Weight: 20
	Matk: 1
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1214
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
	">
},
{
	Id: 1216
	AegisName: "MoubooHead"
	Name: "MoubooHead"
	Type: "IT_ARMOR"
	Buy: 10
	Sell: 1
	Weight: 80
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1216
},
{
	Id: 1217
	AegisName: "CatEars"
	Name: "CatEars"
	Type: "IT_ARMOR"
	Buy: 100
	Sell: 50
	Weight: 20
	Matk: 1
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1217
	Script: <"
		bonus bMatkRate, 1; // @EVOL2
		bonus bAgi, 3;
	">
},
{
	Id: 1218
	AegisName: "PaperBag"
	Name: "PaperBag"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 5
	Weight: 10
	Matk: -1
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1218
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
		bonus bAgi, -1;
	">
},
{
	Id: 1219
	AegisName: "MoubootaurHead"
	Name: "MoubootaurHead"
	Type: "IT_ARMOR"
	Buy: 10
	Sell: 1
	Weight: 80
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1219
	Nouse: {
		override: 1
	}
},
{
	Id: 1220
	AegisName: "BunchOfParsley"
	Name: "BunchOfParsley"
	Type: "IT_ARMOR"
	Buy: 3
	Sell: 1
	Weight: 1
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1220
	Script: <"
		bonus bDeaf, 1; // FIXME SC_SILENCE or Manner = 0 or whatever
	">
},
{
	Id: 1221
	AegisName: "SkullMask"
	Name: "SkullMask"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 150
	Matk: 5
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1221
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 1242
	AegisName: "SnowGoggles"
	Name: "SnowGoggles"
	Type: "IT_ARMOR"
	Buy: 7500
	Sell: 3750
	Weight: 10
	Matk: -2
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1242
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 1247
	AegisName: "HeartGlasses"
	Name: "HeartGlasses"
	Type: "IT_ARMOR"
	Buy: 7500
	Sell: 3750
	Weight: 20
	Matk: 5
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1247
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 1255
	AegisName: "RabbitEars"
	Name: "RabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 20
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 1255
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 1256
	AegisName: "EggshellHat"
	Name: "EggshellHat"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Def: 12
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 1256
	Script: <"
		bonus bAgi, -1;
	">
},
{
	Id: 1275
	AegisName: "ReadingGlasses"
	Name: "ReadingGlasses"
	Type: "IT_ARMOR"
	Buy: 7500
	Sell: 3750
	Weight: 12
	Def: 0
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1275
	Script: <"
		bonus bInt, 3;
	">
},
{
	Id: 1276
	AegisName: "OperaMask"
	Name: "OperaMask"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1276
},
{
	Id: 1277
	AegisName: "JesterMask"
	Name: "JesterMask"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1277
},
{
	Id: 1278
	AegisName: "WitchHat"
	Name: "WitchHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1278
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 1279
	AegisName: "GoblinMask"
	Name: "GoblinMask"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 1279
},
{
	Id: 2130
	AegisName: "RedDesertHat"
	Name: "RedDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2130
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2131
	AegisName: "GreenDesertHat"
	Name: "GreenDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2131
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2132
	AegisName: "DarkBlueDesertHat"
	Name: "DarkBlueDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2132
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2133
	AegisName: "YellowDesertHat"
	Name: "YellowDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2133
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2134
	AegisName: "LightBlueDesertHat"
	Name: "LightBlueDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2134
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2135
	AegisName: "PinkDesertHat"
	Name: "PinkDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2135
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2136
	AegisName: "BlackDesertHat"
	Name: "BlackDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2136
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2137
	AegisName: "OrangeDesertHat"
	Name: "OrangeDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2137
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2138
	AegisName: "PurpleDesertHat"
	Name: "PurpleDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2138
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2139
	AegisName: "DarkGreenDesertHat"
	Name: "DarkGreenDesertHat"
	Type: "IT_ARMOR"
	Buy: 2400
	Sell: 600
	Weight: 20
	Matk: -1
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2139
	Script: <"
		bonus bMatkRate, -1; // @EVOL2
	">
},
{
	Id: 2140
	AegisName: "RedCottonHeadband"
	Name: "RedCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2140
},
{
	Id: 2141
	AegisName: "GreenCottonHeadband"
	Name: "GreenCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2141
},
{
	Id: 2142
	AegisName: "DarkBlueCottonHeadband"
	Name: "DarkBlueCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2142
},
{
	Id: 2143
	AegisName: "YellowCottonHeadband"
	Name: "YellowCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2143
},
{
	Id: 2144
	AegisName: "LightBlueCottonHeadband"
	Name: "LightBlueCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2144
},
{
	Id: 2145
	AegisName: "PinkCottonHeadband"
	Name: "PinkCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2145
},
{
	Id: 2146
	AegisName: "BlackCottonHeadband"
	Name: "BlackCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2146
},
{
	Id: 2147
	AegisName: "OrangeCottonHeadband"
	Name: "OrangeCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2147
},
{
	Id: 2148
	AegisName: "PurpleCottonHeadband"
	Name: "PurpleCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2148
},
{
	Id: 2149
	AegisName: "DarkGreenCottonHeadband"
	Name: "DarkGreenCottonHeadband"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 500
	Weight: 5
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2149
},
{
	Id: 2190
	AegisName: "RedRabbitEars"
	Name: "RedRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2190
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2191
	AegisName: "GreenRabbitEars"
	Name: "GreenRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2191
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2192
	AegisName: "DarkBlueRabbitEars"
	Name: "DarkBlueRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2192
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2193
	AegisName: "YellowRabbitEars"
	Name: "YellowRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2193
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2194
	AegisName: "LightBlueRabbitEars"
	Name: "LightBlueRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2194
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2195
	AegisName: "PinkRabbitEars"
	Name: "PinkRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2195
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2196
	AegisName: "BlackRabbitEars"
	Name: "BlackRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2196
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2197
	AegisName: "OrangeRabbitEars"
	Name: "OrangeRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2197
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2198
	AegisName: "PurpleRabbitEars"
	Name: "PurpleRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2198
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2199
	AegisName: "DarkGreenRabbitEars"
	Name: "DarkGreenRabbitEars"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 3500
	Weight: 15
	Matk: 4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2199
	Script: <"
		bonus bMatkRate, 4; // @EVOL2
	">
},
{
	Id: 2200
	AegisName: "RedWizardHat"
	Name: "RedWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2200
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2201
	AegisName: "GreenWizardHat"
	Name: "GreenWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2201
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2202
	AegisName: "DarkBlueWizardHat"
	Name: "DarkBlueWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2202
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2203
	AegisName: "YellowWizardHat"
	Name: "YellowWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2203
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2204
	AegisName: "LightBlueWizardHat"
	Name: "LightBlueWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2204
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2205
	AegisName: "PinkWizardHat"
	Name: "PinkWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2205
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2206
	AegisName: "BlackWizardHat"
	Name: "BlackWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2206
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2207
	AegisName: "OrangeWizardHat"
	Name: "OrangeWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2207
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2208
	AegisName: "PurpleWizardHat"
	Name: "PurpleWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2208
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2209
	AegisName: "DarkGreenWizardHat"
	Name: "DarkGreenWizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 2209
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 2210
	AegisName: "RedBowlerHat"
	Name: "RedBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2210
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2211
	AegisName: "GreenBowlerHat"
	Name: "GreenBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2211
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2212
	AegisName: "DarkBlueBowlerHat"
	Name: "DarkBlueBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2212
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2213
	AegisName: "YellowBowlerHat"
	Name: "YellowBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2213
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2214
	AegisName: "LightBlueBowlerHat"
	Name: "LightBlueBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2214
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2215
	AegisName: "PinkBowlerHat"
	Name: "PinkBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2215
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2216
	AegisName: "BlackBowlerHat"
	Name: "BlackBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2216
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2217
	AegisName: "OrangeBowlerHat"
	Name: "OrangeBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2217
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2218
	AegisName: "PurpleBowlerHat"
	Name: "PurpleBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2218
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2219
	AegisName: "DarkGreenBowlerHat"
	Name: "DarkGreenBowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2219
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2230
	AegisName: "RedBowlerHatBrown"
	Name: "RedBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2230
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2231
	AegisName: "GreenBowlerHatBrown"
	Name: "GreenBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2231
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2232
	AegisName: "DarkBlueBowlerHatBrown"
	Name: "DarkBlueBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2232
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2233
	AegisName: "YellowBowlerHatBrown"
	Name: "YellowBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2233
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2234
	AegisName: "LightBlueBowlerHatBrown"
	Name: "LightBlueBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2234
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2235
	AegisName: "PinkBowlerHatBrown"
	Name: "PinkBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2235
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2236
	AegisName: "BlackBowlerHatBrown"
	Name: "BlackBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2236
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2237
	AegisName: "OrangeBowlerHatBrown"
	Name: "OrangeBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2237
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2238
	AegisName: "PurpleBowlerHatBrown"
	Name: "PurpleBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2238
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2239
	AegisName: "DarkGreenBowlerHatBrown"
	Name: "DarkGreenBowlerHatBrown"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2239
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 2260
	AegisName: "RedBeret"
	Name: "RedBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2260
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2261
	AegisName: "GreenBeret"
	Name: "GreenBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2261
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2262
	AegisName: "DarkBlueBeret"
	Name: "DarkBlueBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2262
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2263
	AegisName: "YellowBeret"
	Name: "YellowBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2263
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2264
	AegisName: "LightBlueBeret"
	Name: "LightBlueBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2264
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2265
	AegisName: "PinkBeret"
	Name: "PinkBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2265
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2266
	AegisName: "BlackBeret"
	Name: "BlackBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2266
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2267
	AegisName: "OrangeBeret"
	Name: "OrangeBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2267
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2268
	AegisName: "PurpleBeret"
	Name: "PurpleBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2268
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2269
	AegisName: "DarkGreenBeret"
	Name: "DarkGreenBeret"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2269
	Script: <"
		bonus bAgi, 2;
	">
},
{
	Id: 2270
	AegisName: "BlinkingEvil"
	Name: "BlinkingEvil"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2270
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 2271
	AegisName: "BlinkingEvilRed"
	Name: "BlinkingEvilRed"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2271
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 2272
	AegisName: "BlinkingEvilBlue"
	Name: "BlinkingEvilBlue"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2272
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 2273
	AegisName: "BlinkingEvilPink"
	Name: "BlinkingEvilPink"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2273
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 2274
	AegisName: "BlinkingEvilYellow"
	Name: "BlinkingEvilYellow"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 2274
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 4020
	AegisName: "CandleHelmet"
	Name: "CandleHelmet"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 2000
	Weight: 450
	Matk: -25
	Def: 16
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4020
	Script: <"
		bonus bMatkRate, -25; // @EVOL2
		bonus bInt, 1;
		bonus bAgi, -1;
	">
},
{
	Id: 4027
	AegisName: "YetiMask"
	Name: "YetiMask"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 10
	Matk: -10
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4027
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 4028
	AegisName: "WizardHat"
	Name: "WizardHat"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 1
	Refine: false
	ViewSprite: 4028
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 4030
	AegisName: "BowlerHat"
	Name: "BowlerHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4030
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 4031
	AegisName: "Monocle"
	Name: "Monocle"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4031
	Script: <"
		bonus bDex, 1;
		bonus bLuk, 1;
		bonus bCritical, 10;
	">
},
{
	Id: 4032
	AegisName: "PanHat"
	Name: "PanHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 400
	Matk: -20
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4032
	Script: <"
		bonus bMatkRate, -20; // @EVOL2
	">
},
{
	Id: 4033
	AegisName: "ChefHat"
	Name: "ChefHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 30
	Matk: 2
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4033
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 4042
	AegisName: "RedNose"
	Name: "RedNose"
	Type: "IT_ARMOR"
	Buy: 4000
	Sell: 1000
	Weight: 4
	Matk: 7
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 4042
	Script: <"
		bonus bMatkRate, 7; // @EVOL2
	">
},
{
	Id: 5128
	AegisName: "DarkHelm"
	Name: "DarkHelm"
	Type: "IT_ARMOR"
	Buy: 50000
	Sell: 10000
	Weight: 800
	Def: 19
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5128
	Script: <"
		bonus bMaxHPrate, 10;
		bonus bHPrecovRate, 10;
		bonus bInt, -readparam(bInt);
	">
},
{
	Id: 5129
	AegisName: "UnderworldMask"
	Name: "UnderworldMask"
	Type: "IT_ARMOR"
	Buy: 50000
	Sell: 10000
	Weight: 100
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5129
	Script: <"
		callfunc "UnderworldTroll", EQI_HEAD_TOP;
		bonus bAtkRange, 2;
		bonus bInt, -readparam(bInt);
		bonus bAgi, 3;
		bonus bDex, 2;
	">
},
{
	Id: 5130
	AegisName: "Phylactery"
	Name: "Phylactery"
	Type: "IT_ARMOR"
	Buy: 50000
	Sell: 10000
	Weight: 20
	Matk: 90
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5130
	Script: <"
		bonus bAspdRate, 25;
		bonus bDex, -(readparam(bDex)/3);
		bonus bMatkRate, 90; // @EVOL2
	">
},
{
	Id: 5200
	AegisName: "PointyWitchHat"
	Name: "PointyWitchHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Matk: 5
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5200
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
		bonus bInt, 3;
	">
},
{
	Id: 5201
	AegisName: "Pipe"
	Name: "Pipe"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	EquipLv: 18
	Refine: false
	ViewSprite: 5201
	Script: <"
		bonus bDex, 1;
		bonus bLuk, 1;
		bonus bCritical, 10;
	">
},
{
	Id: 5202
	AegisName: "PilotHat"
	Name: "PilotHat"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 30
	Matk: 2
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5202
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 5203
	AegisName: "MoonshroomHat"
	Name: "MoonshroomHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 30
	Matk: 5
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5203
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 5204
	AegisName: "CarbonGasMask"
	Name: "CarbonGasMask"
	Type: "IT_ARMOR"
	Buy: 2500
	Sell: 1250
	Weight: 50
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5204
},
{
	Id: 5205
	AegisName: "EskimoHat"
	Name: "EskimoHat"
	Type: "IT_ARMOR"
	Buy: 7500
	Sell: 3750
	Weight: 10
	Matk: -2
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5205
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 5209
	AegisName: "TerraniteHead"
	Name: "TerraniteHead"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 500
	Matk: -30
	Def: 16
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5209
	Script: <"
		bonus bMatkRate, -30; // @EVOL2
		bonus bMdef, 5;
		bonus bAgi, 3;
		bonus bDex, 1;
	">
},
{
	Id: 5226
	AegisName: "GroovyHat"
	Name: "GroovyHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 20
	Matk: 2
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5226
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 5227
	AegisName: "JazzyHat"
	Name: "JazzyHat"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1500
	Weight: 20
	Matk: 2
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5227
	Script: <"
		bonus bMatkRate, 2; // @EVOL2
	">
},
{
	Id: 5228
	AegisName: "ChicSantaHat"
	Name: "ChicSantaHat"
	Type: "IT_ARMOR"
	Buy: 400
	Sell: 200
	Weight: 20
	Matk: -2
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5228
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 5229
	AegisName: "ScentedCandleHelmet"
	Name: "ScentedCandleHelmet"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 1
	Weight: 450
	Def: 10
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5229
	Script: <"
		bonus bInt, 2;
		addtimer 1, "ScentedCandle::OnEquip";
	">
	//Disabled: true // @TMWA
},
{
	Id: 5230
	AegisName: "AnniversaryHat"
	Name: "AnniversaryHat"
	Type: "IT_ARMOR"
	Buy: 100000
	Sell: 1
	Weight: 100
	Def: 12
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5230
	Script: <"
		bonus bInt, 2;
	">
},
{
	Id: 5231
	AegisName: "RedPresentHat"
	Name: "RedPresentHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5231
},
{
	Id: 5232
	AegisName: "GreenPresentHat"
	Name: "GreenPresentHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5232
},
{
	Id: 5233
	AegisName: "BluePresentHat"
	Name: "BluePresentHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5233
},
{
	Id: 5234
	AegisName: "YellowPresentHat"
	Name: "YellowPresentHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5234
},
{
	Id: 5238
	AegisName: "AFKCap"
	Name: "AFKCap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5238
},
{
	Id: 5239
	AegisName: "Aureole"
	Name: "Aureole"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 0
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5239
	Script: <"
		bonus bFlee, 50;
	">
},
{
	Id: 5240
	AegisName: "SmileyCap"
	Name: "SmileyCap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 1
	Weight: 60
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5240
},
{
	Id: 5241
	AegisName: "RedShades"
	Name: "RedShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5241
},
{
	Id: 5242
	AegisName: "GreenShades"
	Name: "GreenShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5242
},
{
	Id: 5243
	AegisName: "DarkBlueShades"
	Name: "DarkBlueShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5243
},
{
	Id: 5244
	AegisName: "YellowShades"
	Name: "YellowShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5244
},
{
	Id: 5245
	AegisName: "LightBlueShades"
	Name: "LightBlueShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5245
},
{
	Id: 5246
	AegisName: "PinkShades"
	Name: "PinkShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5246
},
{
	Id: 5247
	AegisName: "BlackShades"
	Name: "BlackShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5247
},
{
	Id: 5248
	AegisName: "OrangeShades"
	Name: "OrangeShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5248
},
{
	Id: 5249
	AegisName: "PurpleShades"
	Name: "PurpleShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5249
},
{
	Id: 5250
	AegisName: "DarkGreenShades"
	Name: "DarkGreenShades"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 20
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5250
},
{
	Id: 5255
	AegisName: "PVPCap"
	Name: "PVPCap"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 60
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5255
},
{
	Id: 5257
	AegisName: "GoldenPVPCap"
	Name: "GoldenPVPCap"
	Type: "IT_ARMOR"
	Buy: 500
	Sell: 100
	Weight: 60
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5257
},
{
	Id: 5258
	AegisName: "BlinkingHocus"
	Name: "BlinkingHocus"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 400
	Def: 0
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5258
},
{
	Id: 5259
	AegisName: "BlinkingEvilHalloween"
	Name: "BlinkingEvilHalloween"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 5000
	Weight: 50
	Matk: 10
	Def: 13
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5259
	Script: <"
		bonus bMatkRate, 10; // @EVOL2
		bonus bMdef, 5;
	">
},
{
	Id: 5262
	AegisName: "MovieCap"
	Name: "MovieCap"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5262
},
{
	Id: 5264
	AegisName: "BlueWolfHelmet"
	Name: "BlueWolfHelmet"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 3
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5264
},
{
	Id: 5266
	AegisName: "CloverHat"
	Name: "CloverHat"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 50
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5266
	Script: <"
		bonus bLuk, 1;
	">
},
{
	Id: 5267
	AegisName: "AssassinMask"
	Name: "Assassin Mask"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 10
	Matk: -5
	Def: 0
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5273
	Script: <"
		callfunc "BrawlingItem", EQI_HEAD_TOP;
		bonus bMdef, 5;
		bonus bAgi, 9;
		bonus bDex, 1;
		bonus bMaxHP, 70;
		bonus bCritical, 15;
		bonus bAspdRate, 15;
		bonus bDoubleAddRate, 15;
		bonus bMatkRate, -5; // @EVOL2
	">
},
{
	Id: 5280
	AegisName: "LeprechaunHat"
	Name: "Leprechaun Hat"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5280
	Script: <"
		bonus bLuk, 1;
	">
},
{
	Id: 5281
	AegisName: "PartyHatR"
	Name: "Party Hat Red"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5281
},
{
	Id: 5282
	AegisName: "PartyHatG"
	Name: "Party Hat Green"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5282
},
{
	Id: 5283
	AegisName: "PartyHatB"
	Name: "Party Hat Blue"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5283
},
{
	Id: 5287
	AegisName: "HMCPirateHat"
	Name: "Corsair Hat"
	Type: "IT_ARMOR"
	Buy: 1600
	Sell: 800
	Weight: 20
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5287
	Script: <"
		bonus bMdef, 15;
		bonus bMaxHP, 50;
		bonus bCriticalDef, 5;
	">
},
{
	Id: 5324
	AegisName: "BlackWarlordHelmet"
	Name: "BlackWarlordHelmet"
	Type: "IT_ARMOR"
	Buy: 30000
	Sell: 3000
	Weight: 900
	Matk: -36
	Def: 18
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5324
	Script: <"
		bonus bMatkRate, -36; // @EVOL2
	">
},
{
	Id: 5325
	AegisName: "BlackInfantryHelmet"
	Name: "BlackInfantryHelmet"
	Type: "IT_ARMOR"
	Buy: 15000
	Sell: 1500
	Weight: 400
	Matk: -30
	Def: 15
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5325
	Script: <"
		bonus bMatkRate, -30; // @EVOL2
	">
},
{
	Id: 5326
	AegisName: "BlackCrusadeHelmet"
	Name: "BlackCrusadeHelmet"
	Type: "IT_ARMOR"
	Buy: 25000
	Sell: 2500
	Weight: 1300
	Matk: -36
	Def: 18
	Slots: 0
	Loc: "EQP_HEAD_TOP"
	Refine: false
	ViewSprite: 5326
	Script: <"
		bonus bMatkRate, -36; // @EVOL2
	">
},
/* Usable items */
{
	Id: 501
	AegisName: "CactusDrink"
	Name: "CactusDrink"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 501
	Script: <"
		callfunc "itheal", 15, 0;
	">
},
{
	Id: 502
	AegisName: "CactusPotion"
	Name: "CactusPotion"
	Type: "IT_USABLE"
	Buy: 70
	Sell: 35
	Weight: 7
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 502
	Script: <"
		callfunc "itheal", 25, 0;
	">
},
{
	Id: 506
	AegisName: "CandyCane"
	Name: "CandyCane"
	Type: "IT_USABLE"
	Buy: 20
	Sell: 10
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 506
	Script: <"
		callfunc "itheal", 5, 0;
	">
},
{
	Id: 508
	AegisName: "XmasCake"
	Name: "XmasCake"
	Type: "IT_USABLE"
	Buy: 70
	Sell: 10
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 508
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 509
	AegisName: "ChocolateBar"
	Name: "ChocolateBar"
	Type: "IT_USABLE"
	Buy: 60
	Sell: 20
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 509
	Script: <"
		callfunc "itheal", 20, 0;
	">
},
{
	Id: 510
	AegisName: "Candy"
	Name: "Candy"
	Type: "IT_USABLE"
	Buy: 20
	Sell: 10
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 510
	Script: <"
		callfunc "itheal", 5, 0;
	">
},
{
	Id: 512
	AegisName: "GingerBreadMan"
	Name: "GingerBreadMan"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 512
	Script: <"
		callfunc "itheal", 25, 0;
	">
},
{
	Id: 513
	AegisName: "Cake"
	Name: "Cake"
	Type: "IT_USABLE"
	Buy: 30
	Sell: 15
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 513
	Script: <"
		callfunc "itheal", 15, 0;
	">
},
{
	Id: 514
	AegisName: "XmasCandyCane"
	Name: "XmasCandyCane"
	Type: "IT_USABLE"
	Buy: 30
	Sell: 15
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 514
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 519
	AegisName: "CherryCake"
	Name: "CherryCake"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 519
	Script: <"
		callfunc "itheal", 35, 0;
	">
},
{
	Id: 520
	AegisName: "EasterEgg"
	Name: "EasterEgg"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 520
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 527
	AegisName: "Milk"
	Name: "Milk"
	Type: "IT_USABLE"
	Buy: 300
	Sell: 150
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 527
	Script: <"
		callfunc "itheal", 150, 0;
	">
},
{
	Id: 533
	AegisName: "RoastedMaggot"
	Name: "RoastedMaggot"
	Type: "IT_USABLE"
	Buy: 110
	Sell: 55
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 533
	Script: <"
		callfunc "itheal", 150, 0;
	">
},
{
	Id: 534
	AegisName: "OrangeCupcake"
	Name: "OrangeCupcake"
	Type: "IT_USABLE"
	Buy: 90
	Sell: 45
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 534
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 535
	AegisName: "RedApple"
	Name: "RedApple"
	Type: "IT_USABLE"
	Buy: 25
	Sell: 6
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 535
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 539
	AegisName: "Beer"
	Name: "Beer"
	Type: "IT_USABLE"
	Buy: 175
	Sell: 87
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 539
	Script: <"
		callfunc "itheal", 200, 5;
	">
},
{
	Id: 541
	AegisName: "BottleOfWater"
	Name: "BottleOfWater"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 541
	Script: <"
		callfunc "itheal", 250, 0;
		getitem 540, 1;
	">
},
{
	Id: 562
	AegisName: "ChickenLeg"
	Name: "ChickenLeg"
	Type: "IT_USABLE"
	Buy: 250
	Sell: 125
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 562
	Script: <"
		callfunc "itheal", 500, 0;
	">
},
{
	Id: 565
	AegisName: "PinkPetal"
	Name: "PinkPetal"
	Type: "IT_USABLE"
	Buy: 125
	Sell: 50
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 565
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 566
	AegisName: "SmallMushroom"
	Name: "SmallMushroom"
	Type: "IT_USABLE"
	Buy: 125
	Sell: 50
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 566
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 567
	AegisName: "IronPotion"
	Name: "IronPotion"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 250
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 567
	Script: <"
		callfunc("SC_Bonus", 60, SC_PLUSATTACKPOWER, 60);
	">
},
{
	Id: 568
	AegisName: "ConcentrationPotion"
	Name: "ConcentrationPotion"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 250
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 568
	Script: <"
		callfunc("SC_Bonus", 60, SC_ATTHASTE_POTION1, 30);
	">
},
{
	Id: 657
	AegisName: "Orange"
	Name: "Orange"
	Type: "IT_USABLE"
	Buy: 40
	Sell: 10
	Weight: 7
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 657
	Script: <"
		callfunc "itheal", 60, 0;
	">
},
{
	Id: 676
	AegisName: "Steak"
	Name: "Steak"
	Type: "IT_USABLE"
	Buy: 275
	Sell: 100
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 676
	Script: <"
		callfunc "itheal", 250, 0;
	">
},
{
	Id: 684
	AegisName: "TinyHealingPotion"
	Name: "TinyHealingPotion"
	Type: "IT_USABLE"
	Buy: 25
	Sell: 12
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 684
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 685
	AegisName: "SmallHealingPotion"
	Name: "SmallHealingPotion"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 685
	Script: <"
		callfunc "itheal", 200, 0;
	">
},
{
	Id: 686
	AegisName: "MediumHealingPotion"
	Name: "MediumHealingPotion"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 15
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 686
	Script: <"
		callfunc "itheal", 400, 0;
	">
},
{
	Id: 687
	AegisName: "LargeHealingPotion"
	Name: "LargeHealingPotion"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 25
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 687
	Script: <"
		callfunc "itheal", 800, 0;
	">
},
{
	Id: 705
	AegisName: "ManaPotion"
	Name: "ManaPotion"
	Type: "IT_USABLE"
	Buy: 2000
	Sell: 300
	Weight: 50
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 705
	Script: <"
		callfunc "itheal", 0, 10;
		callfunc "MagicGainBasic";
	">
},
{
	Id: 714
	AegisName: "SnakeEgg"
	Name: "SnakeEgg"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 714
	Script: <"
		callfunc "itheal", 30, 0;
	">
},
{
	Id: 715
	AegisName: "MountainSnakeEgg"
	Name: "MountainSnakeEgg"
	Type: "IT_USABLE"
	Buy: 80
	Sell: 40
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 715
	Script: <"
		callfunc "itheal", 40, 0;
	">
},
{
	Id: 716
	AegisName: "GrassSnakeEgg"
	Name: "GrassSnakeEgg"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 716
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 717
	AegisName: "CaveSnakeEgg"
	Name: "CaveSnakeEgg"
	Type: "IT_USABLE"
	Buy: 60
	Sell: 30
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 717
	Script: <"
		callfunc "itheal", 20, 0;
	">
},
{
	Id: 719
	AegisName: "GreenApple"
	Name: "GreenApple"
	Type: "IT_USABLE"
	Buy: 20
	Sell: 5
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 719
	Script: <"
		callfunc "itheal", 45, 0;
	">
},
{
	Id: 733
	AegisName: "PurificationPotion"
	Name: "PurificationPotion"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 15
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 733
	Script: <"
		callfunc "usePurificationPotion";
	">
},
{
	Id: 736
	AegisName: "WhiteCake"
	Name: "WhiteCake"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 100
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 736
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 737
	AegisName: "ChocolateCake"
	Name: "ChocolateCake"
	Type: "IT_USABLE"
	Buy: 550
	Sell: 125
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 737
	Script: <"
		callfunc "itheal", 11, 0;
	">
},
{
	Id: 738
	AegisName: "OrangeCake"
	Name: "OrangeCake"
	Type: "IT_USABLE"
	Buy: 600
	Sell: 150
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 738
	Script: <"
		callfunc "itheal", 12, 0;
	">
},
{
	Id: 739
	AegisName: "AppleCake"
	Name: "AppleCake"
	Type: "IT_USABLE"
	Buy: 600
	Sell: 150
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 739
	Script: <"
		callfunc "itheal", 12, 0;
	">
},
{
	Id: 743
	AegisName: "Acorn"
	Name: "Acorn"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 10
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 743
	Script: <"
		callfunc "itheal", 3, 0;
	">
},
{
	Id: 744
	AegisName: "DilutedConcentrationPot"
	Name: "DilutedConcentrationPot"
	Type: "IT_USABLE"
	Buy: 250
	Sell: 100
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 744
	Script: <"
		callfunc("SC_Bonus", 30, SC_ATTHASTE_POTION1, 20);
	">
},
{
	Id: 745
	AegisName: "DarkConcentrationPotion"
	Name: "DarkConcentrationPotion"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 745
	Script: <"
		callfunc("SC_Bonus", 10, SC_ATTHASTE_POTION1, 40);
		callfunc("SC_Bonus", 50, SC_BLOODING, 1);
	">
},
{
	Id: 747
	AegisName: "LacedChocolateCake"
	Name: "LacedChocolateCake"
	Type: "IT_USABLE"
	Buy: 550
	Sell: 125
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 747
	Script: <"
		callfunc "itheal", 11, 0;
	">
},
{
	Id: 748
	AegisName: "LacedOrangeCupcake"
	Name: "LacedOrangeCupcake"
	Type: "IT_USABLE"
	Buy: 90
	Sell: 45
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 748
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 750
	AegisName: "SlowPoisonPotion"
	Name: "SlowPoisonPotion"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 200
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 750
	Script: <"
		callfunc "itheal", 5, 0;
		callfunc("SC_Bonus", 180, SC_SLOWPOISON, 100);
	">
},
{
	Id: 784
	AegisName: "ZombieNachos"
	Name: "ZombieNachos"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 30
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 784
	Script: <"
		callfunc "itheal", 60, 0;
	">
},
{
	Id: 785
	AegisName: "LadyFingers"
	Name: "LadyFingers"
	Type: "IT_USABLE"
	Buy: 70
	Sell: 25
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 785
	Script: <"
		callfunc "itheal", 40, 0;
	">
},
{
	Id: 786
	AegisName: "JellAhh"
	Name: "JellAhh"
	Type: "IT_USABLE"
	Buy: 80
	Sell: 30
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 786
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 787
	AegisName: "Snapple"
	Name: "Snapple"
	Type: "IT_USABLE"
	Buy: 110
	Sell: 55
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 787
	Script: <"
		callfunc "itheal", 70, 0;
	">
},
{
	Id: 788
	AegisName: "BeetleJuice"
	Name: "BeetleJuice"
	Type: "IT_USABLE"
	Buy: 80
	Sell: 30
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 788
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 789
	AegisName: "GutBuster"
	Name: "GutBuster"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 30
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 789
	Script: <"
		callfunc "itheal", 60, 0;
	">
},
{
	Id: 790
	AegisName: "BloodWine"
	Name: "BloodWine"
	Type: "IT_USABLE"
	Buy: 150
	Sell: 50
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 790
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 808
	AegisName: "HitchhikersTowel"
	Name: "HitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 808
	Script: <"
		set @warpTowelName$, "HitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 809
	AegisName: "WhiteHitchhikersTowel"
	Name: "WhiteHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 809
	Script: <"
		set @warpTowelName$, "WhiteHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 810
	AegisName: "RedHitchhikersTowel"
	Name: "RedHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 810
	Script: <"
		set @warpTowelName$, "RedHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 811
	AegisName: "GreenHitchhikersTowel"
	Name: "GreenHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 811
	Script: <"
		set @warpTowelName$, "GreenHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 812
	AegisName: "BlueHitchhikersTowel"
	Name: "BlueHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 812
	Script: <"
		set @warpTowelName$, "BlueHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 813
	AegisName: "YellowHitchhikersTowel"
	Name: "YellowHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 813
	Script: <"
		set @warpTowelName$, "YellowHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 814
	AegisName: "PurpleHitchhikersTowel"
	Name: "PurpleHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 814
	Script: <"
		set @warpTowelName$, "PurpleHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 815
	AegisName: "OrangeHitchhikersTowel"
	Name: "OrangeHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 815
	Script: <"
		set @warpTowelName$, "OrangeHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 816
	AegisName: "PinkHitchhikersTowel"
	Name: "PinkHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 816
	Script: <"
		set @warpTowelName$, "PinkHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 817
	AegisName: "TealHitchhikersTowel"
	Name: "TealHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 817
	Script: <"
		set @warpTowelName$, "TealHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 818
	AegisName: "LimeHitchhikersTowel"
	Name: "LimeHitchhikersTowel"
	Type: "IT_USABLE"
	Buy: 0
	Sell: 0
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 818
	Script: <"
		set @warpTowelName$, "LimeHitchhikersTowel";
		callfunc "WarpTowel";
	">
},
{
	Id: 825
	AegisName: "TinyManaElixir"
	Name: "TinyManaElixir"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 10
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 825
	Script: <"
		callfunc "itheal", 0, 25;
	">
},
{
	Id: 826
	AegisName: "SmallManaElixir"
	Name: "SmallManaElixir"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 20
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 826
	Script: <"
		callfunc "itheal", 0, 50;
	">
},
{
	Id: 827
	AegisName: "MediumManaElixir"
	Name: "MediumManaElixir"
	Type: "IT_USABLE"
	Buy: 400
	Sell: 40
	Weight: 15
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 827
	Script: <"
		callfunc "itheal", 0, 100;
	">
},
{
	Id: 828
	AegisName: "LargeManaElixir"
	Name: "LargeManaElixir"
	Type: "IT_USABLE"
	Buy: 800
	Sell: 80
	Weight: 25
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 828
	Script: <"
		callfunc "itheal", 0, 250;
	">
},
{
	Id: 838
	AegisName: "CranberryLollipop"
	Name: "CranberryLollipop"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 838
	Script: <"
		callfunc "itheal", 750, 0;
	">
},
{
	Id: 839
	AegisName: "GrapeLollipop"
	Name: "GrapeLollipop"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 839
	Script: <"
		callfunc "itheal", 750, 0;
	">
},
{
	Id: 840
	AegisName: "OrangeLollipop"
	Name: "OrangeLollipop"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 840
	Script: <"
		callfunc "itheal", 750, 0;
	">
},
{
	Id: 1189
	AegisName: "PollettEgg"
	Name: "PollettEgg"
	Type: "IT_USABLE"
	Buy: 250
	Sell: 25
	Weight: 4
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1189
	Script: <"
		callfunc "itheal", 75, 10;
	">
},
{
	Id: 1229
	AegisName: "CaramelApple"
	Name: "CaramelApple"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 75
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1229
	Script: <"
		callfunc "itheal", 1000, 0;
	">
},
{
	Id: 1230
	AegisName: "LollipopColor1"
	Name: "LollipopColor1"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1230
	Script: <"
		callfunc "itheal", 800, 0;
	">
},
{
	Id: 1231
	AegisName: "LollipopColor2"
	Name: "LollipopColor2"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1231
	Script: <"
		callfunc "itheal", 800, 0;
	">
},
{
	Id: 1232
	AegisName: "LollipopColor3"
	Name: "LollipopColor3"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1232
	Script: <"
		callfunc "itheal", 800, 0;
	">
},
{
	Id: 1248
	AegisName: "Blueberries"
	Name: "Blueberries"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 6
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1248
	Script: <"
		callfunc "itheal", 200, 0;
	">
},
{
	Id: 1250
	AegisName: "Pear"
	Name: "Pear"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 7
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1250
	Script: <"
		callfunc "itheal", 150, 0;
	">
},
{
	Id: 1251
	AegisName: "Plum"
	Name: "Plum"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1251
	Script: <"
		callfunc "itheal", 100, 0;
	">
},
{
	Id: 1252
	AegisName: "Cherry"
	Name: "Cherry"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 25
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1252
	Script: <"
		callfunc "itheal", 50, 0;
	">
},
{
	Id: 1253
	AegisName: "GoldenDeliciousApple"
	Name: "GoldenDeliciousApple"
	Type: "IT_USABLE"
	Buy: 1000
	Sell: 500
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1253
	Script: <"
		callfunc "itheal", 200, 0; // @EVOL2
		//heal 200, 0, 0; // @TMWA
	">
},
{
	Id: 1258
	AegisName: "GlutenFreeHoney"
	Name: "GlutenFreeHoney"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 20
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1258
	Script: <"
		callfunc "itheal", 45, 0;
	">
},
{
	Id: 1280
	AegisName: "Scissors"
	Name: "Scissors"
	Type: "IT_USABLE"
	Buy: 1000
	Sell: 500
	Weight: 120
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1280
	Script: <"
		callfunc "useScissors";
	">
},
{
	Id: 1281
	AegisName: "ShockSweet"
	Name: "ShockSweet"
	Type: "IT_USABLE"
	Buy: 1000
	Sell: 500
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 1281
	Script: <"
		callfunc "useShockSweet";
	">
},
{
	Id: 3001
	AegisName: "RubberBat"
	Name: "RubberBat"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 30
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 3001
	Script: <"
		callfunc "rubberBat";
	">
},
{
	Id: 3006
	AegisName: "TonoriDelight"
	Name: "TonoriDelight"
	Type: "IT_USABLE"
	Buy: 5
	Sell: 1
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 3006
	Script: <"
		callfunc "itheal", 10, 2;
	">
},
{
	Id: 3007
	AegisName: "Marshmallow"
	Name: "Marshmallow"
	Type: "IT_USABLE"
	Buy: 5
	Sell: 1
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 3007
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 3009
	AegisName: "JellySkull"
	Name: "JellySkull"
	Type: "IT_USABLE"
	Buy: 5
	Sell: 1
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 3009
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 3010
	AegisName: "CandyPumpkin"
	Name: "CandyPumpkin"
	Type: "IT_USABLE"
	Buy: 5
	Sell: 1
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 3010
	Script: <"
		callfunc "itheal", 10, 0;
	">
},
{
	Id: 4035
	AegisName: "PickledBeets"
	Name: "PickledBeets"
	Type: "IT_USABLE"
	Buy: 1500
	Sell: 50
	Weight: 150
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 4035
	Script: <"
		callfunc "usePickledBeets";
	">
},
{
	Id: 4036
	AegisName: "RoastedAcorn"
	Name: "RoastedAcorn"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 4036
	Script: <"
		callfunc "itheal", 15, 0;
	">
},
{
	Id: 5126
	AegisName: "MTJarofOwnBlood"
	Name: "MTJarofOwnBlood"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5126
	Script: <"
		callfunc "itheal", -250, 0;
		getitem 5127, 1;
	">
},
{
	Id: 5210
	AegisName: "GrassFedTofu"
	Name: "GrassFedTofu"
	Type: "IT_USABLE"
	Buy: 50
	Sell: 1
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5210
	Script: <"
		callfunc "itheal", -10, -2;
	">
},
{
	Id: 5213
	AegisName: "VeganWater"
	Name: "VeganWater"
	Type: "IT_USABLE"
	Buy: 200
	Sell: 100
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5213
	Script: <"
		callfunc "itheal", 250, 0;
		getitem 540, 1;
	">
},
{
	Id: 5214
	AegisName: "LactoseFreeAcorn"
	Name: "LactoseFreeAcorn"
	Type: "IT_USABLE"
	Buy: 100
	Sell: 50
	Weight: 1
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5214
	Script: <"
		callfunc "itheal", 15, 0;
	">
},
{
	Id: 5235
	AegisName: "TMWBirthdayGift"
	Name: "TMWBirthdayGift"
	Type: "IT_USABLE"
	Buy: 1000000
	Sell: 50
	Weight: 0
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5235
	Script: <"
		// 5231..5234
		.@it=callfunc("any", // @EVOL2
			 RedPresentHat, GreenPresentHat, BluePresentHat, YellowPresentHat); // @EVOL2
		getitem .@it, 1; // @EVOL2
		//callfunc "TMWBirthdayGift"; // @TMWA
	">
},
{
	Id: 5236
	AegisName: "GumiCandy"
	Name: "GumiCandy"
	Type: "IT_USABLE"
	Buy: 10000
	Sell: 250
	Weight: 0
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5236
	Script: <"
		set Sex, Sex == 3 ? rand(0, 1) : (rand(0, 1) ?  3 : !Sex); // @EVOL2
		//set Sex, if_then_else(Sex == 3, rand(0, 1), if_then_else(rand(0,1), 3, !Sex)); // @TMWA
	">
},
{
	Id: 5237
	AegisName: "CaramelCandy"
	Name: "CaramelCandy"
	Type: "IT_USABLE"
	Buy: 700
	Sell: 350
	Weight: 0
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5237
	Script: <"
		callfunc "itheal", 350, 0;
	">
},
{
	Id: 5263
	AegisName: "LovePotion"
	Name: "LovePotion"
	Type: "IT_USABLE"
	Buy: 90000
	Sell: 550
	Weight: 0
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5263
	Script: <"
		callfunc "LovePotion";
	">
},
{
	Id: 5141
	AegisName: "AlizarinScroll"
	Name: "Alizarin Scroll"
	Type: "IT_USABLE"
	Buy: 5000
	Sell: 1000
	Weight: 7
	Script: <"
		callfunc "learnskill", SKILL_MODRIPHOO; // @EVOL2
		@skillId = SKILL_MODRIPHOO; // @EVOL2
		@skillLv = 1; // @EVOL2
		callfunc "SK_GrowPlants", false; // @EVOL2
		//callfunc "UnreleasedScroll"; // @TMWA
	">
},
{
	Id: 5142
	AegisName: "CobaltScroll"
	Name: "Cobalt Scroll"
	Type: "IT_USABLE"
	Buy: 5000
	Sell: 1000
	Weight: 7
	Script: <"
		callfunc "learnskill", SKILL_MODRISUMP; // @EVOL2
		@skillId = SKILL_MODRISUMP; // @EVOL2
		@skillLv = 1; // @EVOL2
		callfunc "SK_GrowPlants", false; // @EVOL2
		//callfunc "UnreleasedScroll"; // @TMWA
	">
},
{
	Id: 5143
	AegisName: "GambogeScroll"
	Name: "Gamboge Scroll"
	Type: "IT_USABLE"
	Buy: 5000
	Sell: 1000
	Weight: 7
	Script: <"
		callfunc "learnskill", SKILL_MODRIYIKAM; // @EVOL2
		@skillId = SKILL_MODRIYIKAM; // @EVOL2
		@skillLv = 1; // @EVOL2
		callfunc "SK_GrowPlants", false; // @EVOL2
		//callfunc "UnreleasedScroll"; // @TMWA
	">
},
{
	Id: 5144
	AegisName: "MauveScroll"
	Name: "Mauve Scroll"
	Type: "IT_USABLE"
	Buy: 5000
	Sell: 1000
	Weight: 7
	Script: <"
		callfunc "learnskill", SKILL_MODRILAX; // @EVOL2
		@skillId = SKILL_MODRILAX; // @EVOL2
		@skillLv = 1; // @EVOL2
		callfunc "SK_GrowPlants", false; // @EVOL2
		//callfunc "UnreleasedScroll"; // @TMWA
	">
},
{
	Id: 5145
	AegisName: "JoyplimScroll"
	Name: "Joyplim Scroll"
	Type: "IT_USABLE"
	Buy: 5000
	Sell: 1000
	Weight: 7
	Script: <"
		callfunc "learnskill", SKILL_JOYPLIM; // @EVOL2
		@skillId = SKILL_JOYPLIM; // @EVOL2
		@skillLv = 10; // @EVOL2
		callfunc "SK_Joyplim", false; // @EVOL2
		//callfunc "UnreleasedScroll"; // @TMWA
	">
},
{
	Id: 5277
	AegisName: "XmasSeeds"
	Name: "Christmas Seeds"
	Type: "IT_USABLE"
	Buy: 9999
	Sell: 0
	Weight: 1
	ViewSprite: 5277
	Trade: {
		partneroverride: true
		notrade: true
		nodrop: true
		nogstorage: true
		nomail: true
		noauction: true
		noselltonpc: true
	}
	Script: <"
		callfunc "X21_SEEDS"; // @EVOL2
		//heal 150, 0, 1; // @TMWA
	">
	//Disabled: true // @TMWA
},
{
	Id: 5251
	AegisName: "Tomato"
	Name: "Tomato"
	Type: "IT_USABLE"
	Buy: 40
	Sell: 10
	Weight: 7
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 657
	Script: <"
		callfunc "itheal", 200, 5;
	">
},
{
	Id: 5294
	AegisName: "CrazyRum"
	Name: "Crazy Rum"
	Type: "IT_USABLE"
	Buy: 40
	Sell: 10
	Weight: 2
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5294
	Script: <"
		callfunc("SC_Bonus", 60, SC_POISON, 60); //@EVOL2
		//callfunc("SC_Bonus", 60000, SC_POISON, 1); //@TMWA
		callfunc("SC_Bonus", 60, SC_PLUSATTACKPOWER, 50);
		callfunc("SC_Bonus", 60, SC_ATTHASTE_POTION1, 45);
		//callfunc("SC_Bonus", 60, SC_PHYS_SHIELD, 40); //@EVOL2
		//callfunc("SC_Bonus", 60000, SC_PHYS_SHIELD, 40); //@TMWA
		//misceffect FX_MAGIC_SHIELD, strcharinfo(0); //@TMWA
	">
},
{
	Id: 5309
	AegisName: "ManaDust"
	Name: "ManaDust"
	Type: "IT_USABLE"
	Buy: 125
	Sell: 50
	Weight: 5
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5309
	Script: <"
		callfunc "itheal", 35, 15;
	">
},
{
	Id: 5310
	AegisName: "EnlighteningElixir"
	Name: "EnlighteningElixir"
	Type: "IT_USABLE"
	Buy: 500
	Sell: 250
	Weight: 10
	Def: 0
	Slots: 0
	Refine: false
	ViewSprite: 5309
	Script: <"
		callfunc("SC_Bonus", 60, SC_PLUSMAGICPOWER, 100);
	">
},
{
	Id: 5312
	AegisName: "Honey"
	Name: "Honey"
	Type: "IT_USABLE"
	Buy: 150
	Sell: 75
	Weight: 4
	Refine: false
	ViewSprite: 5312
	Script: <"
		callfunc "itheal", 200, 50;
	">
},

/* Legs Armor */
{
	Id: 586
	AegisName: "CottonShorts"
	Name: "CottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 15
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 586
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 610
	AegisName: "JeansShorts"
	Name: "JeansShorts"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 25
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 610
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 632
	AegisName: "CottonSkirt"
	Name: "CottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 10
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 632
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 642
	AegisName: "JeansChaps"
	Name: "JeansChaps"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 60
	Matk: -8
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 642
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 648
	AegisName: "CottonTrousers"
	Name: "CottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 648
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 731
	AegisName: "AssassinPants"
	Name: "AssassinPants"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 3000
	Weight: 20
	Matk: -5
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 731
	Script: <"
		callfunc "BrawlingItem", EQI_HEAD_LOW;
		bonus bAgi, 5;
		bonus bMatkRate, -5; // @EVOL2
	">
},
{
	Id: 768
	AegisName: "TerraniteLegs"
	Name: "TerraniteLegs"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 3000
	Weight: 30
	Matk: -8
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 768
	Script: <"
		bonus bAgi, 1;
		bonus bMdef, 5;
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 771
	AegisName: "Miniskirt"
	Name: "Miniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 771
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 796
	AegisName: "BromenalLegs"
	Name: "BromenalLegs"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 150
	Matk: -12
	Def: 6
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 796
	Script: <"
		bonus bMatkRate, -12; // @EVOL2
	">
},
{
	Id: 857
	AegisName: "LeatherTrousers"
	Name: "LeatherTrousers"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 25
	Matk: -4
	Def: 5
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	Refine: false
	ViewSprite: 857
	Script: <"
		bonus bHit, 2;
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 881
	AegisName: "RaggedShorts"
	Name: "RaggedShorts"
	Type: "IT_ARMOR"
	Buy: 60
	Sell: 1
	Weight: 7
	Matk: -2
	Def: 1
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 881
	Script: <"
		bonus bMatkRate, -2; // @EVOL2
	">
},
{
	Id: 1172
	AegisName: "SilkPants"
	Name: "SilkPants"
	Type: "IT_ARMOR"
	Buy: 20000
	Sell: 750
	Weight: 10
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 1172
},
{
	Id: 2100
	AegisName: "RedCottonSkirt"
	Name: "RedCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2100
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2101
	AegisName: "GreenCottonSkirt"
	Name: "GreenCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2101
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2102
	AegisName: "DarkBlueCottonSkirt"
	Name: "DarkBlueCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2102
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2103
	AegisName: "YellowCottonSkirt"
	Name: "YellowCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2103
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2104
	AegisName: "LightBlueCottonSkirt"
	Name: "LightBlueCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2104
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2105
	AegisName: "PinkCottonSkirt"
	Name: "PinkCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2105
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2106
	AegisName: "BlackCottonSkirt"
	Name: "BlackCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2106
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2107
	AegisName: "OrangeCottonSkirt"
	Name: "OrangeCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2107
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2108
	AegisName: "PurpleCottonSkirt"
	Name: "PurpleCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2108
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2109
	AegisName: "DarkGreenCottonSkirt"
	Name: "DarkGreenCottonSkirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2109
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2110
	AegisName: "RedCottonShorts"
	Name: "RedCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2110
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2111
	AegisName: "GreenCottonShorts"
	Name: "GreenCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2111
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2112
	AegisName: "DarkBlueCottonShorts"
	Name: "DarkBlueCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2112
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2113
	AegisName: "YellowCottonShorts"
	Name: "YellowCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2113
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2114
	AegisName: "LightBlueCottonShorts"
	Name: "LightBlueCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2114
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2115
	AegisName: "PinkCottonShorts"
	Name: "PinkCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2115
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2116
	AegisName: "BlackCottonShorts"
	Name: "BlackCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2116
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2117
	AegisName: "OrangeCottonShorts"
	Name: "OrangeCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2117
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2118
	AegisName: "PurpleCottonShorts"
	Name: "PurpleCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2118
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2119
	AegisName: "DarkGreenCottonShorts"
	Name: "DarkGreenCottonShorts"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 20
	Matk: -4
	Def: 2
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2119
	Script: <"
		bonus bMatkRate, -4; // @EVOL2
	">
},
{
	Id: 2170
	AegisName: "RedMiniskirt"
	Name: "RedMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2170
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2171
	AegisName: "GreenMiniskirt"
	Name: "GreenMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2171
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2172
	AegisName: "DarkBlueMiniskirt"
	Name: "DarkBlueMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2172
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2173
	AegisName: "YellowMiniskirt"
	Name: "YellowMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2173
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2174
	AegisName: "LightBlueMiniskirt"
	Name: "LightBlueMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2174
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2175
	AegisName: "PinkMiniskirt"
	Name: "PinkMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2175
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2176
	AegisName: "BlackMiniskirt"
	Name: "BlackMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2176
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2177
	AegisName: "OrangeMiniskirt"
	Name: "OrangeMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2177
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2178
	AegisName: "PurpleMiniskirt"
	Name: "PurpleMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2178
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2179
	AegisName: "DarkGreenMiniskirt"
	Name: "DarkGreenMiniskirt"
	Type: "IT_ARMOR"
	Buy: 1000
	Sell: 500
	Weight: 8
	Matk: -8
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2179
	Script: <"
		bonus bMatkRate, -8; // @EVOL2
	">
},
{
	Id: 2180
	AegisName: "RedCottonTrousers"
	Name: "RedCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2180
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2181
	AegisName: "GreenCottonTrousers"
	Name: "GreenCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2181
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2182
	AegisName: "DarkBlueCottonTrousers"
	Name: "DarkBlueCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2182
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2183
	AegisName: "YellowCottonTrousers"
	Name: "YellowCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2183
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2184
	AegisName: "LightBlueCottonTrousers"
	Name: "LightBlueCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2184
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2185
	AegisName: "PinkCottonTrousers"
	Name: "PinkCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2185
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2186
	AegisName: "BlackCottonTrousers"
	Name: "BlackCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2186
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2187
	AegisName: "OrangeCottonTrousers"
	Name: "OrangeCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2187
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2188
	AegisName: "PurpleCottonTrousers"
	Name: "PurpleCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2188
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 2189
	AegisName: "DarkGreenCottonTrousers"
	Name: "DarkGreenCottonTrousers"
	Type: "IT_ARMOR"
	Buy: 1500
	Sell: 750
	Weight: 25
	Matk: -6
	Def: 4
	Slots: 0
	Loc: "EQP_HEAD_LOW"
	EquipLv: 1
	Refine: false
	ViewSprite: 2189
	Script: <"
		bonus bMatkRate, -6; // @EVOL2
	">
},
{
	Id: 531
	AegisName: "MinerGloves"
	Name: "MinerGloves"
	Type: "IT_ARMOR"
	Buy: 3000
	Sell: 1000
	Weight: 30
	Matk: -10
	Def: 2
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 531
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 532
	AegisName: "LeatherGloves"
	Name: "LeatherGloves"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 2000
	Weight: 20
	Matk: -20
	Def: 4
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 532
	Script: <"
		bonus bMatkRate, -20; // @EVOL2
	">
},
{
	Id: 563
	AegisName: "WinterGloves"
	Name: "WinterGloves"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 3000
	Weight: 20
	Matk: -15
	Def: 3
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 563
	Script: <"
		bonus bMatkRate, -15; // @EVOL2
	">
},
{
	Id: 741
	AegisName: "CottonGloves"
	Name: "CottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 10
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 741
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 756
	AegisName: "AssassinGloves"
	Name: "AssassinGloves"
	Type: "IT_ARMOR"
	Buy: 7000
	Sell: 2000
	Weight: 9
	Matk: -3
	Def: 3
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 756
	Script: <"
		callfunc "BrawlingItem", EQI_GARMENT;
		bonus bAgi, 4;
		bonus bMatkRate, -3; // @EVOL2
	">
},
{
	Id: 794
	AegisName: "BromenalGloves"
	Name: "BromenalGloves"
	Type: "IT_ARMOR"
	Buy: 6000
	Sell: 2000
	Weight: 40
	Matk: -20
	Def: 4
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 794
	Script: <"
		bonus bMatkRate, -20; // @EVOL2
	">
},
{
	Id: 868
	AegisName: "SilkGloves"
	Name: "SilkGloves"
	Type: "IT_ARMOR"
	Buy: 5000
	Sell: 2500
	Weight: 4
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 868
},
{
	Id: 2160
	AegisName: "RedCottonGloves"
	Name: "RedCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2160
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2161
	AegisName: "GreenCottonGloves"
	Name: "GreenCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2161
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2162
	AegisName: "DarkBlueCottonGloves"
	Name: "DarkBlueCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2162
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2163
	AegisName: "YellowCottonGloves"
	Name: "YellowCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2163
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2164
	AegisName: "LightBlueCottonGloves"
	Name: "LightBlueCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2164
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2165
	AegisName: "PinkCottonGloves"
	Name: "PinkCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2165
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2166
	AegisName: "BlackCottonGloves"
	Name: "BlackCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2166
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2167
	AegisName: "OrangeCottonGloves"
	Name: "OrangeCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2167
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2168
	AegisName: "PurpleCottonGloves"
	Name: "PurpleCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2168
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
{
	Id: 2169
	AegisName: "DarkGreenCottonGloves"
	Name: "DarkGreenCottonGloves"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 500
	Weight: 20
	Matk: -10
	Def: 1
	Slots: 0
	Loc: "EQP_GARMENT"
	Refine: false
	ViewSprite: 2169
	Script: <"
		bonus bMatkRate, -10; // @EVOL2
	">
},
////////////////////////////////////////////////////////
// Shields
{
	Id: 585
	AegisName: "ScarabArmlet"
	Name: "ScarabArmlet"
	Type: "IT_ARMOR"
	Buy: 8000
	Sell: 4000
	Weight: 200
	Matk: 5
	Def: 0
	Slots: 0
	Loc: "EQP_HAND_L"
	EquipLv: 1
	Refine: false
	ViewSprite: 585
	Script: <"
		bonus bMatkRate, 5; // @EVOL2
	">
},
{
	Id: 601
	AegisName: "SteelShield"
	Name: "SteelShield"
	Type: "IT_ARMOR"
	Buy: 40000
	Sell: 3000
	Weight: 2500
	Matk: -200
	Def: 20
	Slots: 0
	Loc: "EQP_HAND_L"
	Refine: false
	ViewSprite: 601
	Script: <"
		bonus bMatkRate, -200; // @EVOL2
	">
},
{
	Id: 602
	AegisName: "WoodenShield"
	Name: "WoodenShield"
	Type: "IT_ARMOR"
	Buy: 10000
	Sell: 2000
	Weight: 1500
	Matk: -70
	Def: 14
	Slots: 0
	Loc: "EQP_HAND_L"
	Refine: false
	ViewSprite: 602
	Script: <"
		bonus bMatkRate, -70; // @EVOL2
	">
},
{
	Id: 603
	AegisName: "LeatherShield"
	Name: "LeatherShield"
	Type: "IT_ARMOR"
	Buy: 2000
	Sell: 1000
	Weight: 1300
	Matk: -35
	Def: 7
	Slots: 0
	Loc: "EQP_HAND_L"
	Refine: false
	ViewSprite: 603
	Script: <"
		bonus bMatkRate, -35; // @EVOL2
	">
},
{
	Id: 797
	AegisName: "BromenalShield"
	Name: "BromenalShield"
	Type: "IT_ARMOR"
	Buy: 40000
	Sell: 3000
	Weight: 2500
	Matk: -200
	Def: 20
	Slots: 0
	Loc: "EQP_HAND_L"
	Refine: false
	ViewSprite: 797
	Script: <"
		bonus bMatkRate, -200; // @EVOL2
	">
	//Disabled: true // @TMWA
},
{
	Id: 5285
	AegisName: "DragonShield"
	Name: "Dragon Shield"
	Type: "IT_ARMOR"
	Buy: 40000
	Sell: 3000
	Weight: 2500
	Matk: -200
	Def: 27
	Slots: 0
	Loc: "EQP_HAND_L"
	Refine: false
	ViewSprite: 5285
	Script: <"
		bonus bMatkRate, -200; // @EVOL2
	">
},

//
// Pets
{
	Id: 6000
	AegisName: "PinkieScroll"
	Name: "Pinkie Scroll"
	Type: "IT_PETEGG"
	Buy: 30000
	Sell: 1000
	Weight: 400
	KeepAfterUse: true
	Trade: {
		partneroverride: true
		notrade: true
		nodrop: true
		nogstorage: true
		nomail: true
		noauction: true
		noselltonpc: true
	}
	Script: <"
		bpet;
	">
	//Disabled: true // @TMWA
},
)