52306 lines
1.0 MiB
52306 lines
1.0 MiB
# This file is a part of rAthena.
|
|
# Copyright(C) 2021 rAthena Development Team
|
|
# https://rathena.org - https://github.com/rathena
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###########################################################################
|
|
# Item Database
|
|
###########################################################################
|
|
#
|
|
# Item Settings
|
|
#
|
|
###########################################################################
|
|
# - Id Item ID.
|
|
# AegisName Server name to reference the item in scripts and lookups, should use no spaces.
|
|
# Name Name in English for displaying as output.
|
|
# Type Item type. (Default: Etc)
|
|
# SubType Weapon, Ammo or Card type. (Default: 0)
|
|
# Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
|
|
# Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
|
|
# Weight Item weight. Each 10 is 1 weight. (Default: 0)
|
|
# Attack Weapon's attack. (Default: 0)
|
|
# MagicAttack Weapon's magic attack. (Default: 0)
|
|
# Defense Armor's defense. (Default: 0)
|
|
# Range Weapon's attack range. (Default: 0)
|
|
# Slots Available slots in item. (Default: 0)
|
|
# Jobs Jobs that can equip the item. (Map default is 'All: true')
|
|
# Classes Upper class types that can equip the item. (Map default is 'All: true')
|
|
# Gender Gender that can equip the item. (Default: Both)
|
|
# Locations Equipment's placement. (Default: None)
|
|
# WeaponLevel Weapon level. (Default: 1 for Weapons)
|
|
# ArmorLevel Armor level. (Default: 1 for Armors)
|
|
# EquipLevelMin Minimum required level to equip. (Default: 0)
|
|
# EquipLevelMax Maximum level that can equip. (Default: 0)
|
|
# Refineable If the item can be refined. (Default: false)
|
|
# View View sprite of an item. (Default: 0)
|
|
# AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
|
|
# Flags: Item flags. (Default: null)
|
|
# BuyingStore If the item is available for Buyingstores. (Default: false)
|
|
# DeadBranch If the item is a Dead Branch. (Default: false)
|
|
# Container If the item is part of a container. (Default: false)
|
|
# UniqueId If the item is a unique stack. (Default: false)
|
|
# BindOnEquip If the item is bound to the character upon equipping. (Default: false)
|
|
# DropAnnounce If the item has a special announcement to self on drop. (Default: false)
|
|
# NoConsume If the item is consumed on use. (Default: false)
|
|
# DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
|
|
# Delay: Item use delay. (Default: null)
|
|
# Duration Duration of delay in seconds.
|
|
# Status Status Change used to track delay. (Default: None)
|
|
# Stack: Item stack amount. (Default: null)
|
|
# Amount Maximum amount that can be stacked.
|
|
# Inventory If the stack is applied to player's inventory. (Default: true)
|
|
# Cart If the stack is applied to the player's cart. (Default: false)
|
|
# Storage If the stack is applied to the player's storage. (Default: false)
|
|
# GuildStorage If the stack is applied to the player's guild storage. (Default: false)
|
|
# NoUse: Conditions when the item is unusable. (Default: null)
|
|
# Override Group level to override these conditions. (Default: 100)
|
|
# Sitting If the item can not be used while sitting. (Default: false)
|
|
# Trade: Trade restrictions. (Default: null)
|
|
# Override Group level to override these conditions. (Default: 100)
|
|
# NoDrop If the item can not be dropped. (Default: false)
|
|
# NoTrade If the item can not be traded. (Default: false)
|
|
# TradePartner If the item can not be traded to the player's partner. (Default: false)
|
|
# NoSell If the item can not be sold. (Default: false)
|
|
# NoCart If the item can not be put in a cart. (Default: false)
|
|
# NoStorage If the item can not be put in a storage. (Default: false)
|
|
# NoGuildStorage If the item can not be put in a guild storage. (Default: false)
|
|
# NoMail If the item can not be put in a mail. (Default: false)
|
|
# NoAuction If the item can not be put in an auction. (Default: false)
|
|
# Script Script to execute when the item is used/equipped. (Default: null)
|
|
# EquipScript Script to execute when the item is equipped. (Default: null)
|
|
# UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
|
|
###########################################################################
|
|
|
|
Header:
|
|
Type: ITEM_DB
|
|
Version: 2
|
|
|
|
Body:
|
|
- Id: 500
|
|
AegisName: Choko_Gangjeong
|
|
Name: Choko Gangjeong
|
|
Type: Healing
|
|
Weight: 10
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 501
|
|
AegisName: Red_Potion
|
|
Name: Red Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 70
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 502
|
|
AegisName: Orange_Potion
|
|
Name: Orange Potion
|
|
Type: Healing
|
|
Buy: 50
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 503
|
|
AegisName: Yellow_Potion
|
|
Name: Yellow Potion
|
|
Type: Healing
|
|
Buy: 180
|
|
Weight: 130
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 504
|
|
AegisName: White_Potion
|
|
Name: White Potion
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 505
|
|
AegisName: Blue_Potion
|
|
Name: Blue Potion
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 150
|
|
Script: |
|
|
itemheal 0,rand(40,60);
|
|
- Id: 506
|
|
AegisName: Green_Potion
|
|
Name: Green Potion
|
|
Type: Healing
|
|
Buy: 40
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_HALLUCINATION;
|
|
- Id: 507
|
|
AegisName: Red_Herb
|
|
Name: Red Herb
|
|
Type: Healing
|
|
Buy: 18
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(18,28),0;
|
|
- Id: 508
|
|
AegisName: Yellow_Herb
|
|
Name: Yellow Herb
|
|
Type: Healing
|
|
Buy: 40
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(38,58),0;
|
|
- Id: 509
|
|
AegisName: White_Herb
|
|
Name: White Herb
|
|
Type: Healing
|
|
Buy: 120
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(75,115),0;
|
|
- Id: 510
|
|
AegisName: Blue_Herb
|
|
Name: Blue Herb
|
|
Type: Healing
|
|
Buy: 60
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(15,30);
|
|
- Id: 511
|
|
AegisName: Green_Herb
|
|
Name: Green Herb
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_end SC_POISON;
|
|
- Id: 512
|
|
AegisName: Apple
|
|
Name: Apple
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(16,22),0;
|
|
- Id: 513
|
|
AegisName: Banana
|
|
Name: Banana
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(17,21),0;
|
|
- Id: 514
|
|
AegisName: Grape
|
|
Name: Grape
|
|
Type: Healing
|
|
Buy: 200
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(10,15);
|
|
- Id: 515
|
|
AegisName: Carrot
|
|
Name: Carrot
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(18,20),0;
|
|
- Id: 516
|
|
AegisName: Sweet_Potato
|
|
Name: Potato
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(15,23),0;
|
|
- Id: 517
|
|
AegisName: Meat
|
|
Name: Meat
|
|
Type: Healing
|
|
Buy: 50
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(70,100),0;
|
|
- Id: 518
|
|
AegisName: Honey
|
|
Name: Honey
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(70,100),rand(20,40);
|
|
- Id: 519
|
|
AegisName: Milk
|
|
Name: Milk
|
|
Type: Healing
|
|
Buy: 25
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(27,37),0;
|
|
- Id: 520
|
|
AegisName: Leaflet_Of_Hinal
|
|
Name: Hinalle Leaflet
|
|
Type: Healing
|
|
Buy: 150
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 521
|
|
AegisName: Leaflet_Of_Aloe
|
|
Name: Aloe Leaflet
|
|
Type: Healing
|
|
Buy: 360
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 522
|
|
AegisName: Fruit_Of_Mastela
|
|
Name: Mastela Fruit
|
|
Type: Healing
|
|
Buy: 8500
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(400,600),0;
|
|
- Id: 523
|
|
AegisName: Holy_Water
|
|
Name: Holy Water
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_end SC_CURSE;
|
|
- Id: 525
|
|
AegisName: Panacea
|
|
Name: Panacea
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 526
|
|
AegisName: Royal_Jelly
|
|
Name: Royal Jelly
|
|
Type: Healing
|
|
Buy: 7000
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
- Id: 528
|
|
AegisName: Monster's_Feed
|
|
Name: Monster's Feed
|
|
Type: Healing
|
|
Buy: 60
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(72,108),0;
|
|
- Id: 529
|
|
AegisName: Candy
|
|
Name: Candy
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 530
|
|
AegisName: Candy_Striper
|
|
Name: Candy Cane
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 531
|
|
AegisName: Apple_Juice
|
|
Name: Apple Juice
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(25,35),0;
|
|
- Id: 532
|
|
AegisName: Banana_Juice
|
|
Name: Banana Juice
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(26,34),0;
|
|
- Id: 533
|
|
AegisName: Grape_Juice
|
|
Name: Grape Juice
|
|
Type: Healing
|
|
Buy: 250
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(15,25);
|
|
- Id: 534
|
|
AegisName: Carrot_Juice
|
|
Name: Carrot Juice
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(27,33),0;
|
|
- Id: 535
|
|
AegisName: Pumpkin
|
|
Name: Pumpkin
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 19,0;
|
|
- Id: 536
|
|
AegisName: Ice_Cream
|
|
Name: Ice Cream
|
|
Type: Healing
|
|
Buy: 150
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
sc_start SC_FREEZE,10000,0,2500,0;
|
|
- Id: 537
|
|
AegisName: Pet_Food
|
|
Name: Pet Food
|
|
Type: Healing
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(50,90),0;
|
|
- Id: 538
|
|
AegisName: Well_Baked_Cookie
|
|
Name: Well-baked Cookie
|
|
Type: Healing
|
|
Buy: 1000
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(160,200),0;
|
|
- Id: 539
|
|
AegisName: Piece_Of_Cake
|
|
Name: Piece of Cake
|
|
Type: Healing
|
|
Buy: 3000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(270,330),0;
|
|
- Id: 540
|
|
AegisName: Falcon's_Feed
|
|
Name: Falcon Food
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Script: |
|
|
itemheal rand(185,225),0;
|
|
- Id: 541
|
|
AegisName: Pecopeco's_Feed
|
|
Name: PecoPeco Food
|
|
Type: Healing
|
|
Buy: 3000
|
|
Weight: 50
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 542
|
|
AegisName: Festive_Cookie
|
|
Name: Festival Cookie
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 543
|
|
AegisName: Festive_Rainbow_Cake
|
|
Name: Festival Rainbow Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 544
|
|
AegisName: Fish_Slice
|
|
Name: Raw Fish
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(25,60),0;
|
|
- Id: 545
|
|
AegisName: Red_Slim_Potion
|
|
Name: Condensed Red Potion
|
|
Type: Healing
|
|
Buy: 150
|
|
Weight: 20
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 546
|
|
AegisName: Yellow_Slim_Potion
|
|
Name: Condensed Yellow Potion
|
|
Type: Healing
|
|
Buy: 600
|
|
Weight: 30
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 547
|
|
AegisName: White_Slim_Potion
|
|
Name: Condensed White Potion
|
|
Type: Healing
|
|
Buy: 1650
|
|
Weight: 50
|
|
Trade:
|
|
NoSell: true
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 548
|
|
AegisName: Cheese
|
|
Name: Cheese
|
|
Type: Healing
|
|
Buy: 2800
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(10,15);
|
|
- Id: 549
|
|
AegisName: Nice_Sweet_Potato
|
|
Name: Yam
|
|
Type: Healing
|
|
Buy: 180
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(50,100),0;
|
|
sc_start SC_STUN,3000,0,1500,0;
|
|
- Id: 550
|
|
AegisName: Popped_Rice
|
|
Name: Rice Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(10,15),0;
|
|
- Id: 551
|
|
AegisName: Shusi
|
|
Name: Sushi
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(50,60),0;
|
|
- Id: 552
|
|
AegisName: KETUPAT
|
|
Name: Ketupat
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(70,90),rand(20,30);
|
|
- Id: 553
|
|
AegisName: Bun
|
|
Name: Bao
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(35,70),0;
|
|
- Id: 554
|
|
AegisName: Mojji
|
|
Name: Mochi
|
|
Type: Healing
|
|
Buy: 100
|
|
Weight: 80
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
sc_start SC_STUN,3000,0;
|
|
sc_start SC_BLIND,2000,0,1500,0;
|
|
- Id: 555
|
|
AegisName: Rice_Cake
|
|
Name: Traditional Rice Cake
|
|
Type: Healing
|
|
Buy: 100
|
|
Weight: 20
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 556
|
|
AegisName: Long_Rice_Cake
|
|
Name: Rice Cake Stick
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(20,25),0;
|
|
- Id: 557
|
|
AegisName: Hash_Rice_Cake
|
|
Name: Neatly Sliced Rice Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(25,30),0;
|
|
- Id: 558
|
|
AegisName: Chocolate
|
|
Name: Chocolate
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 20
|
|
Script: |
|
|
itemheal 1,1;
|
|
- Id: 559
|
|
AegisName: HandMade_Chocolate
|
|
Name: Hand-made Chocolate
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 560
|
|
AegisName: HandMade_Chocolate_
|
|
Name: Handmade White Chocolate
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 561
|
|
AegisName: White_Chocolate
|
|
Name: White Chocolate
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 562
|
|
AegisName: Pizza
|
|
Name: Doublecrust Swiss Fondue
|
|
Type: Healing
|
|
Buy: 100
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(70,100),0;
|
|
- Id: 563
|
|
AegisName: Pizza_01
|
|
Name: Doublecrust Swiss Fondue
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(375,445),0;
|
|
- Id: 564
|
|
AegisName: Rice_Ball
|
|
Name: Rice Ball
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 200,0;
|
|
- Id: 565
|
|
AegisName: Vita500_Bottle
|
|
Name: Vita500
|
|
Type: Healing
|
|
Buy: 580
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(142,274),0;
|
|
- Id: 566
|
|
AegisName: Tomyumkung
|
|
Name: Tom Yum Goong
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(244,350),rand(10,30);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 567
|
|
AegisName: Prawn
|
|
Name: Shrimp
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(117,192),0;
|
|
- Id: 568
|
|
AegisName: Lemon
|
|
Name: Lemon
|
|
Type: Healing
|
|
Buy: 60
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(10,20);
|
|
- Id: 569
|
|
AegisName: Novice_Potion
|
|
Name: Novice Potion
|
|
Type: Healing
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(44,66),0;
|
|
- Id: 570
|
|
AegisName: Lucky_Candy
|
|
Name: Lucky Candy
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 571
|
|
AegisName: Lucky_Candy_Cane
|
|
Name: Lucky Candy Cane
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 572
|
|
AegisName: Lucky_Cookie
|
|
Name: Lucky Cookie
|
|
Type: Healing
|
|
Buy: 1000
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(160,200),0;
|
|
- Id: 573
|
|
AegisName: Chocolate_Drink
|
|
Name: Chocolate Drink
|
|
Type: Healing
|
|
Buy: 7000
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(330,410),rand(45,65);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 574
|
|
AegisName: Egg
|
|
Name: Egg
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(33,42),0;
|
|
- Id: 575
|
|
AegisName: Piece_Of_Cake_
|
|
Name: 2nd Anniversary Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(270,330),0;
|
|
- Id: 576
|
|
AegisName: Prickly_Fruit
|
|
Name: Prickly Fruit
|
|
Type: Healing
|
|
Buy: 540
|
|
Weight: 60
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(150,300),rand(20,30);
|
|
- Id: 577
|
|
AegisName: Grain
|
|
Name: Bag of Grain
|
|
Type: Healing
|
|
Buy: 200
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(60,70),0;
|
|
- Id: 578
|
|
AegisName: Strawberry
|
|
Name: Strawberry
|
|
Type: Healing
|
|
Buy: 200
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(16,28);
|
|
- Id: 579
|
|
AegisName: Delicious_Fish
|
|
Name: Fresh Fish
|
|
Type: Healing
|
|
Buy: 700
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(100,150),0;
|
|
- Id: 580
|
|
AegisName: Bread
|
|
Name: Bread
|
|
Type: Healing
|
|
Buy: 150
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(50,90),0;
|
|
- Id: 581
|
|
AegisName: Mushroom
|
|
Name: Edible Mushroom
|
|
Type: Healing
|
|
Buy: 40
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(20,30),0;
|
|
- Id: 582
|
|
AegisName: Orange
|
|
Name: Orange
|
|
Type: Healing
|
|
Buy: 300
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(10,20),rand(10,20);
|
|
- Id: 583
|
|
AegisName: KETUPAT_
|
|
Name: Ketupat Sayur
|
|
Type: Healing
|
|
Buy: 7000
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 584
|
|
AegisName: Fish_Ball_Soup
|
|
Name: Fish Cake Soup
|
|
Type: Healing
|
|
Buy: 100
|
|
Weight: 60
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(40,70),0;
|
|
- Id: 585
|
|
AegisName: Wurst
|
|
Name: Brusti
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 40
|
|
Script: |
|
|
itemheal rand(15,20),0;
|
|
itemskill "PR_MAGNIFICAT",3;
|
|
- Id: 586
|
|
AegisName: Mother's_Cake
|
|
Name: Mother's Cake
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 587
|
|
AegisName: Prickly_Fruit_
|
|
Name: Red Prickly Fruit
|
|
Type: Healing
|
|
Buy: 880
|
|
Weight: 60
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(270,330),rand(20,30);
|
|
- Id: 588
|
|
AegisName: Spaghetti
|
|
Name: Spaghetti
|
|
Type: Healing
|
|
Buy: 100
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(40,70),0;
|
|
- Id: 589
|
|
AegisName: Pizza_02
|
|
Name: Pizza
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 150
|
|
Script: |
|
|
itemheal rand(375,445),0;
|
|
- Id: 590
|
|
AegisName: Brezel_
|
|
Name: Pretzel
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 20
|
|
Script: |
|
|
itemheal rand(50,90),0;
|
|
- Id: 591
|
|
AegisName: Caviar_Pancake
|
|
Name: Caviar Pancake
|
|
Type: Healing
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 592
|
|
AegisName: Jam_Pancake
|
|
Name: Jam Pancake
|
|
Type: Healing
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 593
|
|
AegisName: Honey_Pancake
|
|
Name: Honey Pancake
|
|
Type: Healing
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 594
|
|
AegisName: Sour_Cream_Pancake
|
|
Name: Sour-Cream Pancake
|
|
Type: Healing
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 595
|
|
AegisName: Mushroom_Pancake
|
|
Name: Mushroom Pancake
|
|
Type: Healing
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(325,405),rand(40,60);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 596
|
|
AegisName: Cute_Strawberry_Choco
|
|
Name: Cute Strawberry-Choco
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
itemheal 0,rand(1,100);
|
|
- Id: 597
|
|
AegisName: Lovely_Choco_Tart
|
|
Name: Lovely Choco-Tart
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(10,400),0;
|
|
- Id: 598
|
|
AegisName: Light_Red_Pot
|
|
Name: Light Red Potion
|
|
Type: Healing
|
|
Buy: 50
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 599
|
|
AegisName: Light_Orange_Pot
|
|
Name: Light Orange Potion
|
|
Type: Healing
|
|
Buy: 200
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 601
|
|
AegisName: Wing_Of_Fly
|
|
Name: Fly Wing
|
|
Type: Delayconsume
|
|
Buy: 250
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 602
|
|
AegisName: Wing_Of_Butterfly
|
|
Name: Butterfly Wing
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",3;
|
|
- Id: 603
|
|
AegisName: Old_Blue_Box
|
|
Name: Old Blue Box
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Trade:
|
|
NoSell: true
|
|
Script: |
|
|
getrandgroupitem(IG_BlueBox,1);
|
|
- Id: 604
|
|
AegisName: Branch_Of_Dead_Tree
|
|
Name: Dead Branch
|
|
Type: Usable
|
|
Buy: 50
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
DeadBranch: true
|
|
Script: |
|
|
monster "this",-1,-1,"--ja--",-1-MOBG_BRANCH_OF_DEAD_TREE,1,"";
|
|
- Id: 605
|
|
AegisName: Anodyne
|
|
Name: Anodyne
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "SM_ENDURE",1;
|
|
- Id: 606
|
|
AegisName: Aloebera
|
|
Name: Aloevera
|
|
Type: Delayconsume
|
|
Buy: 1500
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "SM_SELFPROVOKE",1;
|
|
- Id: 607
|
|
AegisName: Yggdrasilberry
|
|
Name: Yggdrasil Berry
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_F
|
|
Script: |
|
|
percentheal 100,100;
|
|
- Id: 608
|
|
AegisName: Seed_Of_Yggdrasil
|
|
Name: Yggdrasil Seed
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 3000
|
|
Status: Reuse_Limit_G
|
|
Script: |
|
|
percentheal 50,50;
|
|
- Id: 609
|
|
AegisName: Amulet
|
|
Name: Amulet
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 610
|
|
AegisName: Leaf_Of_Yggdrasil
|
|
Name: Yggdrasil Leaf
|
|
Type: Delayconsume
|
|
Buy: 12000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ALL_RESURRECTION",1;
|
|
- Id: 611
|
|
AegisName: Spectacles
|
|
Name: Magnifier
|
|
Type: Delayconsume
|
|
Buy: 40
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "MC_IDENTIFY",1;
|
|
- Id: 612
|
|
AegisName: Portable_Furnace
|
|
Name: Mini Furnace
|
|
Type: Usable
|
|
Buy: 150
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
produce 21;
|
|
- Id: 613
|
|
AegisName: Iron_Hammer
|
|
Name: Iron Hammer
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
produce 1;
|
|
- Id: 614
|
|
AegisName: Golden_Hammer
|
|
Name: Golden Hammer
|
|
Type: Usable
|
|
Buy: 3000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
produce 2;
|
|
- Id: 615
|
|
AegisName: Oridecon_Hammer
|
|
Name: Oridecon Hammer
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 400
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
produce 3;
|
|
- Id: 616
|
|
AegisName: Old_Card_Album
|
|
Name: Old Card Album
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum,1);
|
|
- Id: 617
|
|
AegisName: Old_Violet_Box
|
|
Name: Old Purple Box
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Trade:
|
|
NoSell: true
|
|
Script: |
|
|
getrandgroupitem(IG_VioletBox,1);
|
|
- Id: 618
|
|
AegisName: Worn_Out_Scroll
|
|
Name: Worn Out Scroll
|
|
Type: Usable
|
|
Buy: 50
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 619
|
|
AegisName: Unripe_Apple
|
|
Name: Unripe Apple
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1002;
|
|
- Id: 620
|
|
AegisName: Orange_Juice
|
|
Name: Orange Juice
|
|
Type: Usable
|
|
Buy: 1500
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1113;
|
|
- Id: 621
|
|
AegisName: Bitter_Herb
|
|
Name: Bitter Herb
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1031;
|
|
- Id: 622
|
|
AegisName: Rainbow_Carrot
|
|
Name: Rainbow Carrot
|
|
Type: Usable
|
|
Buy: 2500
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1063;
|
|
- Id: 623
|
|
AegisName: Earthworm_The_Dude
|
|
Name: Earthworm the Dude
|
|
Type: Usable
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1049;
|
|
- Id: 624
|
|
AegisName: Rotten_Fish
|
|
Name: Rotten Fish
|
|
Type: Usable
|
|
Buy: 2500
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1011;
|
|
- Id: 625
|
|
AegisName: Lusty_Iron
|
|
Name: Rusty Iron
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1042;
|
|
- Id: 626
|
|
AegisName: Monster_Juice
|
|
Name: Monster Juice
|
|
Type: Usable
|
|
Buy: 1500
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1035;
|
|
- Id: 627
|
|
AegisName: Sweet_Milk
|
|
Name: Sweet Milk
|
|
Type: Usable
|
|
Buy: 7000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1167;
|
|
- Id: 628
|
|
AegisName: Well_Dried_Bone
|
|
Name: Well-Dried Bone
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1107;
|
|
- Id: 629
|
|
AegisName: Singing_Flower
|
|
Name: Singing Flower
|
|
Type: Usable
|
|
Buy: 300
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1052;
|
|
- Id: 630
|
|
AegisName: Dew_Laden_Moss
|
|
Name: Dew Laden Moss
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1014;
|
|
- Id: 631
|
|
AegisName: Deadly_Noxious_Herb
|
|
Name: Deadly Noxious Herb
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1077;
|
|
- Id: 632
|
|
AegisName: Fatty_Chubby_Earthworm
|
|
Name: Fatty Chubby Earthworm
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1019;
|
|
- Id: 633
|
|
AegisName: Baked_Yam
|
|
Name: Sweet Potato
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1056;
|
|
- Id: 634
|
|
AegisName: Tropical_Banana
|
|
Name: Tropical Banana
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1057;
|
|
- Id: 635
|
|
AegisName: Horror_Of_Tribe
|
|
Name: Orc Trophy
|
|
Type: Usable
|
|
Buy: 300
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1023;
|
|
- Id: 636
|
|
AegisName: No_Recipient
|
|
Name: No Recipient
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1026;
|
|
- Id: 637
|
|
AegisName: Old_Broom
|
|
Name: Old Broom
|
|
Type: Usable
|
|
Buy: 350
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1110;
|
|
- Id: 638
|
|
AegisName: Silver_Knife_Of_Chaste
|
|
Name: Silver Knife of Chastity
|
|
Type: Usable
|
|
Buy: 12000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1170;
|
|
- Id: 639
|
|
AegisName: Armlet_Of_Obedience
|
|
Name: Armlet of Obedience
|
|
Type: Usable
|
|
Buy: 18000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1029;
|
|
- Id: 640
|
|
AegisName: Shining_Stone
|
|
Name: Shining Stone
|
|
Type: Usable
|
|
Buy: 3000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1155;
|
|
- Id: 641
|
|
AegisName: Contracts_In_Shadow
|
|
Name: Contract in Shadow
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1109;
|
|
- Id: 642
|
|
AegisName: Book_Of_Devil
|
|
Name: Book of the Devil
|
|
Type: Usable
|
|
Buy: 1800
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1101;
|
|
- Id: 643
|
|
AegisName: Pet_Incubator
|
|
Name: Pet Incubator
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
bpet;
|
|
- Id: 644
|
|
AegisName: Gift_Box
|
|
Name: Gift Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBox,1);
|
|
- Id: 645
|
|
AegisName: Center_Potion
|
|
Name: Concentration Potion
|
|
Type: Usable
|
|
Buy: 1200
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,1800000,4;
|
|
- Id: 656
|
|
AegisName: Awakening_Potion
|
|
Name: Awakening Potion
|
|
Type: Usable
|
|
Buy: 2200
|
|
Weight: 150
|
|
Jobs:
|
|
Alchemist: true
|
|
Archer: true
|
|
Assassin: true
|
|
Blacksmith: true
|
|
Crusader: true
|
|
Gunslinger: true
|
|
Hunter: true
|
|
KagerouOboro: true
|
|
Knight: true
|
|
Mage: true
|
|
Merchant: true
|
|
Monk: true
|
|
Ninja: true
|
|
Novice: true
|
|
Rebellion: true
|
|
Rogue: true
|
|
Sage: true
|
|
SoulLinker: true
|
|
StarGladiator: true
|
|
Summoner: true
|
|
SuperNovice: true
|
|
Swordman: true
|
|
Taekwon: true
|
|
Thief: true
|
|
Wizard: true
|
|
EquipLevelMin: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION1,1800000,6;
|
|
- Id: 657
|
|
AegisName: Berserk_Potion
|
|
Name: Berserk Potion
|
|
Type: Usable
|
|
Buy: 4500
|
|
Weight: 200
|
|
Jobs:
|
|
Alchemist: true
|
|
Blacksmith: true
|
|
Crusader: true
|
|
Gunslinger: true
|
|
Knight: true
|
|
Mage: true
|
|
Merchant: true
|
|
Rebellion: true
|
|
Rogue: true
|
|
SoulLinker: true
|
|
StarGladiator: true
|
|
Swordman: true
|
|
Taekwon: true
|
|
Wizard: true
|
|
EquipLevelMin: 85
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION2,1800000,9;
|
|
- Id: 658
|
|
AegisName: Union_Of_Tribe
|
|
Name: Union of Tribe
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 500
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
guildgetexp rand(500000,1000000);
|
|
- Id: 659
|
|
AegisName: Heart_Of_Her
|
|
Name: Her Heart
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1188;
|
|
- Id: 660
|
|
AegisName: Prohibition_Red_Candle
|
|
Name: Forbidden Red Candle
|
|
Type: Usable
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1200;
|
|
- Id: 661
|
|
AegisName: Sway_Apron
|
|
Name: Soft Apron
|
|
Type: Usable
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1275;
|
|
- Id: 662
|
|
AegisName: Inspector_Certificate
|
|
Name: Authoritative Badge
|
|
Type: Usable
|
|
Buy: 1450
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,180000,25;
|
|
- Id: 663
|
|
AegisName: Korea_Rice_Cake
|
|
Name: Korean Rice Cake
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 10,0;
|
|
- Id: 664
|
|
AegisName: Gift_Box_1
|
|
Name: Gift Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBox_1,1);
|
|
- Id: 665
|
|
AegisName: Gift_Box_2
|
|
Name: Gift Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBox_2,1);
|
|
- Id: 666
|
|
AegisName: Gift_Box_3
|
|
Name: Gift Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBox_3,1);
|
|
- Id: 667
|
|
AegisName: Gift_Box_4
|
|
Name: Gift Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBox_4,1);
|
|
- Id: 668
|
|
AegisName: Handsei
|
|
Name: Red Envelope
|
|
Type: Usable
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
Zeny += rand(1000,10000);
|
|
- Id: 669
|
|
AegisName: Rice_Cake_Soup
|
|
Name: Tempting Rice-Cake Soup
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 671
|
|
AegisName: Gold_Coin
|
|
Name: Gold Coin
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
RouletteGold++;
|
|
- Id: 673
|
|
AegisName: Copper_Coin
|
|
Name: Bronze Coin
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 40
|
|
Script: |
|
|
RouletteBronze++;
|
|
- Id: 675
|
|
AegisName: Silver_Coin
|
|
Name: Silver Coin
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
RouletteSilver++;
|
|
- Id: 678
|
|
AegisName: Poison_Bottle
|
|
Name: Poison Bottle
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T || Class == Job_Shadow_Cross) {
|
|
sc_start SC_DPOISON,60000,0;
|
|
sc_start SC_ASPDPOTION3,60000,9;
|
|
}
|
|
else
|
|
percentheal -100,-100;
|
|
- Id: 679
|
|
AegisName: Gold_Pill
|
|
Name: Pilule
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DPOISON,10000,0,1000,0;
|
|
sc_start SC_POISON,50000,0;
|
|
- Id: 680
|
|
AegisName: Magical_Carnation
|
|
Name: Magic Carnation
|
|
Type: Healing
|
|
Weight: 1000
|
|
Script: |
|
|
percentheal 0,20;
|
|
- Id: 681
|
|
AegisName: Memory_Of_Wedding
|
|
Name: Sweet Memory of Marriage
|
|
Type: Usable
|
|
Buy: 50000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (getpartnerid())
|
|
sc_start SC_WEDDING,600000,0;
|
|
- Id: 682
|
|
AegisName: Realgar_Wine
|
|
Name: Distilled Fighting Spirit
|
|
Type: Usable
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,60000,30;
|
|
- Id: 683
|
|
AegisName: Exorcize_Herb
|
|
Name: Herb of Incantation
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_MATKPOTION,60000,30;
|
|
- Id: 684
|
|
AegisName: Durian
|
|
Name: Durian
|
|
Type: Usable
|
|
Buy: 15000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,60000,10;
|
|
sc_start SC_MATKPOTION,60000,10;
|
|
- Id: 685
|
|
AegisName: RAMADAN
|
|
Name: Ramadan
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 300
|
|
Script: |
|
|
percentheal 100,50;
|
|
- Id: 686
|
|
AegisName: Earth_Scroll_1_3
|
|
Name: Level 3 Earth Spike
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "WZ_EARTHSPIKE",3;
|
|
- Id: 687
|
|
AegisName: Earth_Scroll_1_5
|
|
Name: Level 5 Earth Spike
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "WZ_EARTHSPIKE",5;
|
|
- Id: 688
|
|
AegisName: Cold_Scroll_1_3
|
|
Name: Level 3 Cold Bolt
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_COLDBOLT",3;
|
|
- Id: 689
|
|
AegisName: Cold_Scroll_1_5
|
|
Name: Level 5 Cold Bolt
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_COLDBOLT",5;
|
|
- Id: 690
|
|
AegisName: Fire_Scroll_1_3
|
|
Name: Level 3 Fire Bolt
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREBOLT",3;
|
|
- Id: 691
|
|
AegisName: Fire_Scroll_1_5
|
|
Name: Level 5 Fire Bolt
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREBOLT",5;
|
|
- Id: 692
|
|
AegisName: Wind_Scroll_1_3
|
|
Name: Level 3 Lightening Bolt
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_LIGHTNINGBOLT",3;
|
|
- Id: 693
|
|
AegisName: Wind_Scroll_1_5
|
|
Name: Level 5 Lightening Bolt
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_LIGHTNINGBOLT",5;
|
|
- Id: 694
|
|
AegisName: Ghost_Scroll_1_3
|
|
Name: Level 3 Soul Strike
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_SOULSTRIKE",3;
|
|
- Id: 695
|
|
AegisName: Ghost_Scroll_1_5
|
|
Name: Level 5 Soul Strike
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_SOULSTRIKE",5;
|
|
- Id: 696
|
|
AegisName: Fire_Scroll_2_1
|
|
Name: Level 1 Fire Ball
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREBALL",1;
|
|
- Id: 697
|
|
AegisName: Fire_Scroll_2_5
|
|
Name: Level 5 Fire Ball
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREBALL",5;
|
|
- Id: 698
|
|
AegisName: Fire_Scroll_3_1
|
|
Name: Level 1 Fire Wall
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREWALL",1;
|
|
- Id: 699
|
|
AegisName: Fire_Scroll_3_5
|
|
Name: Level 5 Fire Wall
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FIREWALL",5;
|
|
- Id: 700
|
|
AegisName: Cold_Scroll_2_1
|
|
Name: Level 1 Frost Diver
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FROSTDIVER",1;
|
|
- Id: 6046
|
|
AegisName: Clothing_Dye_Coupon
|
|
Name: Clothing Dye Coupon
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 6047
|
|
AegisName: Clothing_Dye_Coupon_II
|
|
Name: Clothing Dye Coupon II
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 6720
|
|
AegisName: Status_Reset_Coupon
|
|
Name: Status Reset Coupon
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
resetstatus;
|
|
- Id: 6721
|
|
AegisName: Status_Reset_Coupon_
|
|
Name: Status Reset Coupon
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
resetstatus;
|
|
- Id: 7037
|
|
AegisName: Trade_Coupon
|
|
Name: Coupon
|
|
Type: Usable
|
|
Buy: 100
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*set pcroom,(gettimetick(2)+7200);*/
|
|
- Id: 9510
|
|
AegisName: Enchant_Stone_Box17
|
|
Name: Costume Enchant Stone Box 17
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box17);
|
|
- Id: 9514
|
|
AegisName: Ein_Ddbox
|
|
Name: Physical Modification Permit
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9523
|
|
AegisName: Metal_Smelting_Ticket
|
|
Name: Metal Refining Ticket
|
|
Type: Delayconsume
|
|
Weight: 1
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9529
|
|
AegisName: Ein_Ddbox2
|
|
Name: Magical Modification Permit
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9550
|
|
AegisName: Gemstone_Of_Time
|
|
Name: Gemstone of Time
|
|
Type: Delayconsume
|
|
Weight: 1
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9551
|
|
AegisName: Time_Unseal_Key
|
|
Name: Time Unseal Key
|
|
Type: Delayconsume
|
|
Weight: 1
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9553
|
|
AegisName: C_CatPaw_7Day_Box_
|
|
Name: Infinite Cat Hand Ticket 7 Days Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 22998,604800;
|
|
- Id: 9785
|
|
AegisName: Frozen_Box_IL
|
|
Name: Frozen Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9894
|
|
AegisName: aegis_9894
|
|
Name: "[Scroll] Adrenaline Lv.5 Scroll"
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "BS_ADRENALINE",5;
|
|
- Id: 9895
|
|
AegisName: aegis_9895
|
|
Name: "[Scroll] Abrasive"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
sc_start SC_INCCRI,300000,30;
|
|
- Id: 9896
|
|
AegisName: aegis_9896
|
|
Name: "[Scroll] Power Booster"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;
|
|
- Id: 9909
|
|
AegisName: aegis_9909
|
|
Name: "[Scroll] Ex Def Potion"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_DEF_RATE,1800000,3;
|
|
sc_start SC_MDEF_RATE,1800000,3;
|
|
- Id: 9933
|
|
AegisName: True_Hunting_9Refine
|
|
Name: Troi Hunting 9 Refinement Package
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9934
|
|
AegisName: True_Hunting_Opt_A
|
|
Name: Trois Hunting Physical Craft Kit
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9935
|
|
AegisName: True_Hunting_Opt_B
|
|
Name: Trois Hunting Magical Craft Kit
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 9969
|
|
AegisName: Arca_Cura_BR
|
|
Name: Healing Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14523,600;
|
|
getitem 14522,600;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9970
|
|
AegisName: Arca_Palito_BR
|
|
Name: Stick Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14616,5;
|
|
getitem 14617,5;
|
|
getitem 14618,5;
|
|
getitem 14619,5;
|
|
getitem 14620,5;
|
|
getitem 14621,5;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9971
|
|
AegisName: Arca_Batalha2_BR
|
|
Name: Major Battle Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,20;
|
|
getitem 14592,20;
|
|
getitem 14601,20;
|
|
getitem 12832,60;
|
|
getitem 12791,50;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9972
|
|
AegisName: Arca_Batalha_BR
|
|
Name: Battle Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,2;
|
|
getitem 14592,2;
|
|
getitem 14601,2;
|
|
getitem 12832,6;
|
|
getitem 12791,5;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9973
|
|
AegisName: Arca_Vida2_BR
|
|
Name: Major Ark of Life # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,200;
|
|
getitem 14535,200;
|
|
getitem 12832,200;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9974
|
|
AegisName: Arca_Vida_BR
|
|
Name: Ark of Life # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,20;
|
|
getitem 14535,20;
|
|
getitem 12832,20;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9975
|
|
AegisName: Arca_Divina2_BR
|
|
Name: Divine Major Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12883,100;
|
|
getitem 23046,10;
|
|
getitem 23047,10;
|
|
getitem 23048,10;
|
|
getitem 23049,1;
|
|
getitem 23050,1;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9976
|
|
AegisName: Arca_Divina_BR
|
|
Name: Divine Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12883,10;
|
|
getitem 23046,1;
|
|
getitem 23047,1;
|
|
getitem 23048,1;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9977
|
|
AegisName: Arca_Refino2_BR
|
|
Name: Major Refining Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,50;
|
|
getitem 7619,50;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9978
|
|
AegisName: Arca_Refino_BR
|
|
Name: Refining Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,5;
|
|
getitem 7619,5;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9979
|
|
AegisName: Arca_Enriquecido_BR
|
|
Name: Perfect Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6240,13;
|
|
getitem 6241,13;
|
|
getitem 14600,6;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9980
|
|
AegisName: Arca_Minerio_BR
|
|
Name: Ore Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6226,13;
|
|
getitem 6225,13;
|
|
getitem 14600,6;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9981
|
|
AegisName: Arca_Pergaminho_BR
|
|
Name: Scroll Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14588,50;
|
|
getitem 14589,50;
|
|
getitem 14590,50;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9982
|
|
AegisName: Arca_Especial_BR
|
|
Name: Special Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14799,4;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9983
|
|
AegisName: Arca_Celeste2_BR
|
|
Name: Major Celestial Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6439,5;
|
|
getitem 6438,5;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9984
|
|
AegisName: Arca_Celeste_BR
|
|
Name: Major Celestial Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6439,1;
|
|
getitem 6438,1;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9985
|
|
AegisName: Arca_Status_BR
|
|
Name: Potions Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22702,5;
|
|
getitem 22703,5;
|
|
getitem 22704,5;
|
|
getitem 22705,5;
|
|
getitem 22706,5;
|
|
getitem 22707,5;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 9986
|
|
AegisName: Arca_Reset_BR
|
|
Name: Reset Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12213,1;
|
|
getitem 6320,4;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9987
|
|
AegisName: Arca_Up2_BR
|
|
Name: Major Evolve Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12375,100;
|
|
getitem 12796,100;
|
|
getitem 12684,50;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 9988
|
|
AegisName: Arca_Up_BR
|
|
Name: Evolve Ark # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12375,10;
|
|
getitem 12796,10;
|
|
getitem 12684,5;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 11500
|
|
AegisName: Light_Yellow_Pot
|
|
Name: Light Yellow Potion
|
|
Type: Healing
|
|
Buy: 550
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 11501
|
|
AegisName: Light_White_Pot
|
|
Name: Light White Potion
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 11502
|
|
AegisName: Light_Blue_Pot
|
|
Name: Light Blue Potion
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 0,rand(40,60);
|
|
- Id: 11503
|
|
AegisName: Siege_White_Potion
|
|
Name: WoE White Potion
|
|
Type: Healing
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(400,500),0;
|
|
- Id: 11504
|
|
AegisName: Siege_Blue_Potion
|
|
Name: WoE Blue Potion
|
|
Type: Healing
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 0,rand(50,70);
|
|
- Id: 11505
|
|
AegisName: Iris
|
|
Name: Iris
|
|
Type: Healing
|
|
Weight: 30
|
|
Script: |
|
|
itemheal 0,150;
|
|
- Id: 11506
|
|
AegisName: Fanta_Orange
|
|
Name: Fanta Orange
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11507
|
|
AegisName: Fanta_Grape
|
|
Name: Fanta Grape
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11508
|
|
AegisName: Karada_Meguri_Tea
|
|
Name: Karada Meguricha
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11509
|
|
AegisName: Royal_Milk_Tea
|
|
Name: Black Tea Kochakaden
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11510
|
|
AegisName: Coke_Zero
|
|
Name: Coca Cola Zero
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11511
|
|
AegisName: Coke_No_Cal
|
|
Name: Diet Coca Cola
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11512
|
|
AegisName: Coca_Cola
|
|
Name: Coca Cola
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11513
|
|
AegisName: Protect_Neck_Candy
|
|
Name: Protect Neck Candy
|
|
Type: Healing
|
|
Buy: 250
|
|
Weight: 1
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(5,25),0;
|
|
- Id: 11514
|
|
AegisName: Enriched_Slim_Pot
|
|
Name: Enriched Slim Pot
|
|
Type: Healing
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(335,415),0;
|
|
- Id: 11515
|
|
AegisName: Coconut
|
|
Name: Coconut
|
|
Type: Healing
|
|
Buy: 1500
|
|
Weight: 120
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(300,400),0;
|
|
if (getequipid(EQI_HEAD_MID) == 15385)
|
|
warp "dali",113,82;
|
|
/* todo check map x y */
|
|
- Id: 11516
|
|
AegisName: Asai_Fruit
|
|
Name: Asai Fruit
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(16,22),0;
|
|
- Id: 11517
|
|
AegisName: Puri_Potion
|
|
Name: Puri Potion
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(400,600),0;
|
|
- Id: 11518
|
|
AegisName: N_Blue_Potion
|
|
Name: Blue Potion
|
|
Type: Healing
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 0,5;
|
|
- Id: 11519
|
|
AegisName: Beef_Toast
|
|
Name: Beef Toast
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(170,250),0;
|
|
- Id: 11520
|
|
AegisName: Mora_Mandarin
|
|
Name: Mora Mandar
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 20
|
|
EquipLevelMin: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(50,80);
|
|
- Id: 11521
|
|
AegisName: Pingui_Berry_Juice
|
|
Name: Pingui Berry Juice
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 50
|
|
EquipLevelMin: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(400,800),rand(50,80);
|
|
- Id: 11522
|
|
AegisName: Red_Raffle_Sap
|
|
Name: Red Raffle Sap
|
|
Type: Healing
|
|
Buy: 2500
|
|
Weight: 100
|
|
EquipLevelMin: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 1000
|
|
Status: Reuse_Limit_E
|
|
Script: |
|
|
itemheal rand(400,800),0;
|
|
- Id: 11523
|
|
AegisName: Yellow_Raffle_Sap
|
|
Name: Yellow Raffle Sap
|
|
Type: Healing
|
|
Buy: 3000
|
|
Weight: 120
|
|
EquipLevelMin: 110
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 2000
|
|
Status: Reuse_Limit_E
|
|
Script: |
|
|
itemheal rand(600,1000),0;
|
|
- Id: 11524
|
|
AegisName: White_Raffle_Sap
|
|
Name: White Raffle Sap
|
|
Type: Healing
|
|
Buy: 3500
|
|
Weight: 140
|
|
EquipLevelMin: 120
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 3000
|
|
Status: Reuse_Limit_E
|
|
Script: |
|
|
itemheal rand(800,1200),0;
|
|
- Id: 11525
|
|
AegisName: Mora_Hip_Tea
|
|
Name: Mora Hip Tea
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 150
|
|
EquipLevelMin: 120
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_H
|
|
Script: |
|
|
itemheal rand(1500,2000),0;
|
|
- Id: 11526
|
|
AegisName: Rafflecino
|
|
Name: Rafflecino
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
EquipLevelMin: 120
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(120,160);
|
|
- Id: 11527
|
|
AegisName: Baklava
|
|
Name: Baklava
|
|
Type: Healing
|
|
Buy: 3500
|
|
Weight: 600
|
|
Script: |
|
|
itemheal 1200,440;
|
|
- Id: 11528
|
|
AegisName: Kanafeh
|
|
Name: Kanafeh
|
|
Type: Healing
|
|
Buy: 1500
|
|
Weight: 200
|
|
Script: |
|
|
itemheal 300,240;
|
|
- Id: 11529
|
|
AegisName: MAAMOUL_
|
|
Name: Maamoul
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 100
|
|
Script: |
|
|
itemheal 120,60;
|
|
- Id: 11530
|
|
AegisName: Jujube
|
|
Name: Jujube
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 100
|
|
Script: |
|
|
itemheal 30,0;
|
|
- Id: 11531
|
|
AegisName: Coffee
|
|
Name: Coffee
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 100
|
|
Script: |
|
|
itemheal 0,10;
|
|
- Id: 11532
|
|
AegisName: Nasi_Goreng
|
|
Name: Nasi Goreng
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(17,23),0;
|
|
- Id: 11533
|
|
AegisName: Satay
|
|
Name: Satay
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(17,23),0;
|
|
- Id: 11534
|
|
AegisName: Coco_Juice
|
|
Name: Coconut Juice
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(17,23),0;
|
|
- Id: 11535
|
|
AegisName: Almond_Chocolate
|
|
Name: Almond Chocolate
|
|
Type: Healing
|
|
Buy: 190
|
|
Weight: 200
|
|
Script: |
|
|
itemheal 0,rand(8,16);
|
|
- Id: 11536
|
|
AegisName: Cat_Hard_Biscuit
|
|
Name: Cat Biscuit
|
|
Type: Healing
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(70,110),0;
|
|
callfunc "F_Cat_Hard_Biscuit";
|
|
- Id: 11537
|
|
AegisName: Rice_weevil_Bug
|
|
Name: Rice Weevil Bug
|
|
Type: Healing
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(100,150),0;
|
|
callfunc "F_Rice_Weevil_Bug";
|
|
- Id: 11538
|
|
AegisName: Octupus_Leg
|
|
Name: Fresh Octopus Legs
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
itemheal rand(35,60),rand(5,10);
|
|
- Id: 11539
|
|
AegisName: Athale_Choco
|
|
Name: Athale Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11540
|
|
AegisName: Shyai_Choco
|
|
Name: Shyai Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11541
|
|
AegisName: Mid_Choco
|
|
Name: Mid Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11542
|
|
AegisName: Zonda_Choco
|
|
Name: Zonda Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11543
|
|
AegisName: Goedo_Choco
|
|
Name: Goedo Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11544
|
|
AegisName: Huike_Choco
|
|
Name: Huike Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11545
|
|
AegisName: Rune_Choco
|
|
Name: Rune Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11546
|
|
AegisName: Pope_Choco
|
|
Name: Pope Choco
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 80
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11547
|
|
AegisName: Woe_Violet_Potion
|
|
Name: Siege Purple Potion
|
|
Type: Healing
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(500,700),rand(60,85);
|
|
- Id: 11548
|
|
AegisName: Woe_White_Potion
|
|
Name: Siege White Potion
|
|
Type: Healing
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 10,0;
|
|
- Id: 11549
|
|
AegisName: Woe_Blue_Potion
|
|
Name: Siege Blue Potion
|
|
Type: Healing
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 0,10;
|
|
- Id: 11550
|
|
AegisName: Pumpkin_Cake
|
|
Name: Pumpkin Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 40
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 11551
|
|
AegisName: Savory_Herb_Salad
|
|
Name: Savory Herb Salad
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(20,30),0;
|
|
sc_start SC_STRFOOD,180000,1;
|
|
- Id: 11552
|
|
AegisName: Apple_Carrot_Salad
|
|
Name: Apple Carrot Salad
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(20,30),0;
|
|
sc_start SC_AGIFOOD,180000,1;
|
|
- Id: 11553
|
|
AegisName: Casual_Stew
|
|
Name: Casual Stew
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(20,30),0;
|
|
sc_start SC_VITFOOD,180000,1;
|
|
- Id: 11554
|
|
AegisName: Golden_Roasted_Apple
|
|
Name: Golden Roasted Apple
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(20,30),0;
|
|
sc_start SC_DEXFOOD,180000,1;
|
|
- Id: 11555
|
|
AegisName: Red_Potion_RG
|
|
Name: Red Potion RG
|
|
Type: Healing
|
|
Weight: 40
|
|
Script: |
|
|
itemheal 325,0;
|
|
- Id: 11557
|
|
AegisName: TE_White_Potion
|
|
Name: TE White Potion
|
|
Type: Healing
|
|
Buy: 200
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 325,0;
|
|
- Id: 11558
|
|
AegisName: TE_White_Slim_Potion
|
|
Name: TE White Slim Potion
|
|
Type: Healing
|
|
Buy: 275
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 325,0;
|
|
- Id: 11563
|
|
AegisName: Hot_Tee
|
|
Name: Hot Tea
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,100;
|
|
if (getequipid(EQI_HEAD_MID) == 15385)
|
|
warp "xmas",233,296;
|
|
- Id: 11564
|
|
AegisName: Sweet_Canape
|
|
Name: Sweet Canape
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 1000,0;
|
|
- Id: 11565
|
|
AegisName: White_Potion_B
|
|
Name: White Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 11566
|
|
AegisName: Yellow_Potion_
|
|
Name: Yellow Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 130
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 11567
|
|
AegisName: Novice_Potion_B
|
|
Name: Novice Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(44,66),0;
|
|
- Id: 11568
|
|
AegisName: Red_Slim_Potion_B
|
|
Name: Red Slim Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 11569
|
|
AegisName: Orange_Potion_
|
|
Name: Orange Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 11570
|
|
AegisName: Red_Potion_
|
|
Name: Red Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 11571
|
|
AegisName: Green_Potion_
|
|
Name: Green Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
- Id: 11572
|
|
AegisName: Blue_Potion_B
|
|
Name: Blue Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 0,rand(40,60);
|
|
- Id: 11573
|
|
AegisName: White_Slim_Potion_B
|
|
Name: White Slim Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(325,405),0;
|
|
- Id: 11574
|
|
AegisName: Yellow_Slim_Potion_
|
|
Name: Yellow Slim Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(175,235),0;
|
|
- Id: 11577
|
|
AegisName: Rice_Ball_B
|
|
Name: Rice Ball
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 200,0;
|
|
- Id: 11578
|
|
AegisName: Candy_Striper_B
|
|
Name: Candy Bar
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 40
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 11580
|
|
AegisName: Candy_B
|
|
Name: Candy
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(45,65),0;
|
|
- Id: 11581
|
|
AegisName: Piece_Of_Cake_B
|
|
Name: Piece of Cake
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(270,330),0;
|
|
- Id: 11582
|
|
AegisName: Well_Baked_Cookie_B
|
|
Name: Well-baked Cookie
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(160,200),0;
|
|
- Id: 11583
|
|
AegisName: Chocolate_Drink_B
|
|
Name: Chocolate Drink
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal rand(330,410),rand(45,65);
|
|
sc_end SC_POISON;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLIND;
|
|
sc_end SC_CONFUSION;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_Hallucination;
|
|
- Id: 11584
|
|
AegisName: White_Chocolate_B
|
|
Name: White Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 80
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11585
|
|
AegisName: HandMade_Chocolate_B
|
|
Name: Hand-made Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 80
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11586
|
|
AegisName: HandMade_Chocolate_B_
|
|
Name: Hand-made White Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 80
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 50,50;
|
|
- Id: 11587
|
|
AegisName: Chocolate_B
|
|
Name: Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemheal 1,1;
|
|
- Id: 11588
|
|
AegisName: Fresh_Strawberries
|
|
Name: Fresh Strawberries
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(32,56),rand(16,28);
|
|
- Id: 11589
|
|
AegisName: Iceflake
|
|
Name: Cold Snow Cone
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 11590
|
|
AegisName: Meat_Skewer5
|
|
Name: Skewer No.5
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal rand(760,810),10;
|
|
- Id: 11592
|
|
AegisName: Trance_Candy_R
|
|
Name: Trans Candy Red
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
itemheal 45,0;
|
|
transform 1507,600000,SC_MTF_MHP,20;
|
|
specialeffect2 EF_CLOAKING;
|
|
showscript "Trans-Form-!! Bloody Murderer Fo-rm!!";
|
|
- Id: 11593
|
|
AegisName: Trance_Candy_B
|
|
Name: Trans Candy Blue
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
itemheal 45,0;
|
|
transform 1102,600000,SC_MTF_MSP,20;
|
|
specialeffect2 EF_CLOAKING;
|
|
showscript "Trans-Form-!!! Bathory Fo-rm!!";
|
|
- Id: 11594
|
|
AegisName: Trance_Candy_Y
|
|
Name: Trans Candy Yellow
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
itemheal 45,0;
|
|
transform 1130,600000,SC_MTF_PUMPKIN,2000,100;
|
|
specialeffect2 EF_CLOAKING;
|
|
showscript "Trans-Form-!! Jack Fo-rm!!";
|
|
- Id: 11595
|
|
AegisName: Trance_Candy_G
|
|
Name: Trans Candy Green
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
itemheal 45,0;
|
|
transform 1508,600000,SC_MTF_HITFLEE,10,20;
|
|
specialeffect2 EF_CLOAKING;
|
|
showscript "Trans-Form-!! Cube Fo-rm!!";
|
|
- Id: 11596
|
|
AegisName: Blood_In_Skull
|
|
Name: Blood In Skull
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
itemheal rand(600,800),0;
|
|
- Id: 11597
|
|
AegisName: Iron_Bug
|
|
Name: Iron Worm
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 11598
|
|
AegisName: Bitter_Cacao_Bean
|
|
Name: Bitter Cacao Bean
|
|
Type: Healing
|
|
Buy: 10
|
|
- Id: 11599
|
|
AegisName: Superstar_Potion
|
|
Name: Superstar Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
- Id: 11600
|
|
AegisName: ShiningHolyWater
|
|
Name: Shining Holy Water
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 15
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (strcharinfo(3) == "prt_q") {
|
|
specialeffect2 EF_GUARD;
|
|
bonus_script "{ bonus2 bSubSize,Size_All,10; }",600;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_POISON;
|
|
sc_end SC_CURSE;
|
|
heal 1000,0;
|
|
}
|
|
- Id: 11601
|
|
AegisName: Tasty_Anchovy
|
|
Name: Delicious Anchovy
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 20
|
|
Script: |
|
|
itemheal rand(30,46),0;
|
|
specialeffect2 EF_HEAL3;
|
|
- Id: 11602
|
|
AegisName: Nepeta_Cataria
|
|
Name: Catnip Fruit
|
|
Type: Healing
|
|
Buy: 15
|
|
Weight: 1
|
|
Script: |
|
|
itemheal rand(36,40),0;
|
|
specialeffect2 EF_HEAL3;
|
|
- Id: 11605
|
|
AegisName: Cookies_Bat
|
|
Name: Cookie Bat
|
|
Type: Healing
|
|
Weight: 30
|
|
Script: |
|
|
itemheal rand(50,100),0;
|
|
/*TODO*/
|
|
- Id: 11616
|
|
AegisName: Yummy_Meat
|
|
Name: Delicious Meat
|
|
Type: Healing
|
|
Buy: 1400
|
|
Weight: 50
|
|
Script: |
|
|
itemheal rand(100,150),0;
|
|
- Id: 11621
|
|
AegisName: Red_Syrup
|
|
Name: Red Syrup
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 70
|
|
EquipLevelMin: 60
|
|
Delay:
|
|
Duration: 1000
|
|
Script: |
|
|
itemheal 325,0;
|
|
- Id: 11622
|
|
AegisName: Yellow_Syrup
|
|
Name: Yellow Syrup
|
|
Type: Healing
|
|
Buy: 1200
|
|
Weight: 100
|
|
EquipLevelMin: 60
|
|
Delay:
|
|
Duration: 1000
|
|
Script: |
|
|
itemheal 900,0;
|
|
- Id: 11623
|
|
AegisName: White_Syrup
|
|
Name: White Syrup
|
|
Type: Healing
|
|
Buy: 1500
|
|
Weight: 140
|
|
EquipLevelMin: 60
|
|
Delay:
|
|
Duration: 1000
|
|
Script: |
|
|
itemheal 1800,0;
|
|
- Id: 11624
|
|
AegisName: Blue_Syrup
|
|
Name: Blue Syrup
|
|
Type: Healing
|
|
Buy: 7000
|
|
Weight: 100
|
|
EquipLevelMin: 60
|
|
Delay:
|
|
Duration: 10000
|
|
Script: |
|
|
itemheal 0,180;
|
|
- Id: 11701
|
|
AegisName: Girl_Bunch_Of_Flower
|
|
Name: Girl's Bouquet
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
itemheal rand(105,145),0;
|
|
- Id: 11702
|
|
AegisName: Moon_Cookie
|
|
Name: Moon Cookie
|
|
Type: Healing
|
|
Weight: 300
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"AL_BLESSING",7;
|
|
- Id: 11703
|
|
AegisName: Mysterious_Blood
|
|
Name: Mystery Blood
|
|
Type: Healing
|
|
Weight: 10
|
|
Script: |
|
|
itemheal 0,rand(25,35);
|
|
- Id: 11704
|
|
AegisName: KETUPAT_F
|
|
Name: Ketupat
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(70,90),0;
|
|
- Id: 11705
|
|
AegisName: Special_White_Potion
|
|
Name: Children's Potion
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 10
|
|
Script: |
|
|
itemheal rand(425,425),0;
|
|
- Id: 11706
|
|
AegisName: Steak
|
|
Name: Steak
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 200
|
|
Script: |
|
|
itemheal rand(700,1000),0;
|
|
- Id: 11707
|
|
AegisName: Roasted_Beef
|
|
Name: Roast Beef
|
|
Type: Healing
|
|
Buy: 1
|
|
Weight: 200
|
|
Script: |
|
|
itemheal 0,rand(100,200);
|
|
- Id: 11708
|
|
AegisName: Fore_Flank_Sirloin
|
|
Name: Fore Flank Sirloin
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(30,50),rand(1,5);
|
|
- Id: 11709
|
|
AegisName: Fanta_Zero_Lemon
|
|
Name: Fanta Zero Lemon
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11710
|
|
AegisName: Sakura_Mist
|
|
Name: Sakura Mist
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11711
|
|
AegisName: Sakura_Milk_Tea
|
|
Name: Sakura Milk Tea
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11712
|
|
AegisName: First_Leaf_Tea
|
|
Name: Flower
|
|
Type: Healing
|
|
Buy: 800
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,70),rand(10,12);
|
|
- Id: 11713
|
|
AegisName: Julia's_Candy
|
|
Name: Julia's Candy
|
|
Type: Healing
|
|
Weight: 30
|
|
Script: |
|
|
itemheal rand(40,45),0;
|
|
- Id: 12000
|
|
AegisName: Cold_Scroll_2_5
|
|
Name: Level 5 Frost Diver
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "MG_FROSTDIVER",5;
|
|
- Id: 12001
|
|
AegisName: Holy_Scroll_1_3
|
|
Name: Level 3 Heal
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "AL_HEAL",3;
|
|
- Id: 12002
|
|
AegisName: Holy_Scroll_1_5
|
|
Name: Level 5 Heal
|
|
Type: Delayconsume
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "AL_HEAL",5;
|
|
- Id: 12003
|
|
AegisName: Holy_Scroll_2_1
|
|
Name: Level 1 Teleport
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 12004
|
|
AegisName: Arrow_Container
|
|
Name: Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1750,500;
|
|
- Id: 12005
|
|
AegisName: Iron_Arrow_Container
|
|
Name: Iron Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1770,500;
|
|
- Id: 12006
|
|
AegisName: Steel_Arrow_Container
|
|
Name: Steel Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1753,500;
|
|
- Id: 12007
|
|
AegisName: Ori_Arrow_Container
|
|
Name: Oridecon Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1765,500;
|
|
- Id: 12008
|
|
AegisName: Fire_Arrow_Container
|
|
Name: Fire Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1752,500;
|
|
- Id: 12009
|
|
AegisName: Silver_Arrow_Container
|
|
Name: Silver Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1751,500;
|
|
- Id: 12010
|
|
AegisName: Wind_Arrow_Container
|
|
Name: Wind Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1755,500;
|
|
- Id: 12011
|
|
AegisName: Stone_Arrow_Container
|
|
Name: Stone Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1756,500;
|
|
- Id: 12012
|
|
AegisName: Crystal_Arrow_Container
|
|
Name: Crystal Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1754,500;
|
|
- Id: 12013
|
|
AegisName: Shadow_Arrow_Container
|
|
Name: Shadow Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1767,500;
|
|
- Id: 12014
|
|
AegisName: Imma_Arrow_Container
|
|
Name: Immaterial Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1757,500;
|
|
- Id: 12015
|
|
AegisName: Rusty_Arrow_Container
|
|
Name: Rusty Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1762,500;
|
|
- Id: 12016
|
|
AegisName: Speed_Up_Potion
|
|
Name: Speed Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP1,5000,50;
|
|
- Id: 12017
|
|
AegisName: Slow_Down_Potion
|
|
Name: Slow Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SLOWDOWN,5000,100;
|
|
- Id: 12018
|
|
AegisName: Fire_Cracker
|
|
Name: Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12019
|
|
AegisName: Holy_Egg
|
|
Name: Holy Egg
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 150
|
|
Script: |
|
|
itemskill "ALL_RESURRECTION",2;
|
|
- Id: 12020
|
|
AegisName: Water_Of_Darkness
|
|
Name: Cursed Water
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",8;
|
|
- Id: 12021
|
|
AegisName: Pork_Belly
|
|
Name: Pork
|
|
Type: Healing
|
|
Weight: 10
|
|
Script: |
|
|
getexp2 33333333,0;
|
|
- Id: 12022
|
|
AegisName: Spareribs
|
|
Name: Galbi
|
|
Type: Healing
|
|
Weight: 10
|
|
Script: |
|
|
getexp2 0,33333333;
|
|
- Id: 12023
|
|
AegisName: Giftbox_China
|
|
Name: Wrapped Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GiftBoxChina,1);
|
|
- Id: 12024
|
|
AegisName: Red_Pouch_Of_Surprise
|
|
Name: Red Pouch
|
|
Type: Usable
|
|
Buy: 50
|
|
Weight: 50
|
|
Flags:
|
|
DeadBranch: true
|
|
Script: |
|
|
monster "this",-1,-1,"--ja--",-1-MOBG_RED_POUCH_OF_SURPRISE,1,"";
|
|
- Id: 12025
|
|
AegisName: Egg_Boy
|
|
Name: Dano Festival Egg
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_EggBoy,1);
|
|
- Id: 12026
|
|
AegisName: Egg_Girl
|
|
Name: Dano Festival Egg
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_EggGirl,1);
|
|
- Id: 12027
|
|
AegisName: Giggling_Box
|
|
Name: Giggling Box
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 9,0;
|
|
sc_start SC_CURSE,30000,0,3000,0;
|
|
- Id: 12028
|
|
AegisName: Box_Of_Thunder
|
|
Name: Box of Thunder
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,20000,25;
|
|
- Id: 12029
|
|
AegisName: Gloomy_Box
|
|
Name: Box of Gloom
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "AC_CONCENTRATION",1;
|
|
- Id: 12030
|
|
AegisName: Box_Of_Grudge
|
|
Name: Box of Resentment
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,60000,20;
|
|
- Id: 12031
|
|
AegisName: Sleepy_Box
|
|
Name: Box of Drowsiness
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_MATKPOTION,60000,20;
|
|
- Id: 12032
|
|
AegisName: Box_Of_Storm
|
|
Name: Box of Storms
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",2;
|
|
- Id: 12033
|
|
AegisName: Box_Of_Sunlight
|
|
Name: Box of Sunlight
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_Intravision,30000,0;
|
|
- Id: 12034
|
|
AegisName: Painting_Box
|
|
Name: Box of Panting
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 0,9;
|
|
sc_start SC_SILENCE,30000,0,3000,0;
|
|
- Id: 12035
|
|
AegisName: Lotto_Box01
|
|
Name: Lotto Box 01
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
getrandgroupitem(IG_LottoBox1,1);
|
|
- Id: 12036
|
|
AegisName: Lotto_Box02
|
|
Name: Lotto Box 02
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
getrandgroupitem(IG_LottoBox2,1);
|
|
- Id: 12037
|
|
AegisName: Lotto_Box03
|
|
Name: Lotto Box 03
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
getrandgroupitem(IG_LottoBox3,1);
|
|
- Id: 12038
|
|
AegisName: Lotto_Box04
|
|
Name: Lotto Box 04
|
|
Type: Usable
|
|
Weight: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_LottoBox4,1);
|
|
- Id: 12039
|
|
AegisName: Lotto_Box05
|
|
Name: Lotto Box 05
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
getrandgroupitem(IG_LottoBox5,1);
|
|
- Id: 12040
|
|
AegisName: Stone_Of_Intelligence_
|
|
Name: Stone of Sage
|
|
Type: Usable
|
|
Buy: 100000
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
homevolution;
|
|
- Id: 12041
|
|
AegisName: Str_Dish01
|
|
Name: Fried Grasshopper Legs
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,1;
|
|
percentheal 5,0;
|
|
- Id: 12042
|
|
AegisName: Str_Dish02
|
|
Name: Seasoned Sticky Webfoot
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,2;
|
|
percentheal 5,0;
|
|
- Id: 12043
|
|
AegisName: Str_Dish03
|
|
Name: Bomber Steak
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,3;
|
|
percentheal 5,0;
|
|
- Id: 12044
|
|
AegisName: Str_Dish04
|
|
Name: Herb Marinade Beef
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,4;
|
|
percentheal 5,0;
|
|
- Id: 12045
|
|
AegisName: Str_Dish05
|
|
Name: Lutie Lady's Pancake
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,5;
|
|
percentheal 10,0;
|
|
- Id: 12046
|
|
AegisName: Int_Dish01
|
|
Name: Grape Juice Herbal Tea
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,1;
|
|
percentheal 0,5;
|
|
- Id: 12047
|
|
AegisName: Int_Dish02
|
|
Name: Autumn Red Tea
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,2;
|
|
percentheal 0,5;
|
|
- Id: 12048
|
|
AegisName: Int_Dish03
|
|
Name: Honey Herbal Tea
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,3;
|
|
percentheal 0,5;
|
|
- Id: 12049
|
|
AegisName: Int_Dish04
|
|
Name: Morocc Fruit Wine
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,4;
|
|
percentheal 0,5;
|
|
- Id: 12050
|
|
AegisName: Int_Dish05
|
|
Name: Mastela Fruit Wine
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,5;
|
|
percentheal 0,10;
|
|
- Id: 12051
|
|
AegisName: Vit_Dish01
|
|
Name: Steamed Crab Nippers
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,1;
|
|
percentheal 5,0;
|
|
- Id: 12052
|
|
AegisName: Vit_Dish02
|
|
Name: Assorted Seafood
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,2;
|
|
percentheal 5,0;
|
|
- Id: 12053
|
|
AegisName: Vit_Dish03
|
|
Name: Clam Soup
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,3;
|
|
percentheal 5,0;
|
|
- Id: 12054
|
|
AegisName: Vit_Dish04
|
|
Name: Seasoned Jellyfish
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,4;
|
|
percentheal 5,0;
|
|
- Id: 12055
|
|
AegisName: Vit_Dish05
|
|
Name: Spicy Fried Bao
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,5;
|
|
percentheal 10,0;
|
|
- Id: 12056
|
|
AegisName: Agi_Dish01
|
|
Name: Frog Egg Squid Ink Soup
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,1;
|
|
percentheal 3,1;
|
|
- Id: 12057
|
|
AegisName: Agi_Dish02
|
|
Name: Smooth Noodle
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,2;
|
|
percentheal 3,1;
|
|
- Id: 12058
|
|
AegisName: Agi_Dish03
|
|
Name: Tentacle Cheese Gratin
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,3;
|
|
percentheal 3,1;
|
|
- Id: 12059
|
|
AegisName: Agi_Dish04
|
|
Name: Lutie Cold Noodle
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,4;
|
|
percentheal 3,1;
|
|
- Id: 12060
|
|
AegisName: Agi_Dish05
|
|
Name: Steamed Bat Wing in Pumpkin
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,5;
|
|
percentheal 6,2;
|
|
- Id: 12061
|
|
AegisName: Dex_Dish01
|
|
Name: Honey Grape Juice
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,1;
|
|
percentheal 2,2;
|
|
- Id: 12062
|
|
AegisName: Dex_Dish02
|
|
Name: Chocolate Mousse Cake
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,2;
|
|
percentheal 2,2;
|
|
- Id: 12063
|
|
AegisName: Dex_Dish03
|
|
Name: Fruit Mix
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,3;
|
|
percentheal 2,2;
|
|
- Id: 12064
|
|
AegisName: Dex_Dish04
|
|
Name: Cream Sandwich
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,4;
|
|
percentheal 2,2;
|
|
- Id: 12065
|
|
AegisName: Dex_Dish05
|
|
Name: Green Salad
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,5;
|
|
percentheal 5,5;
|
|
- Id: 12066
|
|
AegisName: Luk_Dish01
|
|
Name: Fried Monkey Tails
|
|
Type: Healing
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,1;
|
|
percentheal 3,2;
|
|
- Id: 12067
|
|
AegisName: Luk_Dish02
|
|
Name: Mixed Juice
|
|
Type: Healing
|
|
Buy: 4000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,2;
|
|
percentheal 3,2;
|
|
- Id: 12068
|
|
AegisName: Luk_Dish03
|
|
Name: Fried Sweet Potato
|
|
Type: Healing
|
|
Buy: 6000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,3;
|
|
percentheal 4,2;
|
|
- Id: 12069
|
|
AegisName: Luk_Dish04
|
|
Name: Steamed Ancient Lips
|
|
Type: Healing
|
|
Buy: 8000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,4;
|
|
percentheal 4,2;
|
|
- Id: 12070
|
|
AegisName: Luk_Dish05
|
|
Name: Fried Scorpion Tails
|
|
Type: Healing
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,5;
|
|
percentheal 5,2;
|
|
- Id: 12071
|
|
AegisName: Str_Dish06
|
|
Name: Shiny Marinade Beef
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,6;
|
|
percentheal 10,2;
|
|
- Id: 12072
|
|
AegisName: Str_Dish07
|
|
Name: Whole Roast
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,7;
|
|
percentheal 10,4;
|
|
- Id: 12073
|
|
AegisName: Str_Dish08
|
|
Name: Bearfoot Special
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,8;
|
|
percentheal 15,6;
|
|
- Id: 12074
|
|
AegisName: Str_Dish09
|
|
Name: Tendon Satay
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,9;
|
|
percentheal 15,8;
|
|
- Id: 12075
|
|
AegisName: Str_Dish10
|
|
Name: Steamed Tongue
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,10;
|
|
percentheal 20,20;
|
|
- Id: 12076
|
|
AegisName: Int_Dish06
|
|
Name: Red Mushroom Wine
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,6;
|
|
percentheal 2,10;
|
|
- Id: 12077
|
|
AegisName: Int_Dish07
|
|
Name: Special Royal Jelly Herbal Tea
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,7;
|
|
percentheal 4,10;
|
|
- Id: 12078
|
|
AegisName: Int_Dish08
|
|
Name: Royal Family Tea
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,8;
|
|
percentheal 6,10;
|
|
- Id: 12079
|
|
AegisName: Int_Dish09
|
|
Name: Tristan XII
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,9;
|
|
percentheal 8,15;
|
|
- Id: 12080
|
|
AegisName: Int_Dish10
|
|
Name: Dragon Breath Cocktail
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,10;
|
|
percentheal 10,20;
|
|
- Id: 12081
|
|
AegisName: Vit_Dish06
|
|
Name: Awfully Bitter Bracer
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,6;
|
|
percentheal 13,0;
|
|
- Id: 12082
|
|
AegisName: Vit_Dish07
|
|
Name: Sumptuous Feast
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,7;
|
|
percentheal 16,0;
|
|
- Id: 12083
|
|
AegisName: Vit_Dish08
|
|
Name: Giant Burito
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,8;
|
|
percentheal 19,0;
|
|
- Id: 12084
|
|
AegisName: Vit_Dish09
|
|
Name: Ascending Dragon Soup
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,9;
|
|
percentheal 22,0;
|
|
- Id: 12085
|
|
AegisName: Vit_Dish10
|
|
Name: Immortal Stew
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,10;
|
|
percentheal 25,0;
|
|
- Id: 12086
|
|
AegisName: Agi_Dish06
|
|
Name: Chile Shrimp Gratin
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,6;
|
|
percentheal 7,2;
|
|
- Id: 12087
|
|
AegisName: Agi_Dish07
|
|
Name: Steamed Alligator with Vegetable
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,7;
|
|
percentheal 8,2;
|
|
- Id: 12088
|
|
AegisName: Agi_Dish08
|
|
Name: Incredibly Spicy Curry
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,8;
|
|
percentheal 9,2;
|
|
- Id: 12089
|
|
AegisName: Agi_Dish09
|
|
Name: Special Meat Stew
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,9;
|
|
percentheal 10,2;
|
|
- Id: 12090
|
|
AegisName: Agi_Dish10
|
|
Name: Steamed Desert Scorpions
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,10;
|
|
percentheal 15,5;
|
|
- Id: 12091
|
|
AegisName: Dex_Dish06
|
|
Name: Peach Cake
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,6;
|
|
percentheal 5,6;
|
|
- Id: 12092
|
|
AegisName: Dex_Dish07
|
|
Name: Soul Haunted Bread
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,7;
|
|
percentheal 5,7;
|
|
- Id: 12093
|
|
AegisName: Dex_Dish08
|
|
Name: Special Toast
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,8;
|
|
percentheal 5,8;
|
|
- Id: 12094
|
|
AegisName: Dex_Dish09
|
|
Name: Heavenly Fruit Juice
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,9;
|
|
percentheal 5,9;
|
|
- Id: 12095
|
|
AegisName: Dex_Dish10
|
|
Name: Hwergelmir's Tonic
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,10;
|
|
percentheal 10,10;
|
|
- Id: 12096
|
|
AegisName: Luk_Dish06
|
|
Name: Lucky Soup
|
|
Type: Healing
|
|
Buy: 20000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,6;
|
|
percentheal 6,3;
|
|
- Id: 12097
|
|
AegisName: Luk_Dish07
|
|
Name: Assorted Shish Kebob
|
|
Type: Healing
|
|
Buy: 40000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,7;
|
|
percentheal 7,3;
|
|
- Id: 12098
|
|
AegisName: Luk_Dish08
|
|
Name: Strawberry Flavored Rice Ball
|
|
Type: Healing
|
|
Buy: 60000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,8;
|
|
percentheal 9,3;
|
|
- Id: 12099
|
|
AegisName: Luk_Dish09
|
|
Name: Blood Flavored Soda
|
|
Type: Healing
|
|
Buy: 80000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,9;
|
|
percentheal 10,4;
|
|
- Id: 12100
|
|
AegisName: Luk_Dish10
|
|
Name: Cooked Nine Tail's Tails
|
|
Type: Healing
|
|
Buy: 100000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,10;
|
|
percentheal 14,8;
|
|
- Id: 12101
|
|
AegisName: Citron
|
|
Name: Citron
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,180000,30;
|
|
- Id: 12102
|
|
AegisName: Meat_Skewer
|
|
Name: Grilled Skewer
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 300
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,180000,30;
|
|
- Id: 12103
|
|
AegisName: Bloody_Dead_Branch
|
|
Name: Bloody Branch
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
DeadBranch: true
|
|
Script: |
|
|
monster "this",-1,-1,"--ja--",-1-MOBG_BLOODY_DEAD_BRANCH,1,"";
|
|
- Id: 12104
|
|
AegisName: Random_Quiver
|
|
Name: Random Quiver
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Quiver,1);
|
|
- Id: 12105
|
|
AegisName: Set_Of_Taiming_Item
|
|
Name: Taming Gift Set
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Taming,1);
|
|
getrandgroupitem(IG_Taming,1);
|
|
getrandgroupitem(IG_Taming,1);
|
|
- Id: 12106
|
|
AegisName: Accessory_Box
|
|
Name: Jewelry Box
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Accesory,1);
|
|
- Id: 12107
|
|
AegisName: Wrapped_Mask
|
|
Name: Wrapped Mask
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Mask,1);
|
|
- Id: 12108
|
|
AegisName: Bundle_Of_Magic_Scroll
|
|
Name: Scroll Package
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Scroll,1);
|
|
getrandgroupitem(IG_Scroll,1);
|
|
getrandgroupitem(IG_Scroll,1);
|
|
getrandgroupitem(IG_Scroll,1);
|
|
getrandgroupitem(IG_Scroll,1);
|
|
- Id: 12109
|
|
AegisName: Poring_Box
|
|
Name: Poring Box
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
DeadBranch: true
|
|
Script: |
|
|
monster "this",-1,-1,"--ja--",-1-MOBG_PORING_BOX,1,"";
|
|
- Id: 12110
|
|
AegisName: First_Aid_Kit
|
|
Name: First Aid Kit
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
- Id: 12111
|
|
AegisName: Food_Package
|
|
Name: Bundle of Food
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_FoodBag,1);
|
|
getrandgroupitem(IG_FoodBag,1);
|
|
getrandgroupitem(IG_FoodBag,1);
|
|
- Id: 12112
|
|
AegisName: Tropical_Sograt
|
|
Name: Tropical Sograt
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_CURSE,10000,1;
|
|
- Id: 12113
|
|
AegisName: Vermilion_The_Beach
|
|
Name: Vermilion on the Beach
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_STUN,10000,1;
|
|
- Id: 12114
|
|
AegisName: Elemental_Fire
|
|
Name: Elemental Converter
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",4;
|
|
- Id: 12115
|
|
AegisName: Elemental_Water
|
|
Name: Elemental Converter
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",2;
|
|
- Id: 12116
|
|
AegisName: Elemental_Earth
|
|
Name: Elemental Converter
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",3;
|
|
- Id: 12117
|
|
AegisName: Elemental_Wind
|
|
Name: Elemental Converter
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "ITEM_ENCHANTARMS",5;
|
|
- Id: 12118
|
|
AegisName: Resist_Fire
|
|
Name: Fireproof Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start4 SC_ARMOR_ELEMENT_FIRE,1200000,-15,0,20,0;
|
|
- Id: 12119
|
|
AegisName: Resist_Water
|
|
Name: Coldproof Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start4 SC_ARMOR_ELEMENT_WATER,1200000,20,0,0,-15;
|
|
- Id: 12120
|
|
AegisName: Resist_Earth
|
|
Name: Earthproof Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start4 SC_ARMOR_ELEMENT_EARTH,1200000,0,20,-15,0;
|
|
- Id: 12121
|
|
AegisName: Resist_Wind
|
|
Name: Thunderproof Potion
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start4 SC_ARMOR_ELEMENT_WIND,1200000,0,-15,0,20;
|
|
- Id: 12122
|
|
AegisName: Sesame_Pastry
|
|
Name: Sesame Pastry
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,180000,30;
|
|
- Id: 12123
|
|
AegisName: Honey_Pastry
|
|
Name: Honey Pastry
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,180000,30;
|
|
- Id: 12124
|
|
AegisName: Rainbow_Cake
|
|
Name: Rainbow Cake
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_BATKFOOD,60000,10;
|
|
sc_start SC_MATKFOOD,60000,10;
|
|
- Id: 12125
|
|
AegisName: Outdoor_Cooking_Kits
|
|
Name: Outdoor Cooking Kit
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
cooking 11;
|
|
- Id: 12126
|
|
AegisName: Indoor_Cooking_Kits
|
|
Name: Home Cooking Kit
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
cooking 12;
|
|
- Id: 12127
|
|
AegisName: High_end_Cooking_Kits
|
|
Name: Professional Cooking Kit
|
|
Type: Usable
|
|
Buy: 2000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
cooking 13;
|
|
- Id: 12128
|
|
AegisName: Imperial_Cooking_Kits
|
|
Name: Royal Cooking Kit
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
cooking 14;
|
|
- Id: 12129
|
|
AegisName: Fantastic_Cooking_Kits
|
|
Name: Fantastic Cooking Kit
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
cooking 15;
|
|
- Id: 12130
|
|
AegisName: Cookie_Bag
|
|
Name: Cookie Bag
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CookieBag,1);
|
|
getrandgroupitem(IG_CookieBag,1);
|
|
getrandgroupitem(IG_CookieBag,1);
|
|
- Id: 12131
|
|
AegisName: Lucky_Potion
|
|
Name: Lucky Potion
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Script: |
|
|
/* sc_start SC_LUKFOOD,180000,15; */
|
|
- Id: 12132
|
|
AegisName: Red_Bag
|
|
Name: Santa's Bag
|
|
Type: Usable
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_XMAS,600000,0;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 12133
|
|
AegisName: Ice_Cream_
|
|
Name: McDonald's Ice Cone
|
|
Type: Healing
|
|
Weight: 80
|
|
Script: |
|
|
if (gettime(DT_DAYOFMONTH) != MDiceCone) {
|
|
MDiceCone = gettime(DT_DAYOFMONTH);
|
|
percentheal 50,50;
|
|
}
|
|
- Id: 12134
|
|
AegisName: Red_Envelope
|
|
Name: Red Envelope
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Script: |
|
|
.@r = BaseLevel*100;
|
|
getexp2 .@r,.@r;
|
|
- Id: 12135
|
|
AegisName: Green_Ale
|
|
Name: Green Ale
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 30
|
|
Delay:
|
|
Duration: 3000
|
|
Script: |
|
|
percentheal 50,50;
|
|
sc_start SC_CONFUSION,10000,0,1000,0;
|
|
- Id: 12136
|
|
AegisName: Women's_Bundle
|
|
Name: Women's Bundle
|
|
Type: Usable
|
|
Weight: 100
|
|
Script: |
|
|
getitem callfunc("F_Rand",558,529,2668,7518),1;
|
|
- Id: 12137
|
|
AegisName: 1st_Stage_Prize
|
|
Name: First Stage Prize
|
|
Type: Usable
|
|
- Id: 12138
|
|
AegisName: 2nd_Stage_Prize
|
|
Name: Second Stage Prize
|
|
Type: Usable
|
|
- Id: 12139
|
|
AegisName: 3rd_Stage_Prize
|
|
Name: Third Stage Prize
|
|
Type: Usable
|
|
- Id: 12140
|
|
AegisName: 4th_Stage_Prize
|
|
Name: Fourth Stage Prize
|
|
Type: Usable
|
|
- Id: 12141
|
|
AegisName: 5th_Stage_Prize
|
|
Name: Fifth Stage Prize
|
|
Type: Usable
|
|
- Id: 12142
|
|
AegisName: Magic_Book
|
|
Name: Book of Magic
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1800000,10;
|
|
- Id: 12143
|
|
AegisName: Red_Can
|
|
Name: Red Can
|
|
Type: Usable
|
|
Buy: 50000
|
|
Weight: 300
|
|
Script: |
|
|
percentheal 25,25;
|
|
- Id: 12144
|
|
AegisName: Sphere_Case_Wind
|
|
Name: Lightning Sphere Pack
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 350
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13204,500;
|
|
- Id: 12145
|
|
AegisName: Sphere_Case_Darkness
|
|
Name: Blind Sphere Pack
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 350
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13206,500;
|
|
- Id: 12146
|
|
AegisName: Sphere_Case_Poison
|
|
Name: Poison Sphere Pack
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 350
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13205,500;
|
|
- Id: 12147
|
|
AegisName: Sphere_Case_Water
|
|
Name: Freezing Sphere Pack
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 350
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13207,500;
|
|
- Id: 12148
|
|
AegisName: Sphere_Case_Fire
|
|
Name: Flare Sphere Pack
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 350
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13203,500;
|
|
- Id: 12149
|
|
AegisName: Bullet_Case
|
|
Name: Cartridge
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13200,500;
|
|
- Id: 12150
|
|
AegisName: Bullet_Case_Blood
|
|
Name: Blood Cartridge
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13202,500;
|
|
- Id: 12151
|
|
AegisName: Bullet_Case_Silver
|
|
Name: Silver Cartridge
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 13201,500;
|
|
- Id: 12152
|
|
AegisName: Special_Box
|
|
Name: Special Present
|
|
Type: Usable
|
|
Weight: 100
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Special_Box);
|
|
- Id: 12153
|
|
AegisName: Bow_Mercenary_Scroll1
|
|
Name: Bowman Scroll 1
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6017,1800000;
|
|
- Id: 12154
|
|
AegisName: Bow_Mercenary_Scroll2
|
|
Name: Bowman Scroll 2
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6018,1800000;
|
|
- Id: 12155
|
|
AegisName: Bow_Mercenary_Scroll3
|
|
Name: Bowman Scroll 3
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6019,1800000;
|
|
- Id: 12156
|
|
AegisName: Bow_Mercenary_Scroll4
|
|
Name: Bowman Scroll 4
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6020,1800000;
|
|
- Id: 12157
|
|
AegisName: Bow_Mercenary_Scroll5
|
|
Name: Bowman Scroll 5
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6021,1800000;
|
|
- Id: 12158
|
|
AegisName: Bow_Mercenary_Scroll6
|
|
Name: Bowman Scroll 6
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6022,1800000;
|
|
- Id: 12159
|
|
AegisName: Bow_Mercenary_Scroll7
|
|
Name: Bowman Scroll 7
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6023,1800000;
|
|
- Id: 12160
|
|
AegisName: Bow_Mercenary_Scroll8
|
|
Name: Bowman Scroll 8
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6024,1800000;
|
|
- Id: 12161
|
|
AegisName: Bow_Mercenary_Scroll9
|
|
Name: Bowman Scroll 9
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6025,1800000;
|
|
- Id: 12162
|
|
AegisName: Bow_Mercenary_Scroll10
|
|
Name: Bowman Scroll 10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6026,1800000;
|
|
- Id: 12163
|
|
AegisName: SwordMercenary_Scroll1
|
|
Name: Fencer Scroll 1
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6037,1800000;
|
|
- Id: 12164
|
|
AegisName: SwordMercenary_Scroll2
|
|
Name: Fencer Scroll 2
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6038,1800000;
|
|
- Id: 12165
|
|
AegisName: SwordMercenary_Scroll3
|
|
Name: Fencer Scroll 3
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6039,1800000;
|
|
- Id: 12166
|
|
AegisName: SwordMercenary_Scroll4
|
|
Name: Fencer Scroll 4
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6040,1800000;
|
|
- Id: 12167
|
|
AegisName: SwordMercenary_Scroll5
|
|
Name: Fencer Scroll 5
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6041,1800000;
|
|
- Id: 12168
|
|
AegisName: SwordMercenary_Scroll6
|
|
Name: Fencer Scroll 6
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6042,1800000;
|
|
- Id: 12169
|
|
AegisName: SwordMercenary_Scroll7
|
|
Name: Fencer Scroll 7
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6043,1800000;
|
|
- Id: 12170
|
|
AegisName: SwordMercenary_Scroll8
|
|
Name: Fencer Scroll 8
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6044,1800000;
|
|
- Id: 12171
|
|
AegisName: SwordMercenary_Scroll9
|
|
Name: Fencer Scroll 9
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6045,1800000;
|
|
- Id: 12172
|
|
AegisName: SwordMercenary_Scroll10
|
|
Name: Fencer Scroll 10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6046,1800000;
|
|
- Id: 12173
|
|
AegisName: SpearMercenary_Scroll1
|
|
Name: Spearman Scroll 1
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6027,1800000;
|
|
- Id: 12174
|
|
AegisName: SpearMercenary_Scroll2
|
|
Name: Spearman Scroll 2
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6028,1800000;
|
|
- Id: 12175
|
|
AegisName: SpearMercenary_Scroll3
|
|
Name: Spearman Scroll 3
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6029,1800000;
|
|
- Id: 12176
|
|
AegisName: SpearMercenary_Scroll4
|
|
Name: Spearman Scroll 4
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6030,1800000;
|
|
- Id: 12177
|
|
AegisName: SpearMercenary_Scroll5
|
|
Name: Spearman Scroll 5
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6031,1800000;
|
|
- Id: 12178
|
|
AegisName: SpearMercenary_Scroll6
|
|
Name: Spearman Scroll 6
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6032,1800000;
|
|
- Id: 12179
|
|
AegisName: SpearMercenary_Scroll7
|
|
Name: Spearman Scroll 7
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6033,1800000;
|
|
- Id: 12180
|
|
AegisName: SpearMercenary_Scroll8
|
|
Name: Spearman Scroll 8
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6034,1800000;
|
|
- Id: 12181
|
|
AegisName: SpearMercenary_Scroll9
|
|
Name: Spearman Scroll 9
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6035,1800000;
|
|
- Id: 12182
|
|
AegisName: SpearMercenary_Scroll10
|
|
Name: Spearman Scroll 10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 6036,1800000;
|
|
- Id: 12183
|
|
AegisName: Holy_Arrow_Quiver
|
|
Name: Holy Arrow Quiver
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1772,500;
|
|
- Id: 12184
|
|
AegisName: Mercenary_Red_Potion
|
|
Name: Mercenary Red Potion
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_heal 1000,0;
|
|
- Id: 12185
|
|
AegisName: Mercenary_Blue_Potion
|
|
Name: Mercenary Blue Potion
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_heal 0,100;
|
|
- Id: 12186
|
|
AegisName: Red_Box
|
|
Name: Old Red Box
|
|
Type: Usable
|
|
Buy: 50000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_RedBox,1);
|
|
- Id: 12187
|
|
AegisName: Green_Box
|
|
Name: Old Green Box
|
|
Type: Usable
|
|
Buy: 50000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_GreenBox,1);
|
|
- Id: 12188
|
|
AegisName: Magical_Moon_Cake
|
|
Name: Grace Moon Cake
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 300
|
|
Script: |
|
|
percentheal 50,50;
|
|
- Id: 12189
|
|
AegisName: Red_Box_
|
|
Name: Old Red Box
|
|
Type: Usable
|
|
Buy: 50000
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_RedBox_2,1);
|
|
- Id: 12190
|
|
AegisName: Moon_Cake
|
|
Name: Moon Cake
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 300
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,180000,25;
|
|
- Id: 12191
|
|
AegisName: Special_Moon_Cake
|
|
Name: Special Moon Cake
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 300
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,600000,4;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 12192
|
|
AegisName: Pumpkin_Pie
|
|
Name: Pumpkin Pie
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 12193
|
|
AegisName: Brezel
|
|
Name: Pretzel
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 20
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 12194
|
|
AegisName: Hometown_Gift
|
|
Name: Hometown Gift
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_HometownGift,1);
|
|
getrandgroupitem(IG_HometownGift,1);
|
|
getrandgroupitem(IG_HometownGift,1);
|
|
- Id: 12195
|
|
AegisName: Plain_Rice_Cake
|
|
Name: Plain Rice Cake
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 0,20;
|
|
- Id: 12196
|
|
AegisName: Hearty_Rice_Cake
|
|
Name: Hearty Rice Cake
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 50,0;
|
|
- Id: 12197
|
|
AegisName: Salty_Rice_Cake
|
|
Name: Salty Rice Cake
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 12198
|
|
AegisName: Lucky_Rice_Cake
|
|
Name: Lucky Rice Cake
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INCLUK,1200000,21;
|
|
- Id: 12199
|
|
AegisName: Rice_Scroll
|
|
Name: Scroll of Magic
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12200
|
|
AegisName: Event_Cake
|
|
Name: X-mas Cake
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
percentheal 5,0;
|
|
itemskill "PR_MAGNIFICAT",3;
|
|
- Id: 12201
|
|
AegisName: Red_Box_C
|
|
Name: Commonplace Red Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
- Id: 12202
|
|
AegisName: Str_Dish10_
|
|
Name: Steamed Tongue
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_STR_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12203
|
|
AegisName: Agi_Dish10_
|
|
Name: Steamed Scorpion
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_AGI_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12204
|
|
AegisName: Int_Dish10_
|
|
Name: Dragon Breath Cocktail
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_INT_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12205
|
|
AegisName: Dex_Dish10_
|
|
Name: Hwergelmir's Tonic
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_DEX_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12206
|
|
AegisName: Luk_Dish10_
|
|
Name: Cooked Nine Tail's Tails
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_LUK_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12207
|
|
AegisName: Vit_Dish10_
|
|
Name: Stew Of Immortality
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_VIT_CASH,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12208
|
|
AegisName: Battle_Manual
|
|
Name: Battle Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 60000
|
|
Status: Reuse_Limit_C
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,50;
|
|
- Id: 12209
|
|
AegisName: Insurance
|
|
Name: Life Insurance
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,1800000,0;
|
|
- Id: 12210
|
|
AegisName: Bubble_Gum
|
|
Name: Bubble Gum
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 60000
|
|
Status: Reuse_Limit_D
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ITEMBOOST,1800000,100;
|
|
- Id: 12211
|
|
AegisName: Kafra_Card
|
|
Name: Kafra Card
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 12212
|
|
AegisName: Giant_Fly_Wing
|
|
Name: Giant Fly Wing
|
|
Type: DelayConsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashPartyCall";
|
|
- Id: 12213
|
|
AegisName: Neuralizer
|
|
Name: Neuralizer
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashReset";
|
|
- Id: 12214
|
|
AegisName: Convex_Mirror
|
|
Name: Convex Mirror
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_BOSSMAPINFO,600000,0;
|
|
- Id: 12215
|
|
AegisName: Blessing_10_Scroll
|
|
Name: LV10 Blessing Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
skilleffect "AL_BLESSING",0;
|
|
sc_start SC_BLESSING,240000,10;
|
|
- Id: 12216
|
|
AegisName: Inc_Agi_10_Scroll
|
|
Name: LV10 Agil Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (Hp>15) {
|
|
skilleffect "AL_INCAGI",0;
|
|
sc_start SC_INCREASEAGI,240000,10;
|
|
heal -15,0;
|
|
}
|
|
- Id: 12217
|
|
AegisName: Aspersio_5_Scroll
|
|
Name: LV5 Aspersio Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (countitem(523)>0) {
|
|
skilleffect "PR_ASPERSIO",0;
|
|
sc_start SC_ASPERSIO,180000,5;
|
|
delitem 523,1;
|
|
}
|
|
- Id: 12218
|
|
AegisName: Assumptio_5_Scroll
|
|
Name: LV5 Assumptio Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASSUMPTIO,100000,5;
|
|
skilleffect "HP_ASSUMPTIO",0;
|
|
- Id: 12219
|
|
AegisName: Wind_Walk_10_Scroll
|
|
Name: LV10 Wind Walker Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
skilleffect "SN_WINDWALK",0;
|
|
sc_start SC_WINDWALK,250000,10;
|
|
- Id: 12220
|
|
AegisName: Adrenaline_Scroll
|
|
Name: LV5 Adrenaline Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
.@type = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW);
|
|
if (.@type == W_1HAXE || .@type == W_2HAXE || .@type == W_MACE) {
|
|
skilleffect "BS_ADRENALINE",0;
|
|
sc_start SC_ADRENALINE,150000,5;
|
|
}
|
|
- Id: 12221
|
|
AegisName: Megaphone_
|
|
Name: Megaphone
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
input .@megaphone$;
|
|
announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;
|
|
- Id: 12225
|
|
AegisName: Sweet_Candy_Striper
|
|
Name: Sweet Candy Cane
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1245;
|
|
- Id: 12226
|
|
AegisName: Examination1
|
|
Name: Examination 1
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
percentheal 100,100;
|
|
sc_start SC_STRFOOD,5400000,10;
|
|
sc_start SC_DEXFOOD,5400000,5;
|
|
sc_start SC_ATKPOTION,5400000,22;
|
|
sc_start SC_MATKFOOD,5400000,15;
|
|
- Id: 12227
|
|
AegisName: Examination2
|
|
Name: Examination 2
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
percentheal 100,100;
|
|
sc_start SC_INTFOOD,5400000,8;
|
|
sc_start SC_VITFOOD,5400000,7;
|
|
sc_start SC_LUKFOOD,5400000,7;
|
|
sc_start SC_ATKPOTION,5400000,10;
|
|
- Id: 12228
|
|
AegisName: Examination3
|
|
Name: Examination 3
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
percentheal 100,100;
|
|
sc_start SC_AGIFOOD,5400000,15;
|
|
sc_start SC_ATKPOTION,5400000,52;
|
|
sc_start SC_MATKFOOD,5400000,10;
|
|
- Id: 12229
|
|
AegisName: Examination4
|
|
Name: Examination 4
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
percentheal 100,100;
|
|
sc_start SC_STRFOOD,5400000,3;
|
|
sc_start SC_AGIFOOD,5400000,5;
|
|
sc_start SC_VITFOOD,5400000,10;
|
|
sc_start SC_MATKFOOD,5400000,52;
|
|
- Id: 12230
|
|
AegisName: Examination5
|
|
Name: Examination 5
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
percentheal 100,100;
|
|
sc_start SC_INTFOOD,5400000,3;
|
|
sc_start SC_DEXFOOD,5400000,12;
|
|
sc_start SC_ATKPOTION,5400000,20;
|
|
sc_start SC_MATKFOOD,5400000,20;
|
|
- Id: 12231
|
|
AegisName: Examination6
|
|
Name: Examination 6
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
percentheal 100,100;
|
|
sc_start SC_SPEEDUP0,5400000,25;
|
|
sc_start SC_STRFOOD,5400000,6;
|
|
sc_start SC_DEXFOOD,5400000,6;
|
|
sc_start SC_AGIFOOD,5400000,6;
|
|
sc_start SC_INTFOOD,5400000,6;
|
|
sc_start SC_VITFOOD,5400000,6;
|
|
sc_start SC_LUKFOOD,5400000,6;
|
|
sc_start SC_ATKPOTION,5400000,24;
|
|
sc_start SC_MATKFOOD,5400000,24;
|
|
- Id: 12232
|
|
AegisName: Gingerbread
|
|
Name: Ginger Bread
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 150
|
|
Script: |
|
|
sc_start SC_ASPDPOTION1,900000,0;
|
|
sc_start SC_SPEEDUP0,900000,25;
|
|
- Id: 12233
|
|
AegisName: Kvass
|
|
Name: Kvass
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 200
|
|
Script: |
|
|
percentheal 100,100;
|
|
- Id: 12234
|
|
AegisName: Cacao99
|
|
Name: Fierce Cacao 99%
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
percentheal 25,0;
|
|
- Id: 12235
|
|
AegisName: Strawberry_Choco
|
|
Name: Chocolate Strawberry
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 0,5;
|
|
skilleffect "AL_BLESSING",0;
|
|
sc_start SC_BLESSING,240000,5;
|
|
- Id: 12236
|
|
AegisName: Choco_Tart
|
|
Name: Chocolate Tart
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
itemskill "AL_ANGELUS",5;
|
|
- Id: 12237
|
|
AegisName: Choco_Lump
|
|
Name: Junky Chocolate
|
|
Type: Usable
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 0,5;
|
|
sc_start SC_POISON,18000,0;
|
|
sc_start SC_BLEEDING,18000,0;
|
|
- Id: 12238
|
|
AegisName: New_Year_Rice_Cake_1
|
|
Name: New Year Rice Cake
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DPOISON,10000,0,1000,0;
|
|
sc_start SC_POISON,50000,0;
|
|
- Id: 12239
|
|
AegisName: New_Year_Rice_Cake_2
|
|
Name: New Year Rice Cake
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DPOISON,10000,0,1000,0;
|
|
sc_start SC_POISON,50000,0;
|
|
- Id: 12240
|
|
AegisName: Old_Yellow_Box
|
|
Name: Old Yellow Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_YellowBox,1);
|
|
- Id: 12241
|
|
AegisName: M_Center_Potion
|
|
Name: Mercenary Concentration Potion
|
|
Type: Usable
|
|
Buy: 800
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_sc_start SC_ASPDPOTION0,1800000,0;
|
|
- Id: 12242
|
|
AegisName: M_Awakening_Potion
|
|
Name: Mercenary Awakening Potion
|
|
Type: Usable
|
|
Buy: 1500
|
|
Weight: 150
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_sc_start SC_ASPDPOTION1,1800000,0;
|
|
- Id: 12243
|
|
AegisName: M_Berserk_Potion
|
|
Name: Mercenary Berserk Potion
|
|
Type: Usable
|
|
Buy: 3000
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_sc_start SC_ASPDPOTION2,1800000,0;
|
|
- Id: 12244
|
|
AegisName: Old_Gift_Box
|
|
Name: Old Gift Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_OldGiftBox,1);
|
|
- Id: 12245
|
|
AegisName: Green_Ale_US
|
|
Name: Green Ale
|
|
Type: Healing
|
|
Buy: 5000
|
|
Weight: 500
|
|
Script: |
|
|
percentheal 100,0;
|
|
- Id: 12246
|
|
AegisName: Magic_Card_Album
|
|
Name: Mystical Card Album
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_MagicCardAlbum,1);
|
|
- Id: 12247
|
|
AegisName: Halohalo
|
|
Name: Halo-Halo
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
EquipLevelMin: 20
|
|
Script: |
|
|
sc_start SC_INCALLSTATUS,600000,3;
|
|
- Id: 12248
|
|
AegisName: Masquerade_Ball_Box
|
|
Name: Fancy Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Masquerade,1);
|
|
- Id: 12249
|
|
AegisName: Payroll_Of_Kafra_
|
|
Name: Payment Statement for Kafra Employee
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12250
|
|
AegisName: Str_Dish10_M
|
|
Name: Steamed Tongue
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_STRFOOD,3600000,10;
|
|
percentheal 20,20;
|
|
- Id: 12251
|
|
AegisName: Agi_Dish10_M
|
|
Name: Steamed Desert Scorpions
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_AGIFOOD,3600000,10;
|
|
percentheal 15,5;
|
|
- Id: 12252
|
|
AegisName: Int_Dish10_M
|
|
Name: Dragon Breath Cocktail
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INTFOOD,3600000,10;
|
|
percentheal 10,20;
|
|
- Id: 12253
|
|
AegisName: Dex_Dish10_M
|
|
Name: Hwergelmir's Tonic
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_DEXFOOD,3600000,10;
|
|
percentheal 10,10;
|
|
- Id: 12254
|
|
AegisName: Luk_Dish10_M
|
|
Name: Cooked Nine Tail
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_LUKFOOD,3600000,10;
|
|
percentheal 14,8;
|
|
- Id: 12255
|
|
AegisName: Vit_Dish10_M
|
|
Name: Immortal Stew
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_VITFOOD,3600000,10;
|
|
percentheal 25,0;
|
|
- Id: 12256
|
|
AegisName: PRO_Gift_Box
|
|
Name: PRO Gift Box
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12257
|
|
AegisName: Cold_Medicine
|
|
Name: Cold Medicine
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
EquipLevelMin: 50
|
|
Script: |
|
|
percentheal 25,25;
|
|
- Id: 12258
|
|
AegisName: Bombring_Box
|
|
Name: Bomb Poring Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_rang02") {
|
|
monster "this",-1,-1,"--ja--",1904,1,"";
|
|
}
|
|
- Id: 12259
|
|
AegisName: Miracle_Medicine
|
|
Name: Miracle Tonic
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getexp2(3000000,1500000);
|
|
- Id: 12260
|
|
AegisName: Cool_Summer_Outfit
|
|
Name: Cool Summer Outfit
|
|
Type: Usable
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SUMMER,600000,0;
|
|
- Id: 12261
|
|
AegisName: Secret_Medicine
|
|
Name: Leap of Fantasy
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getexp2(2000000,1000000);
|
|
- Id: 12262
|
|
AegisName: Inspector_Certificate_
|
|
Name: Authoritative Badge
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,540000,25;
|
|
- Id: 12263
|
|
AegisName: Comp_Battle_Manual
|
|
Name: Field Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,200;
|
|
- Id: 12264
|
|
AegisName: Comp_Bubble_Gum
|
|
Name: Bubble Gum
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ITEMBOOST,1800000,200;
|
|
- Id: 12265
|
|
AegisName: Comp_Insurance
|
|
Name: Life Insurrance
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,1800000,0;
|
|
- Id: 12266
|
|
AegisName: Sesame_Pastry_
|
|
Name: Sesame Pastry
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,180000,30;
|
|
- Id: 12267
|
|
AegisName: Honey_Pastry_
|
|
Name: Honey Pastry
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,180000,30;
|
|
- Id: 12268
|
|
AegisName: Rainbow_Cake_
|
|
Name: Rainbow Cake
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,60000,10;
|
|
sc_start SC_MATKFOOD,60000,10;
|
|
- Id: 12269
|
|
AegisName: Tasty_Colonel
|
|
Name: Tasty Pink Ration
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,600000,15;
|
|
- Id: 12270
|
|
AegisName: Tasty_Major
|
|
Name: Tasty White Ration
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_MATKPOTION,600000,15;
|
|
- Id: 12271
|
|
AegisName: Mre_A
|
|
Name: Military Ration A
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
- Id: 12272
|
|
AegisName: Mre_B
|
|
Name: Military Ration B
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,600000,33;
|
|
- Id: 12273
|
|
AegisName: Mre_C
|
|
Name: Military Ration C
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,600000,33;
|
|
- Id: 12274
|
|
AegisName: Gold_Pill_1
|
|
Name: Daehwandan
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start2 SC_INCREASE_MAXHP,3600000,5,10;
|
|
percentheal 10,0;
|
|
- Id: 12275
|
|
AegisName: Gold_Pill_2
|
|
Name: Taecheongdan
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start2 SC_INCREASE_MAXSP,3600000,5,10;
|
|
percentheal 0,10;
|
|
- Id: 12276
|
|
AegisName: Mimic_Scroll
|
|
Name: Mimic Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 2058,1800000;
|
|
- Id: 12277
|
|
AegisName: Disguise_Scroll
|
|
Name: Disguise Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 2059,1800000;
|
|
- Id: 12278
|
|
AegisName: Alice_Scroll
|
|
Name: Alice Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 2060,1800000;
|
|
- Id: 12279
|
|
AegisName: Undead_Element_Scroll
|
|
Name: Undead Elemental Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start4 SC_ARMOR_RESIST,300000,20,20,20,20;
|
|
- Id: 12280
|
|
AegisName: Holy_Element_Scroll
|
|
Name: Holy Elemental Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_BENEDICTIO;
|
|
sc_start SC_BENEDICTIO,300000,1;
|
|
- Id: 12281
|
|
AegisName: Tresure_Box_WoE
|
|
Name: Event Treasure Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 150
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tresure_Box_WoE_);
|
|
- Id: 12282
|
|
AegisName: Internet_Cafe1
|
|
Name: Internet Cafe1
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCALLSTATUS,5400000,3;
|
|
sc_start SC_ATKPOTION,5400000,15;
|
|
sc_start SC_MATKPOTION,5400000,15;
|
|
- Id: 12283
|
|
AegisName: Internet_Cafe2
|
|
Name: Internet Cafe2
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCSTR,5400000,8;
|
|
sc_start SC_INCDEX,5400000,4;
|
|
sc_start SC_INCAGI,5400000,6;
|
|
sc_start SC_ATKPOTION,5400000,32;
|
|
sc_start SC_INCFLEE,5400000,5;
|
|
- Id: 12284
|
|
AegisName: Internet_Cafe3
|
|
Name: Internet Cafe3
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCINT,5400000,8;
|
|
sc_start SC_INCVIT,5400000,4;
|
|
sc_start SC_INCDEX,5400000,6;
|
|
sc_start SC_MATKPOTION,5400000,40;
|
|
- Id: 12285
|
|
AegisName: Internet_Cafe4
|
|
Name: Internet Cafe4
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCDEX,5400000,8;
|
|
sc_start SC_INCLUK,5400000,4;
|
|
sc_start SC_INCAGI,5400000,6;
|
|
sc_start SC_ATKPOTION,5400000,24;
|
|
sc_start SC_MATKPOTION,5400000,24;
|
|
- Id: 12286
|
|
AegisName: Masquerade_Ball_Box2
|
|
Name: Masquerade Ball Box2
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Masquerade_2,1);
|
|
- Id: 12287
|
|
AegisName: Love_Angel
|
|
Name: Love Angel Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 1;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12288
|
|
AegisName: Squirrel
|
|
Name: Squirrel Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 2;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12289
|
|
AegisName: Gogo
|
|
Name: Gogo Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 3;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12290
|
|
AegisName: Mysterious_Can
|
|
Name: Mysterious Can Magic Powder
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
skilleffect "AL_BLESSING",0;
|
|
sc_start SC_BLESSING,120000,5;
|
|
- Id: 12291
|
|
AegisName: Mysterious_PET_Bottle
|
|
Name: Mysterious PET Bottle
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
skilleffect "AL_INCAGI",0;
|
|
sc_start SC_INCREASEAGI,120000,5;
|
|
- Id: 12292
|
|
AegisName: Unripe_Fruit
|
|
Name: Unripe Yggdrasilberry
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 20,0;
|
|
- Id: 12293
|
|
AegisName: Dried_Yggdrasilberry
|
|
Name: Dried Yggdrasilberry
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 0,20;
|
|
- Id: 12294
|
|
AegisName: PC_Bang_Coin_Box1
|
|
Name: PC-Room Coin Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2740,1;
|
|
- Id: 12295
|
|
AegisName: PC_Bang_Coin_Box2
|
|
Name: PC-Room Coin Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2739,1;
|
|
- Id: 12296
|
|
AegisName: PC_Bang_Coin_Box3
|
|
Name: PC-Room Coin Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2738,1;
|
|
- Id: 12297
|
|
AegisName: PC_Bang_Coin_Box4
|
|
Name: PC-Room Coin Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2738,2;
|
|
- Id: 12298
|
|
AegisName: SP_Potion
|
|
Name: SP Consumption Reduction Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_SPCOST_RATE,3600000,15;
|
|
- Id: 12299
|
|
AegisName: Mega_Resist_Potion
|
|
Name: Mega Resist Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_COMMONSC_RESIST,3600000,10;
|
|
- Id: 12300
|
|
AegisName: Wild_Rose_Scroll
|
|
Name: Wild Rose Contract
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 1965,1800000;
|
|
- Id: 12301
|
|
AegisName: Doppelganger_Scroll
|
|
Name: Doppelganger Contract
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 1966,1800000;
|
|
- Id: 12302
|
|
AegisName: Ygnizem_Scroll
|
|
Name: Egnigem Cenia Contract
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 1967,1800000;
|
|
- Id: 12303
|
|
AegisName: Water_Of_Blessing
|
|
Name: Blessing Of Water
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12304
|
|
AegisName: Picture_Diary
|
|
Name: Diary Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 4;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12305
|
|
AegisName: Mini_Heart
|
|
Name: Mini Heart Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 5;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12306
|
|
AegisName: Newcomer
|
|
Name: Freshman Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 6;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12307
|
|
AegisName: Kid
|
|
Name: Kid Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 7;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12308
|
|
AegisName: Magic_Castle
|
|
Name: Magic Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 8;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12309
|
|
AegisName: Bulging_Head
|
|
Name: JJangu Magic Powder
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setfont 9;
|
|
UnEquipScript: |
|
|
setfont 0;
|
|
- Id: 12310
|
|
AegisName: Spray_Of_Flowers
|
|
Name: Spray Of Flowers
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,300000,10;
|
|
- Id: 12311
|
|
AegisName: Large_Spray_Of_Flowers
|
|
Name: Huge Spray Of Flowers
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "ALL_PARTYFLEE",5;
|
|
- Id: 12312
|
|
AegisName: Thick_Manual50
|
|
Name: Thick Battle Manual
|
|
Type: Usable
|
|
Script: |
|
|
sc_start SC_EXPBOOST,3600000,50;
|
|
- Id: 12313
|
|
AegisName: Protection_Of_Angel
|
|
Name: Guardian Angel
|
|
Type: Usable
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* itemskill "ALL_ANGEL_PROTECT",1; */
|
|
- Id: 12314
|
|
AegisName: Noive_Box
|
|
Name: Adventurer Returns Support Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Noive_Box);
|
|
- Id: 12315
|
|
AegisName: Goddess_Bless
|
|
Name: Goddess Of Blessing
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12316
|
|
AegisName: Angel_Bless
|
|
Name: Angel Of Blessing
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12317
|
|
AegisName: Powder_Snow
|
|
Name: Snow Powder
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12318
|
|
AegisName: Little_Heart
|
|
Name: Small Hearts
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12319
|
|
AegisName: Strawberry_Cake
|
|
Name: Rune Strawberry Cake
|
|
Type: Usable
|
|
Weight: 300
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,600000,5;
|
|
sc_start SC_MATKPOTION,600000,5;
|
|
- Id: 12320
|
|
AegisName: Pineapple_Juice
|
|
Name: Schwarzwald Pine Jubilee
|
|
Type: Usable
|
|
Weight: 300
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,600000,10;
|
|
sc_start SC_FLEEFOOD,600000,20;
|
|
- Id: 12321
|
|
AegisName: Spicy_Sandwich
|
|
Name: Arunafeltz Desert Sandwich
|
|
Type: Usable
|
|
Weight: 300
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCCRI,600000,7;
|
|
- Id: 12322
|
|
AegisName: Chocolate_Pie
|
|
Name: Chocolate Pie
|
|
Type: Healing
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 12323
|
|
AegisName: N_Fly_Wing
|
|
Name: Novice Fly Wing
|
|
Type: Delayconsume
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 12324
|
|
AegisName: N_Butterfly_Wing
|
|
Name: Novice Butterfly Wing
|
|
Type: Delayconsume
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",3;
|
|
- Id: 12325
|
|
AegisName: N_Magnifier
|
|
Name: Novice Magnifier
|
|
Type: Delayconsume
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "MC_IDENTIFY",1;
|
|
- Id: 12326
|
|
AegisName: J_Firecracker
|
|
Name: Large Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
- Id: 12327
|
|
AegisName: Charm_Of_Luck
|
|
Name: Charm Of Luck
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_INCLUK,3600000,20;
|
|
- Id: 12328
|
|
AegisName: Charm_Of_Happiness
|
|
Name: Charm Of Happiness
|
|
Type: Usable
|
|
Buy: 1800
|
|
Weight: 100
|
|
Script: |
|
|
sc_start SC_INCALLSTATUS,20000,10;
|
|
- Id: 12329
|
|
AegisName: Recall_MaleGM
|
|
Name: Summon Male GameMaster Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_create 2000,1800000;
|
|
- Id: 12330
|
|
AegisName: Recall_FemaleGM
|
|
Name: Summon Female GameMaster Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
mercenary_create 2001,1800000;
|
|
- Id: 12331
|
|
AegisName: Ginseng
|
|
Name: Ginseng
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 6,0;
|
|
- Id: 12332
|
|
AegisName: Fruit_Juice
|
|
Name: Fruit Juice
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 0,6;
|
|
- Id: 12333
|
|
AegisName: Ansila
|
|
Name: Ancilla
|
|
Type: Usable
|
|
Weight: 10
|
|
Stack:
|
|
Amount: 3
|
|
Inventory: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 0,15;
|
|
sc_start SC_ANCILLA,60000,1;
|
|
- Id: 12334
|
|
AegisName: Cherish_Box
|
|
Name: Treasure Edition Helm Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Cherish_Box,1);
|
|
- Id: 12335
|
|
AegisName: Yummy_Skewered_Dish
|
|
Name: Grilled Delicious Skewer
|
|
Type: Healing
|
|
Buy: 1000
|
|
Weight: 350
|
|
Script: |
|
|
percentheal 60,60;
|
|
- Id: 12336
|
|
AegisName: Baked_Mushroom
|
|
Name: Grilled Mushroom
|
|
Type: Healing
|
|
Buy: 500
|
|
Weight: 300
|
|
Script: |
|
|
percentheal 30,30;
|
|
- Id: 12337
|
|
AegisName: Grilled_Sausage
|
|
Name: Grilled Sausages
|
|
Type: Healing
|
|
Buy: 300
|
|
Weight: 200
|
|
Script: |
|
|
percentheal 20,20;
|
|
- Id: 12338
|
|
AegisName: Grilled_Corn
|
|
Name: Grilled Corn
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 100
|
|
Script: |
|
|
sc_start SC_INCSTR,180000,2;
|
|
sc_start SC_INCINT,180000,2;
|
|
sc_start SC_INCAGI,180000,2;
|
|
- Id: 12339
|
|
AegisName: Cherish_Box_Ori
|
|
Name: Treasure Edition Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Cherish_Box_Ori,1);
|
|
- Id: 12340
|
|
AegisName: Mysterious_Rice_Powder
|
|
Name: Chewy Rice Powder
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1815;
|
|
- Id: 12341
|
|
AegisName: Special_Alloy_Trap_Box
|
|
Name: Special Alloy Trap Box
|
|
Type: Usable
|
|
Buy: 30000
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 7940,100;
|
|
- Id: 12342
|
|
AegisName: Manuk's_Opportunity
|
|
Name: Manuk's Opportunity
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
sc_start SC_MANU_ATK,600000,10;
|
|
- Id: 12343
|
|
AegisName: Manuk's_Courage
|
|
Name: Manuk's Courage
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_MANU_DEF,600000,10;
|
|
- Id: 12344
|
|
AegisName: Pinguicula's_fruit_Jam
|
|
Name: Pinguicula's Fruit Jam
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
sc_start SC_SPL_ATK,600000,10;
|
|
- Id: 12345
|
|
AegisName: Luciola's_Honey_Jam
|
|
Name: Luciola's Honey Jam
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_SPL_DEF,600000,10;
|
|
- Id: 12346
|
|
AegisName: Unripe_Acorn
|
|
Name: Unripe Acorn
|
|
Type: Usable
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
heal -100,0;
|
|
- Id: 12347
|
|
AegisName: Acorn_Jelly
|
|
Name: Acorn Jelly
|
|
Type: Delayconsume
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "ALL_REVERSEORCISH",1;
|
|
- Id: 12348
|
|
AegisName: Manuk's_Faith
|
|
Name: Manuk's Faith
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
sc_start SC_MANU_MATK,600000,10;
|
|
- Id: 12349
|
|
AegisName: Cornus'_Tears
|
|
Name: Cornus' Tears
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
sc_start SC_SPL_MATK,600000,10;
|
|
- Id: 12350
|
|
AegisName: Angeling_Potion
|
|
Name: Angeling Potion
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
skilleffect "AL_BLESSING",0;
|
|
sc_start SC_BLESSING,120000,5;
|
|
itemskill "AL_ANGELUS",5;
|
|
- Id: 12351
|
|
AegisName: Shout_Megaphone
|
|
Name: Scream Megaphone
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "MC_LOUD",1;
|
|
- Id: 12352
|
|
AegisName: Dun_Tele_Scroll3
|
|
Name: Dungeon Teleport Scroll 3
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_CashDungeon",3;
|
|
- Id: 12353
|
|
AegisName: Tiny_Waterbottle
|
|
Name: Small Bottle
|
|
Type: Usable
|
|
Buy: 800
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_WATERWEAPON,90000,1;
|
|
- Id: 12354
|
|
AegisName: Buche_De_Noel
|
|
Name: Buche De Noel
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_ANGELUS;
|
|
bonus_script "{ bonus bHPrecovRate,3; bonus bSPrecovRate,3; bonus bHit,3; bonus bCritical,7; }",600,0,0,EFST_BUCHEDENOEL;
|
|
- Id: 12355
|
|
AegisName: Xmas_Gift
|
|
Name: Xmas Gift
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Xmas_Gift,1);
|
|
- Id: 12356
|
|
AegisName: Louise_Costume_Box
|
|
Name: Louise Costume Box
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Louise_Costume_Box,1);
|
|
- Id: 12357
|
|
AegisName: Shiny_Wing_Gown
|
|
Name: Shiny Wing Gown
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
pet 1630;
|
|
- Id: 12358
|
|
AegisName: Fan_Of_Wind
|
|
Name: Fan Of Wind
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1513;
|
|
- Id: 12359
|
|
AegisName: Very_Soft_Plant
|
|
Name: Very Soft Plant
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1586;
|
|
- Id: 12360
|
|
AegisName: Very_Red_Juice
|
|
Name: Very Red Juice
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1505;
|
|
- Id: 12361
|
|
AegisName: Delicious_Shaved_Ice
|
|
Name: Delicious Shaved Ice
|
|
Type: Usable
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1143;
|
|
- Id: 12362
|
|
AegisName: Kuloren
|
|
Name: Kuloren
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1401;
|
|
- Id: 12363
|
|
AegisName: Fit_Pipe
|
|
Name: Fit Pipe
|
|
Type: Usable
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1179;
|
|
- Id: 12364
|
|
AegisName: Staff_Of_Leader
|
|
Name: Staff Of Leader
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1299;
|
|
- Id: 12365
|
|
AegisName: Charming_Lotus
|
|
Name: Charming Lotus
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1416;
|
|
- Id: 12366
|
|
AegisName: Gril_Doll
|
|
Name: Girl's Doll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1404;
|
|
- Id: 12367
|
|
AegisName: Luxury_Whisky_Bottle
|
|
Name: Luxury Whisky Bottle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1504;
|
|
- Id: 12368
|
|
AegisName: Splendid_Mirror
|
|
Name: Splendid Mirror
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1148;
|
|
- Id: 12369
|
|
AegisName: Oilpalm_Coconut
|
|
Name: Oilpalm Coconut
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1495;
|
|
- Id: 12370
|
|
AegisName: Gril's_Naivety
|
|
Name: Girl's Naivety
|
|
Type: Usable
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1374;
|
|
- Id: 12371
|
|
AegisName: Magical_Lithography
|
|
Name: Magical Lithography
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1040;
|
|
- Id: 12372
|
|
AegisName: Hell_Contract
|
|
Name: Hell Contract
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1379;
|
|
- Id: 12373
|
|
AegisName: Boy's_Naivety
|
|
Name: Boy's Pure Heart
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1370;
|
|
- Id: 12374
|
|
AegisName: Flaming_Ice
|
|
Name: Ice Fireworks
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
pet 1837;
|
|
- Id: 12375
|
|
AegisName: Acaraje
|
|
Name: Akaraje
|
|
Type: Usable
|
|
Weight: 80
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
bonus_script "{ bonus bHit,5; bonus bAspdRate,10; }",1200,0,0,EFST_ACARAJE;
|
|
- Id: 12376
|
|
AegisName: Mysterious_Can2
|
|
Name: Mysterious Can2
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 3,0;
|
|
itemskill "PR_GLORIA",2;
|
|
- Id: 12377
|
|
AegisName: Mysterious_PET_Bottle2
|
|
Name: Mysterious PET Bottle2
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
percentheal 0,3;
|
|
itemskill "PR_MAGNIFICAT",1;
|
|
- Id: 12378
|
|
AegisName: 2009_Rice_Cake_Soup
|
|
Name: Rice Cake Soup
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Script: |
|
|
percentheal 50,50;
|
|
- Id: 12379
|
|
AegisName: Pope's_Cookie
|
|
Name: Pope Cookie
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
bonus_script "{ bonus2 bAddClass,Class_All,3; bonus2 bMagicAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_Neutral,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Wind,3; bonus2 bSubEle,Ele_Earth,3; bonus2 bSubEle,Ele_Dark,3; bonus2 bSubEle,Ele_Holy,3; bonus2 bSubEle,Ele_Ghost,3; }",1200;
|
|
- Id: 12380
|
|
AegisName: Desert_Wolf_Babe_Scroll
|
|
Name: Job Change Flute
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2034,1800000;
|
|
- Id: 12381
|
|
AegisName: ValkyrieA_Scroll
|
|
Name: Ancient Languages Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_arch02") {
|
|
mercenary_create 2037,1800000;
|
|
}
|
|
- Id: 12382
|
|
AegisName: ValkyrieB_Scroll
|
|
Name: Ancient Languages Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_arch02") {
|
|
mercenary_create 2038,1800000;
|
|
}
|
|
- Id: 12383
|
|
AegisName: Vulcan_Bullet_Magazine
|
|
Name: Vulcan Bullet Magazine
|
|
Type: Usable
|
|
Buy: 11000
|
|
Weight: 500
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 6145,1000;
|
|
- Id: 12384
|
|
AegisName: Rainbow_Ruby_Water
|
|
Name: Rainbow Ruby
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_war02") {
|
|
itemskill "WL_FROSTMISTY",5;
|
|
}
|
|
- Id: 12385
|
|
AegisName: Rainbow_Ruby_Fire
|
|
Name: Rainbow Ruby
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_war02") {
|
|
itemskill "WL_CRIMSONROCK",5;
|
|
}
|
|
- Id: 12386
|
|
AegisName: Rainbow_Ruby_Wind
|
|
Name: Rainbow Ruby
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_war02") {
|
|
itemskill "WL_CHAINLIGHTNING",5;
|
|
}
|
|
- Id: 12387
|
|
AegisName: Rainbow_Ruby_Earth
|
|
Name: Rainbow Ruby
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_war02") {
|
|
itemskill "WL_EARTHSTRAIN",5;
|
|
}
|
|
- Id: 12388
|
|
AegisName: Runstone_Crush
|
|
Name: Rhydo Runestone For Apprentice
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_rune02") {
|
|
itemskill "RK_CRUSHSTRIKE",1;
|
|
}
|
|
- Id: 12389
|
|
AegisName: Runstone_Storm
|
|
Name: Pertz Runestone For Apprentice
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_rune02") {
|
|
itemskill "RK_STORMBLAST",1;
|
|
}
|
|
- Id: 12390
|
|
AegisName: Runstone_Millennium
|
|
Name: Verkana Runestone For Apprentice
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (strcharinfo(3) == "job3_rune02") {
|
|
itemskill "RK_MILLENNIUMSHIELD",1;
|
|
}
|
|
- Id: 12391
|
|
AegisName: Lucky_Egg_C
|
|
Name: Lucky Egg C
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C);
|
|
- Id: 12392
|
|
AegisName: RepairA
|
|
Name: Repair A
|
|
Type: Usable
|
|
Buy: 275
|
|
Weight: 1
|
|
Jobs:
|
|
Blacksmith: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (checkmadogear()) {
|
|
itemheal rand(200,300),0;
|
|
}
|
|
- Id: 12393
|
|
AegisName: RepairB
|
|
Name: Repair B
|
|
Type: Usable
|
|
Buy: 625
|
|
Weight: 1
|
|
Jobs:
|
|
Blacksmith: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (checkmadogear()) {
|
|
itemheal rand(300,400),0;
|
|
}
|
|
- Id: 12394
|
|
AegisName: RepairC
|
|
Name: Repair C
|
|
Type: Usable
|
|
Buy: 1375
|
|
Weight: 1
|
|
Jobs:
|
|
Blacksmith: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (checkmadogear()) {
|
|
itemheal rand(400,500),0;
|
|
}
|
|
- Id: 12395
|
|
AegisName: Tantanmen
|
|
Name: Tantan Noodle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
pet 1519;
|
|
- Id: 12396
|
|
AegisName: Fools_Day_Box
|
|
Name: Gift Box?
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
.@rnd = rand(1,9);
|
|
if (.@rnd == 1) itemskill "AL_TELEPORT",1;
|
|
else if (.@rnd == 2) itemskill "AL_TELEPORT",3;
|
|
else if (.@rnd == 3) percentheal 50,0;
|
|
else if (.@rnd == 4) percentheal 0,50;
|
|
else if (.@rnd == 5) getitem 512,1;
|
|
else if (.@rnd == 6) itemskill "ALL_REVERSEORCISH",1;
|
|
else if (.@rnd == 7) specialeffect2 EF_MAPPILLAR2;
|
|
else if (.@rnd == 8) specialeffect2 EF_ANGEL2;
|
|
else specialeffect2 EF_COIN;
|
|
- Id: 12397
|
|
AegisName: Fools_Day_Box2
|
|
Name: Gift Box?
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
.@rnd = rand(1,9);
|
|
if (.@rnd == 1) itemskill "TF_DETOXIFY",1;
|
|
else if (.@rnd == 2) itemskill "TF_PICKSTONE",1;
|
|
else if (.@rnd == 3) itemskill "BA_FROSTJOKER",1;
|
|
else if (.@rnd == 4) itemskill "DC_SCREAM",1;
|
|
else if (.@rnd == 5) getitem 909,1;
|
|
else if (.@rnd == 6) itemskill "AL_RUWACH",1;
|
|
else if (.@rnd == 7) specialeffect2 EF_BEGINASURA;
|
|
else if (.@rnd == 8) specialeffect2 EF_MVP;
|
|
else specialeffect2 EF_CURSEATTACK;
|
|
- Id: 12398
|
|
AegisName: PCBang_Gift_Box
|
|
Name: PCRoom Gift Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12399
|
|
AegisName: Castle_Treasure_Box
|
|
Name: Castle Treasure Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1000
|
|
Script: |
|
|
Zeny += rand(50000,100000);
|
|
- Id: 12400
|
|
AegisName: Water_Of_Blessing_
|
|
Name: Water Of Blessing
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12401
|
|
AegisName: Rune_Kn_Test_Int
|
|
Name: Rune Kn Test Int
|
|
Type: Usable
|
|
Script: |
|
|
sc_start SC_INCINT,300000,40;
|
|
- Id: 12402
|
|
AegisName: 29Fruit
|
|
Name: 29Fruit
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 12403
|
|
AegisName: Lucky_Egg_C2
|
|
Name: Lucky Egg C2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C2);
|
|
- Id: 12404
|
|
AegisName: Acti_Potion
|
|
Name: Acti Potion
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
bonus_script "{ bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,3; }",120,0,0,EFST_POPECOOKIE;
|
|
- Id: 12405
|
|
AegisName: Underripe_Yggseed
|
|
Name: Underripe Yggseed
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 30,30;
|
|
skilleffect "AL_BLESSING",0;
|
|
sc_start SC_BLESSING,140000,5;
|
|
- Id: 12406
|
|
AegisName: Psychic_ArmorS
|
|
Name: Psychic ArmorS
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_ENERGYCOAT;
|
|
sc_start4 SC_ELEMENTALCHANGE,10000,1,Ele_Ghost,1,0;
|
|
- Id: 12407
|
|
AegisName: PCBang_Coupon_Box
|
|
Name: PC Cafe Coupon Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12408
|
|
AegisName: Leaf_Cat_Ball
|
|
Name: Hydra Ball
|
|
Type: Usable
|
|
Script: |
|
|
pet 2081;
|
|
- Id: 12409
|
|
AegisName: Pork_Belly_H
|
|
Name: 1st Class Pork Belly
|
|
Type: Usable
|
|
- Id: 12410
|
|
AegisName: Spareribs_H
|
|
Name: Thick Pork Belly
|
|
Type: Usable
|
|
- Id: 12411
|
|
AegisName: HE_Battle_Manual
|
|
Name: HE Battle Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_EXPBOOST,900000,200;
|
|
- Id: 12412
|
|
AegisName: HE_Bubble_Gum
|
|
Name: HE Bubble Gum
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_ITEMBOOST,900000,200;
|
|
- Id: 12413
|
|
AegisName: PCBang_Coupon_Box2
|
|
Name: PC Cafe Coupon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12414
|
|
AegisName: Guarana_Candy
|
|
Name: Guarana Candy
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,1800000,0;
|
|
sc_start SC_INCREASEAGI,140000,5;
|
|
skilleffect "AL_INCAGI",0;
|
|
- Id: 12415
|
|
AegisName: Siege_Teleport_Scroll2
|
|
Name: Siege Teleport Scroll Silver
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12416
|
|
AegisName: Lucky_Egg_C3
|
|
Name: Lucky Egg C3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C3);
|
|
- Id: 12417
|
|
AegisName: Boost500
|
|
Name: Boost500
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_BOOST500,500000,10;
|
|
- Id: 12418
|
|
AegisName: Full_SwingK
|
|
Name: Full SwingK
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_FULL_SWING_K,500000,50;
|
|
- Id: 12419
|
|
AegisName: Mana_Plus
|
|
Name: Mana Plus
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_MANA_PLUS,500000,50;
|
|
- Id: 12420
|
|
AegisName: Stamina_Up_M
|
|
Name: Stamina Up M
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_MUSTLE_M,500000,5;
|
|
- Id: 12421
|
|
AegisName: Digestive_F
|
|
Name: Falmons F
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_LIFE_FORCE_F,500000,5;
|
|
- Id: 12422
|
|
AegisName: HP_Increase_PotionS
|
|
Name: HP Increase Potion (Small)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,1;
|
|
percentheal 1,0;
|
|
- Id: 12423
|
|
AegisName: HP_Increase_PotionM
|
|
Name: HP Increase Potion (Medium)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,2;
|
|
percentheal 2,0;
|
|
- Id: 12424
|
|
AegisName: HP_Increase_PotionL
|
|
Name: HP Increase Potion (Large)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_PROMOTE_HEALTH_RESERCH,500000,1,3;
|
|
percentheal 5,0;
|
|
- Id: 12425
|
|
AegisName: SP_Increase_PotionS
|
|
Name: SP Increase Potion (Small)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,1;
|
|
percentheal 0,2;
|
|
- Id: 12426
|
|
AegisName: SP_Increase_PotionM
|
|
Name: SP Increase Potion (Medium)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 40
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,2;
|
|
percentheal 0,4;
|
|
- Id: 12427
|
|
AegisName: SP_Increase_PotionL
|
|
Name: SP Increase Potion (Large)
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 80
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_ENERGY_DRINK_RESERCH,500000,1,3;
|
|
percentheal 0,8;
|
|
- Id: 12428
|
|
AegisName: Enrich_White_PotionZ
|
|
Name: Concentrated White Potion Z
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 70
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_EXTRACT_WHITE_POTION_Z,500000,20;
|
|
heal 1000,0;
|
|
- Id: 12429
|
|
AegisName: Savage_BBQ
|
|
Name: Savage Full Roast
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SAVAGE_STEAK,300000,20;
|
|
- Id: 12430
|
|
AegisName: Wug_Blood_Cocktail
|
|
Name: Cocktail Warg Blood
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_COCKTAIL_WARG_BLOOD,300000,20;
|
|
- Id: 12431
|
|
AegisName: Minor_Brisket
|
|
Name: Minor Stew
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_MINOR_BBQ,300000,20;
|
|
- Id: 12432
|
|
AegisName: Siroma_Icetea
|
|
Name: Siroma Iced Tea
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SIROMA_ICE_TEA,300000,20;
|
|
- Id: 12433
|
|
AegisName: Drocera_Herb_Stew
|
|
Name: Drosera Herb Salad
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DROCERA_HERB_STEAMED,300000,20;
|
|
- Id: 12434
|
|
AegisName: Petti_Tail_Noodle
|
|
Name: Petite Tail Noodles
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_PUTTI_TAILS_NOODLES,300000,20;
|
|
- Id: 12435
|
|
AegisName: Black_Thing
|
|
Name: Black Mass
|
|
Type: Usable
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_STOMACHACHE,60000,rand(5,10);
|
|
- Id: 12436
|
|
AegisName: Vitata500
|
|
Name: Vitata 500
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start2 SC_VITATA_500,500000,20,5;
|
|
itemheal 0,200;
|
|
- Id: 12437
|
|
AegisName: Enrich_Celermine_Juice
|
|
Name: Concentrated Ceromain Soup
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_EXTRACT_SALAMINE_JUICE,500000,10;
|
|
- Id: 12438
|
|
AegisName: F_Giant_Fly_Wing
|
|
Name: F Giant Fly Wing
|
|
Type: DelayConsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_CashPartyCall";
|
|
- Id: 12439
|
|
AegisName: F_Battle_Manual
|
|
Name: F Old Battle Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,50;
|
|
- Id: 12440
|
|
AegisName: F_Insurance
|
|
Name: F Insurance
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,1800000,0;
|
|
- Id: 12441
|
|
AegisName: F_Bubble_Gum
|
|
Name: F Old Bubble Gum
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_ITEMBOOST,1800000,100;
|
|
- Id: 12442
|
|
AegisName: F_Kafra_Card
|
|
Name: F Kafra Card
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 12443
|
|
AegisName: F_Neuralizer
|
|
Name: F Neuralizer
|
|
Type: Usable
|
|
Buy: 2
|
|
Script: |
|
|
callfunc "F_CashReset";
|
|
- Id: 12444
|
|
AegisName: F_Dun_Tele_Scroll1
|
|
Name: WoE Telport Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_CashSiegeTele";
|
|
- Id: 12445
|
|
AegisName: F_Str_Dish10_
|
|
Name: F Str Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_STRFOOD,1800000,10;
|
|
percentheal 20,10;
|
|
- Id: 12446
|
|
AegisName: F_Agi_Dish10_
|
|
Name: F Agi Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1800000,10;
|
|
percentheal 15,5;
|
|
- Id: 12447
|
|
AegisName: F_Int_Dish10_
|
|
Name: F Int Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INTFOOD,1800000,10;
|
|
percentheal 10,20;
|
|
- Id: 12448
|
|
AegisName: F_Dex_Dish10_
|
|
Name: F Dex Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1800000,10;
|
|
percentheal 10,10;
|
|
- Id: 12449
|
|
AegisName: F_Luk_Dish10_
|
|
Name: F Luk Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1800000,10;
|
|
- Id: 12450
|
|
AegisName: F_Vit_Dish10_
|
|
Name: F Vit Dish10
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_VITFOOD,1800000,10;
|
|
- Id: 12451
|
|
AegisName: F_WOB_Rune
|
|
Name: F WOB Rune
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12452
|
|
AegisName: F_WOB_Schwaltz
|
|
Name: F WOB Schwarz
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12453
|
|
AegisName: F_WOB_Rachel
|
|
Name: F WOB Rachel
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12454
|
|
AegisName: F_WOB_Local
|
|
Name: F WOB Local
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12456
|
|
AegisName: F_Greed_Scroll
|
|
Name: F Greed Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "BS_GREED",1;
|
|
- Id: 12457
|
|
AegisName: F_Glass_Of_Illusion
|
|
Name: F Glass Of Illusion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
sc_start SC_INCFLEE2,60000,20;
|
|
- Id: 12458
|
|
AegisName: F_Abrasive
|
|
Name: F Abrasive
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
sc_start SC_INCCRI,300000,30;
|
|
- Id: 12459
|
|
AegisName: F_Med_Life_Potion
|
|
Name: F Med Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_L_LIFEPOTION,600000,-7,4;
|
|
- Id: 12460
|
|
AegisName: F_Small_Life_Potion
|
|
Name: F Small Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_LIFEPOTION,600000,-5,5;
|
|
- Id: 12461
|
|
AegisName: F_Regeneration_Potion
|
|
Name: F Regeneration Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_LIGHTSPHERE;
|
|
sc_start SC_INCHEALRATE,1800000,20;
|
|
- Id: 12462
|
|
AegisName: F_B_Mdef_Potion
|
|
Name: F B Mdef Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect EF_SPELLBREAKER;
|
|
bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",180,0,0,EFST_PROTECT_MDEF;
|
|
- Id: 12463
|
|
AegisName: F_S_Mdef_Potion
|
|
Name: F S Mdef Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect EF_SPELLBREAKER;
|
|
bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_MAGIC; }",60,0,0,EFST_PROTECT_MDEF;
|
|
- Id: 12464
|
|
AegisName: F_B_Def_Potion
|
|
Name: F B Def Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect EF_GUARD;
|
|
bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",180,0,0,EFST_PROTECT_DEF;
|
|
- Id: 12465
|
|
AegisName: F_S_Def_Potion
|
|
Name: F S Def Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect EF_GUARD;
|
|
bonus_script "{ bonus3 bSubEle,Ele_All,3,BF_SHORT; }",60,0,0,EFST_PROTECT_DEF;
|
|
- Id: 12466
|
|
AegisName: F_Blessing_10_Scroll
|
|
Name: F Blessing 10 Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "AL_BLESSING",10;
|
|
- Id: 12467
|
|
AegisName: F_Inc_Agi_10_Scroll
|
|
Name: F Inc Agi 10 Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "AL_INCAGI",10;
|
|
- Id: 12468
|
|
AegisName: F_Aspersio_5_Scroll
|
|
Name: F Aspersio 5 Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "PR_ASPERSIO",5;
|
|
- Id: 12470
|
|
AegisName: F_Wind_Walk_10_Scroll
|
|
Name: F Wind Walk 10 Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "SN_WINDWALK",10;
|
|
- Id: 12471
|
|
AegisName: F_Adrenaline_Scroll
|
|
Name: F Adrenaline Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "BS_ADRENALINE",5;
|
|
- Id: 12472
|
|
AegisName: F_Convex_Mirror
|
|
Name: F Convex Mirror
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_BOSSMAPINFO,600000,0;
|
|
- Id: 12473
|
|
AegisName: RWC_Parti_Box
|
|
Name: RWC Parti Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Parti_Box);
|
|
- Id: 12474
|
|
AegisName: RWC_Final_Comp_Box
|
|
Name: RWC Final Comp Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Final_Comp_Box);
|
|
- Id: 12475
|
|
AegisName: Cure_Free
|
|
Name: Cure Free
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLEEDING;
|
|
sc_end SC_POISON;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_ORCISH;
|
|
sc_end SC_CHANGEUNDEAD;
|
|
itemheal 500,0;
|
|
- Id: 12476
|
|
AegisName: PCBang_Coupon_Box3
|
|
Name: PCBang Coupon Box3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12477
|
|
AegisName: Gift_Bundle
|
|
Name: Gift Bundle
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Gift_Bundle);*/
|
|
getitem 547,30;
|
|
getitem 608,2;
|
|
getitem 6302,1;
|
|
- Id: 12478
|
|
AegisName: Chance_Box
|
|
Name: Chance Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12479
|
|
AegisName: Caracas_Ring_Box
|
|
Name: Caracas Ring Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Caracas_Ring_Box);*/
|
|
rentitem 2841,270000;
|
|
- Id: 12480
|
|
AegisName: Attend_3Day_Box
|
|
Name: Attend 3Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12481
|
|
AegisName: Attend_7Day_Box
|
|
Name: Attend 7Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12482
|
|
AegisName: Attend_10Day_Box
|
|
Name: Attend 10Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12483
|
|
AegisName: Attend_15Day_Box
|
|
Name: Attend 15Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12484
|
|
AegisName: Attend_20Day_Box
|
|
Name: Attend 20Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12485
|
|
AegisName: Attend_25Day_Box
|
|
Name: Attend 25Day Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12486
|
|
AegisName: GoldPC_First_Box
|
|
Name: GoldPC First Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12487
|
|
AegisName: PC_4Leaf_Clover_Box
|
|
Name: PC 4Leaf Clover Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12488
|
|
AegisName: Ticket_Gift_Box
|
|
Name: Ticket Gift Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
# Script: |
|
|
# mercenary_create VALK_MERC_H,1800000;
|
|
- Id: 12489
|
|
AegisName: Ticket_Gift_Box2
|
|
Name: Ticket Gift Box2
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12490
|
|
AegisName: Vivid_Notation
|
|
Name: Christmas Music Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
playbgm rand(53,58)+".mp3";
|
|
- Id: 12491
|
|
AegisName: Curious_Snowball
|
|
Name: Curious Snowball
|
|
Type: Usable
|
|
Buy: 20
|
|
Script: |
|
|
callfunc "F_Snowball";
|
|
- Id: 12492
|
|
AegisName: Crumpled_Paper
|
|
Name: Crumpled Paper
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_Crumpled_Paper,1);
|
|
- Id: 12493
|
|
AegisName: Lucky_Egg_C4
|
|
Name: Lucky Egg C4
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C4);
|
|
- Id: 12494
|
|
AegisName: E_Giant_Fly_Wing
|
|
Name: E Giant Fly Wing
|
|
Type: DelayConsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_CashPartyCall";
|
|
- Id: 12495
|
|
AegisName: E_Battle_Manual
|
|
Name: E Battle Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,50;
|
|
- Id: 12496
|
|
AegisName: E_Insurance
|
|
Name: E Insurance
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,1800000,0;
|
|
- Id: 12497
|
|
AegisName: E_Bubble_Gum
|
|
Name: E Bubble Gum
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ITEMBOOST,1800000,100;
|
|
- Id: 12498
|
|
AegisName: E_Kafra_Card
|
|
Name: E Kafra Card
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
- Id: 12499
|
|
AegisName: E_Neuralizer
|
|
Name: E Neuralizer
|
|
Type: Usable
|
|
Buy: 2
|
|
- Id: 12500
|
|
AegisName: E_Dun_Tele_Scroll1
|
|
Name: E Dun Tele Scroll1
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12501
|
|
AegisName: E_Str_Dish10_
|
|
Name: Steamed Tongue
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1800000,10;
|
|
- Id: 12502
|
|
AegisName: E_Agi_Dish10_
|
|
Name: Steamed Desert Scorpions
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1800000,10;
|
|
- Id: 12503
|
|
AegisName: E_Int_Dish10_
|
|
Name: Dragon Breath Cocktail
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1800000,10;
|
|
- Id: 12504
|
|
AegisName: E_Dex_Dish10_
|
|
Name: Hwergelmir's Tonic
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1800000,10;
|
|
- Id: 12505
|
|
AegisName: E_Luk_Dish10_
|
|
Name: Cooked Nine Tail
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1800000,10;
|
|
- Id: 12506
|
|
AegisName: E_Vit_Dish10_
|
|
Name: Immortal Stew
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1800000,10;
|
|
- Id: 12507
|
|
AegisName: E_WOB_Rune
|
|
Name: Yellow Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",1;
|
|
- Id: 12508
|
|
AegisName: E_WOB_Schwaltz
|
|
Name: Green Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",2;
|
|
- Id: 12509
|
|
AegisName: E_WOB_Rachel
|
|
Name: Red Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",3;
|
|
- Id: 12510
|
|
AegisName: E_WOB_Local
|
|
Name: Blue Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",5;
|
|
- Id: 12511
|
|
AegisName: E_Siege_Teleport_Scroll
|
|
Name: E Siege Teleport Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12512
|
|
AegisName: E_Greed_Scroll
|
|
Name: E Greed Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "BS_GREED",1;
|
|
- Id: 12513
|
|
AegisName: E_Glass_Of_Illusion
|
|
Name: E Glass Of Illusion
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
sc_start SC_INCFLEE2,60000,20;
|
|
- Id: 12514
|
|
AegisName: E_Abrasive
|
|
Name: E Abrasive
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
sc_start SC_INCCRI,300000,30;
|
|
- Id: 12515
|
|
AegisName: E_Med_Life_Potion
|
|
Name: E Med Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_L_LIFEPOTION,600000,-7,4;
|
|
- Id: 12516
|
|
AegisName: E_Small_Life_Potion
|
|
Name: E Small Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_LIFEPOTION,600000,-5,5;
|
|
- Id: 12517
|
|
AegisName: E_Regeneration_Potion
|
|
Name: E Regeneration Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12518
|
|
AegisName: E_B_Mdef_Potion
|
|
Name: E B Mdef Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12519
|
|
AegisName: E_S_Mdef_Potion
|
|
Name: E S Mdef Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12520
|
|
AegisName: E_B_Def_Potion
|
|
Name: E B Def Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12521
|
|
AegisName: E_S_Def_Potion
|
|
Name: E S Def Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12522
|
|
AegisName: E_Blessing_10_Scroll
|
|
Name: Blessing Scroll Lv 10
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_BLESSING",10;
|
|
- Id: 12523
|
|
AegisName: E_Inc_Agi_10_Scroll
|
|
Name: Increase Agility Scroll Lv 10
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_INCAGI",10;
|
|
- Id: 12524
|
|
AegisName: E_Aspersio_5_Scroll
|
|
Name: Aspersio Scroll Lv 5
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "PR_ASPERSIO",5;
|
|
- Id: 12525
|
|
AegisName: E_Assumptio_5_Scroll
|
|
Name: Assumptio Scroll Lv 5
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "HP_ASSUMPTIO",5;
|
|
- Id: 12526
|
|
AegisName: E_Wind_Walk_10_Scroll
|
|
Name: Wind Walk Scroll Lv 10
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "SN_WINDWALK",10;
|
|
- Id: 12527
|
|
AegisName: E_Adrenaline_Scroll
|
|
Name: Adrenaline Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "BS_ADRENALINE",5;
|
|
- Id: 12528
|
|
AegisName: E_Convex_Mirror
|
|
Name: Convex Mirror
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_BOSSMAPINFO,600000,0;
|
|
- Id: 12529
|
|
AegisName: White_Slim_Potion_Box
|
|
Name: White Slim Potion Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,200;
|
|
- Id: 12530
|
|
AegisName: Mastela_Fruit_Box
|
|
Name: Mastela Fruit Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 522,200;
|
|
- Id: 12531
|
|
AegisName: White_Potion_Box
|
|
Name: White Potion Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 504,100;
|
|
- Id: 12532
|
|
AegisName: Royal_Jelly_Box2
|
|
Name: Royal Jelly Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 526,100;
|
|
- Id: 12533
|
|
AegisName: Blue_Herb_Box2
|
|
Name: Blue Herb Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 510,100;
|
|
- Id: 12534
|
|
AegisName: Yggdrasil_Seed_Box
|
|
Name: Yggdrasil Seed Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 608,30;
|
|
- Id: 12535
|
|
AegisName: Iggdrasilberry_Box
|
|
Name: Iggdrasilberry Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 607,15;
|
|
- Id: 12536
|
|
AegisName: NY_Rice_Cake_Soup
|
|
Name: NY Rice Cake Soup
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 20,20;
|
|
- Id: 12537
|
|
AegisName: Solo_Gift_Basket
|
|
Name: Solo Gift Basket
|
|
Type: Usable
|
|
Buy: 1000
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Solo_Gift_Basket);*/
|
|
getitem 597,5;
|
|
getitem 596,3;
|
|
getitem 561,3;
|
|
getitem 573,4;
|
|
getitem 559,10;
|
|
getitem 560,10;
|
|
- Id: 12538
|
|
AegisName: Couple_Event_Basket
|
|
Name: Couple Event Basket
|
|
Type: Usable
|
|
Buy: 2000
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Couple_Event_Basket);*/
|
|
getitem 14546,10;
|
|
getitem 14547,10;
|
|
getitem 14548,10;
|
|
getitem 14549,10;
|
|
getitem 14550,10;
|
|
- Id: 12539
|
|
AegisName: Splendid_Box
|
|
Name: Splendid Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getgroupitem(IG_Splendid_Box);
|
|
- Id: 12540
|
|
AegisName: GM_Warp_Box
|
|
Name: GM Warp Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_GM_Warp_Box);
|
|
- Id: 12541
|
|
AegisName: Fortune_Cookie1
|
|
Name: Fortune Cookie1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_Fortune_Cookie1,1);
|
|
- Id: 12542
|
|
AegisName: Fortune_Cookie2
|
|
Name: Fortune Cookie2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Fortune_Cookie2);
|
|
- Id: 12543
|
|
AegisName: Fortune_Cookie3
|
|
Name: Fortune Cookie3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Fortune_Cookie3);
|
|
- Id: 12544
|
|
AegisName: Mystic_Tree_Branch
|
|
Name: Mystic Tree Branch
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12545
|
|
AegisName: Lucky_Egg_C5
|
|
Name: Lucky Egg C5
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C5);
|
|
- Id: 12546
|
|
AegisName: Suspicious_Dish
|
|
Name: Suspicious Dish
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 50
|
|
Script: |
|
|
sc_start SC_POISON,50000,0;
|
|
- Id: 12547
|
|
AegisName: Chalcenodny_Box
|
|
Name: Chalcenodny Box
|
|
Type: Usable
|
|
Weight: 200
|
|
- Id: 12548
|
|
AegisName: Buy_Market_Permit2
|
|
Name: Shabby Purchase Street Stall License
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 10
|
|
Script: |
|
|
buyingstore 2;
|
|
- Id: 12549
|
|
AegisName: White_Slim_Pot_Box2
|
|
Name: White Slim Pot Box2
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,100;
|
|
- Id: 12550
|
|
AegisName: Poison_Bottle_Box2
|
|
Name: Deadly Poison Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 678,30;
|
|
- Id: 12551
|
|
AegisName: MVP_Tele_Scroll
|
|
Name: MVP Tele Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12552
|
|
AegisName: Quest_Tele_Scroll
|
|
Name: Quest Tele Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12553
|
|
AegisName: Brysinggamen_Piece_Box
|
|
Name: Brysinggamen Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12554
|
|
AegisName: Asprika_Piece_Box
|
|
Name: Asprika Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12555
|
|
AegisName: Brynhild_Piece_Box
|
|
Name: Brynhild Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12556
|
|
AegisName: Sleipnir_Piece_Box
|
|
Name: Sleipnir Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12557
|
|
AegisName: Mjolnir_Piece_Box
|
|
Name: Mjolnir Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12558
|
|
AegisName: Magingiorde_Piece_Box
|
|
Name: Magingiorde Piece Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12559
|
|
AegisName: Tenkaippin_Strong
|
|
Name: Tenkaippin Strong
|
|
Type: Usable
|
|
Buy: 650
|
|
Weight: 200
|
|
- Id: 12560
|
|
AegisName: Tenkaippin_Clean
|
|
Name: Tenkaippin Clean
|
|
Type: Usable
|
|
Buy: 650
|
|
Weight: 200
|
|
- Id: 12561
|
|
AegisName: Mysterious_Seed
|
|
Name: Mysterious Seed
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
warp "bif_fild01",32,382;
|
|
- Id: 12562
|
|
AegisName: Bubble_Gum_Plus
|
|
Name: Bubble Gum Plus
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
- Id: 12563
|
|
AegisName: BM75
|
|
Name: BM75
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
- Id: 12564
|
|
AegisName: 3D_Glasses_Box
|
|
Name: 3D Glasses Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12565
|
|
AegisName: Cheer_Scarf_Box
|
|
Name: Cheer Scarf Box
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12566
|
|
AegisName: Cheer_Scarf2_Box
|
|
Name: Cheer Scarf2 Box
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12567
|
|
AegisName: Cheer_Scarf3_Box
|
|
Name: Cheer Scarf3 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12568
|
|
AegisName: Cheer_Scarf4_Box
|
|
Name: Cheer Scarf4 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12569
|
|
AegisName: Cheer_Scarf6_Box
|
|
Name: Cheer Scarf6 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12570
|
|
AegisName: Cheer_Scarf8_Box
|
|
Name: Cheer Scarf8 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12571
|
|
AegisName: Cheer_Scarf10_Box
|
|
Name: Cheer Scarf10 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12572
|
|
AegisName: Cheer_Scarf10_Box2
|
|
Name: Cheer Scarf10 Box2
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12573
|
|
AegisName: Fruit_Basket
|
|
Name: Fruit Basket
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Fruit_Basket,1);
|
|
getrandgroupitem(IG_Fruit_Basket,1);
|
|
getrandgroupitem(IG_Fruit_Basket,1);
|
|
- Id: 12574
|
|
AegisName: Mora_Berry
|
|
Name: Mora Berry
|
|
Type: Usable
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemheal 0,rand(50,65);
|
|
specialeffect2 EF_GUARD;
|
|
bonus_script "{ bonus2 bAddDefMonster,2137,50; bonus2 bAddDefMonster,2136,50; bonus2 bAddDefMonster,2134,50; bonus2 bAddDefMonster,2133,50; bonus2 bAddDefMonster,2132,50; }",120;
|
|
- Id: 12575
|
|
AegisName: Arrow_Of_Elf_Cntr
|
|
Name: Arrow Of Elf Cntr
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1773,500;
|
|
- Id: 12576
|
|
AegisName: Hunting_Arrow_Cntr
|
|
Name: Hunting Arrow Cntr
|
|
Type: Usable
|
|
Buy: 500
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1774,500;
|
|
- Id: 12577
|
|
AegisName: Lucky_Egg_C6
|
|
Name: Lucky Egg C6
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C6);
|
|
- Id: 12578
|
|
AegisName: Rapid_Life_Water
|
|
Name: Rapid Life Water
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
bonus_script "{ bonus2 bHPRegenRate,(MaxHp/100*6),3000; }",600;
|
|
- Id: 12579
|
|
AegisName: Ring_Of_Valkyrie_Box
|
|
Name: Ring Of Valkyrie Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12580
|
|
AegisName: Vending_Search_Scroll
|
|
Name: Universal Catalog Silver
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
searchstores 10,0;
|
|
- Id: 12581
|
|
AegisName: Vending_Search_Scroll2
|
|
Name: Universal Catalog Gold
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
searchstores 10,1;
|
|
- Id: 12582
|
|
AegisName: Siege_Supply_Box
|
|
Name: WoE Supply Box
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12583
|
|
AegisName: PR_Team_Box
|
|
Name: Public Relations box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6397,1;
|
|
- Id: 12584
|
|
AegisName: Develop_Team_box
|
|
Name: Development Team box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6398,1;
|
|
- Id: 12585
|
|
AegisName: Marketing_Team_Box
|
|
Name: Marketing Team box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6399,1;
|
|
- Id: 12586
|
|
AegisName: Operating_Team_Box
|
|
Name: Operation Team box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6400,1;
|
|
- Id: 12587
|
|
AegisName: Summer_Night_box
|
|
Name: A Summer Night's Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12246,1;
|
|
- Id: 12588
|
|
AegisName: Summer_Night_box2
|
|
Name: A Summer Night's Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12103,1;
|
|
- Id: 12589
|
|
AegisName: Summer_Night_box3
|
|
Name: A Summer Night's Box3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12106,1;
|
|
- Id: 12591
|
|
AegisName: Uni_Catalog_Bz
|
|
Name: Universal Catalog Bronze
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
searchstores 10,1;
|
|
- Id: 12592
|
|
AegisName: Cyclops_Box1
|
|
Name: Cyclops Box1
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12593
|
|
AegisName: Cyclops_Box2
|
|
Name: Cyclops Box2
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12594
|
|
AegisName: Cyclops_Box3
|
|
Name: Cyclops Box3
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12595
|
|
AegisName: Lucky_Egg_C7
|
|
Name: Lucky Egg C7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C7);
|
|
- Id: 12596
|
|
AegisName: Magic_Candy
|
|
Name: Magic Candy
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 180000
|
|
Status: Reuse_Limit_B
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HASTEUP;
|
|
bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY;
|
|
- Id: 12597
|
|
AegisName: Opor_Ayam
|
|
Name: Opor Ayam
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 150
|
|
- Id: 12598
|
|
AegisName: Dendeng_Balado
|
|
Name: Dendeng Balado
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 150
|
|
- Id: 12599
|
|
AegisName: Kurma
|
|
Name: Kurma
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 100
|
|
- Id: 12600
|
|
AegisName: Treasure_Box_Scroll
|
|
Name: Treasure Chest Summoned
|
|
Type: Delayconsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12601
|
|
AegisName: Cold_Watermelon_Juice
|
|
Name: Fresh Watermelon Juice
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 12602
|
|
AegisName: Special_Box1
|
|
Name: Special Box I
|
|
Type: Delayconsume
|
|
Buy: 100
|
|
Weight: 100
|
|
- Id: 12603
|
|
AegisName: Special_Box2
|
|
Name: Special Box II
|
|
Type: Delayconsume
|
|
Buy: 100
|
|
Weight: 100
|
|
- Id: 12604
|
|
AegisName: Special_Box3
|
|
Name: Special Box III
|
|
Type: Delayconsume
|
|
Buy: 100
|
|
Weight: 100
|
|
- Id: 12605
|
|
AegisName: Special_Box4
|
|
Name: Special Box IV
|
|
Type: Delayconsume
|
|
Buy: 100
|
|
Weight: 100
|
|
- Id: 12606
|
|
AegisName: Special_Box5
|
|
Name: Special Box V
|
|
Type: Delayconsume
|
|
Buy: 100
|
|
Weight: 100
|
|
- Id: 12607
|
|
AegisName: Lolli_Pop_Box
|
|
Name: Delicious Lollipop Box
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12608
|
|
AegisName: Splendid_Box2
|
|
Name: Splendid Box2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Splendid_Box2);
|
|
- Id: 12609
|
|
AegisName: Old_Ore_Box
|
|
Name: Old Ore Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getgroupitem(IG_Old_Ore_Box);
|
|
- Id: 12610
|
|
AegisName: Mysterious_Egg
|
|
Name: Mysterious Egg
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",12545,12493,12577,12391,12403,12416),1;
|
|
- Id: 12612
|
|
AegisName: Old_Coin_Pocket
|
|
Name: Old Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Old_Coin_Pocket);
|
|
- Id: 12613
|
|
AegisName: High_Coin_Pocket
|
|
Name: Improved Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_High_Coin_Pocket);
|
|
- Id: 12614
|
|
AegisName: Mid_Coin_Pocket
|
|
Name: Intermediate Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Mid_Coin_Pocket);
|
|
- Id: 12615
|
|
AegisName: Low_Coin_Pocket
|
|
Name: Minor Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Low_Coin_Pocket);
|
|
- Id: 12616
|
|
AegisName: Sgrade_Pocket
|
|
Name: S Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sgrade_Pocket);
|
|
- Id: 12617
|
|
AegisName: Agrade_Pocket
|
|
Name: A Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Agrade_Pocket);
|
|
- Id: 12618
|
|
AegisName: Bgrade_Pocket
|
|
Name: B Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Bgrade_Pocket);
|
|
- Id: 12619
|
|
AegisName: Cgrade_Pocket
|
|
Name: C Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Cgrade_Pocket);
|
|
- Id: 12620
|
|
AegisName: Dgrade_Pocket
|
|
Name: D Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Dgrade_Pocket);
|
|
- Id: 12621
|
|
AegisName: Egrade_Pocket
|
|
Name: E Grade Coin Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Egrade_Pocket);
|
|
- Id: 12622
|
|
AegisName: Boarding_Halter
|
|
Name: Reins Of Mount
|
|
Type: Usable
|
|
Flags:
|
|
NoConsume: true
|
|
Delay:
|
|
Duration: 3000
|
|
Status: All_Riding_Reuse_Limit
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
setmounting();
|
|
UnEquipScript: |
|
|
if (ismounting())
|
|
setmounting();
|
|
- Id: 12623
|
|
AegisName: High_Weapon_Box
|
|
Name: Advanced Weapons Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Advanced_Weapons_Box,1);
|
|
- Id: 12624
|
|
AegisName: Delicious_Jelly
|
|
Name: Delicious Jelly
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
percentheal 3,3;
|
|
- Id: 12625
|
|
AegisName: Sapa_Feat_Cert_Pack
|
|
Name: Sapa Feat Cert Pack
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12626
|
|
AegisName: Wander_Man_Scroll
|
|
Name: Wander Man Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2213,1800000;
|
|
- Id: 12627
|
|
AegisName: Wicked_Nymph_Scroll
|
|
Name: Wicked Nymph Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2214,1800000;
|
|
- Id: 12628
|
|
AegisName: Kasa_Scroll
|
|
Name: Kasa Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2215,1800000;
|
|
- Id: 12629
|
|
AegisName: Salamander_Scroll
|
|
Name: Salamander Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2216,1800000;
|
|
- Id: 12630
|
|
AegisName: Teddy_Bear_Scroll
|
|
Name: Teddy Bear Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2217,1800000;
|
|
- Id: 12631
|
|
AegisName: Macro_Stone_A
|
|
Name: Macro Stone A
|
|
Type: Usable
|
|
- Id: 12632
|
|
AegisName: Macro_Stone_B
|
|
Name: Macro Stone B
|
|
Type: Usable
|
|
- Id: 12633
|
|
AegisName: Malang_Cat_Can
|
|
Name: Malangdo Cat Can
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
bonus_script "{ bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,20; }",1200,1,0,EFST_OVERLAPEXPUP;
|
|
- Id: 12634
|
|
AegisName: Macro_Stone_A1
|
|
Name: Macro Stone A1
|
|
Type: Usable
|
|
- Id: 12635
|
|
AegisName: Macro_Stone_A2
|
|
Name: Macro Stone A2
|
|
Type: Usable
|
|
- Id: 12636
|
|
AegisName: Malang_Sp_Can
|
|
Name: Malangdo Canned Specialties
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "malangdo",140,114;
|
|
- Id: 12637
|
|
AegisName: Gong_Bug_Pocket
|
|
Name: Sow Bug Pocket
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 500
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13208,200;
|
|
- Id: 12638
|
|
AegisName: Dried_Squid_Box
|
|
Name: Dried Squid Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 2000
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13292,200;
|
|
- Id: 12639
|
|
AegisName: Flying_Fish_Box
|
|
Name: Flying Fish Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 2000
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13293,200;
|
|
- Id: 12640
|
|
AegisName: Starfish_Box
|
|
Name: Starfish Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 500
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13291,200;
|
|
- Id: 12641
|
|
AegisName: Lucky_Egg_C8
|
|
Name: Lucky Egg C8
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C8);
|
|
- Id: 12642
|
|
AegisName: Fruit_Of_Mastela_Box2
|
|
Name: Fruit Of Mastela 100 Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 522,100;
|
|
- Id: 12643
|
|
AegisName: E_Coin_Pack50
|
|
Name: E Coin Pack50
|
|
Type: Usable
|
|
Script: |
|
|
getitem 6422,50;
|
|
- Id: 12644
|
|
AegisName: PCBang_Coupon_Box4
|
|
Name: PCBang Coupon Box4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12645
|
|
AegisName: J_Aspersio_5_Scroll_C
|
|
Name: J Aspersio 5 Scroll C
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPERSIO,180000,1;
|
|
- Id: 12646
|
|
AegisName: Takoyaki
|
|
Name: Fried Octopus Legs
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
percentheal 5,5;
|
|
sc_start SC_LUKFOOD,600000,9;
|
|
sc_start SC_ATKPOTION,600000,20;
|
|
sc_start SC_MATKPOTION,600000,20;
|
|
- Id: 12647
|
|
AegisName: Ink_Ball
|
|
Name: Sea Ink
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 30
|
|
Script: |
|
|
getgroupitem(IG_Ink_Ball);
|
|
- Id: 12648
|
|
AegisName: Special_Potion_Set
|
|
Name: Comprehensive Set Of Potions
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
getitem 501,10;
|
|
getitem 502,10;
|
|
getitem 503,10;
|
|
getitem 504,10;
|
|
getitem 505,10;
|
|
- Id: 12649
|
|
AegisName: Lv70_Imperial_Gift
|
|
Name: Level 70 Bounty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12073,5;
|
|
getitem 12088,5;
|
|
getitem 12078,5;
|
|
getitem 12083,5;
|
|
getitem 12093,5;
|
|
getitem 12098,5;
|
|
- Id: 12650
|
|
AegisName: Lv90_Imperial_Gift
|
|
Name: Level 90 Bounty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12263,5;
|
|
- Id: 12651
|
|
AegisName: Lv110_Imperial_Gift
|
|
Name: Level 110 Bounty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12623,1;
|
|
getitem 16765,1;
|
|
getitem 16765,1;
|
|
getitem 16765,1;
|
|
- Id: 12652
|
|
AegisName: Lv130_Imperial_Gift
|
|
Name: Level 130 Bounty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12613,10;
|
|
- Id: 12653
|
|
AegisName: Lv150_Imperial_Gift
|
|
Name: Level 150 Bounty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 16740,1;
|
|
getitem 16740,1;
|
|
getitem 16740,1;
|
|
getitem 5364,1;
|
|
- Id: 12654
|
|
AegisName: Lucky_Egg_C9
|
|
Name: Lucky Egg C9
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C9);
|
|
- Id: 12655
|
|
AegisName: Brain_Powder
|
|
Name: Brain Powder
|
|
Type: Usable
|
|
Buy: 2000
|
|
Weight: 100
|
|
- Id: 12656
|
|
AegisName: Magical_Powder
|
|
Name: Magical Powder
|
|
Type: Usable
|
|
Buy: 3000
|
|
Weight: 200
|
|
- Id: 12657
|
|
AegisName: Madness_Powder
|
|
Name: Madness Powder
|
|
Type: Usable
|
|
Buy: 4000
|
|
Weight: 300
|
|
- Id: 12658
|
|
AegisName: Trans_Scroll_Devi
|
|
Name: Transformation Scroll(Deviruchi)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1109,1200000,SC_MTF_ASPD,10,5;
|
|
showscript "Traaaansformation-!! Deviruchi form!!";
|
|
- Id: 12659
|
|
AegisName: Trans_Scroll_Ray_Arch
|
|
Name: Transformation Scroll(Raydric)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1276,1200000,SC_MTF_RANGEATK,25;
|
|
showscript "Traaaansformation-!! Raydric form!!";
|
|
- Id: 12660
|
|
AegisName: Trans_Scroll_Mavka
|
|
Name: Transformation Scroll(Mavka)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1884,1200000,SC_MTF_RANGEATK,25;
|
|
showscript "Traaaansformation-!! Mavka form!!";
|
|
- Id: 12661
|
|
AegisName: Trans_Scroll_Marduk
|
|
Name: Transformation Scroll(Marduk)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1140,1200000,SC_MTF_MATK,25;
|
|
showscript "Traaaansformation-!! Marduk form!!";
|
|
- Id: 12662
|
|
AegisName: Trans_Scroll_Banshee
|
|
Name: Transformation Scroll(Banshee)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1867,1200000,SC_MTF_MATK,25;
|
|
showscript "Traaaansformation-!! Banshee form!!";
|
|
- Id: 12663
|
|
AegisName: Trans_Scroll_Poring
|
|
Name: Transformation Scroll(Poring)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1002,1200000,SC_MTF_CRIDAMAGE,5;
|
|
showscript "Traaaansformation-!! Poring form!!";
|
|
- Id: 12664
|
|
AegisName: Trans_Scroll_Golem
|
|
Name: Transformation Scroll(Golem)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Status: Reuse_Limit_Mtf
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 1040,1200000,SC_MTF_MLEATKED,5,20,2;
|
|
showscript "Traaaansformation-!! Golem form!!";
|
|
- Id: 12665
|
|
AegisName: Grovel_Buff
|
|
Name: Grovel Buff
|
|
Type: Usable
|
|
- Id: 12666
|
|
AegisName: Thai_Perfume_MATK
|
|
Name: Thai Perfume MATK
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
bonus_script "{ bonus bMatk,24; }",600,0,0,EFST_SKF_MATK;
|
|
- Id: 12667
|
|
AegisName: Thai_Perfume_ATK
|
|
Name: Thai Perfume ATK
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
bonus_script "{ bonus bBaseAtk,24; }",600,0,0,EFST_SKF_ATK;
|
|
- Id: 12668
|
|
AegisName: Thai_Perfume_ASPD
|
|
Name: Thai Perfume ASPD
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
bonus_script "{ bonus bAspdRate,3; }",600,0,0,EFST_SKF_ASPD;
|
|
- Id: 12669
|
|
AegisName: Thai_Perfume_CAST
|
|
Name: Thai Perfume CAST
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
bonus_script "{ bonus bVariableCastrate,-5; }",600,0,0,EFST_SKF_CAST;
|
|
- Id: 12670
|
|
AegisName: Beast_Powder
|
|
Name: Beast Powder
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
- Id: 12671
|
|
AegisName: 99lv_Battle_Manual
|
|
Name: 99lv Battle Manual
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12672
|
|
AegisName: Start_New_Box
|
|
Name: Start New Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 617,2;
|
|
getitem 12263,2;
|
|
getitem 12329,3;
|
|
getitem 12330,2;
|
|
- Id: 12673
|
|
AegisName: Lucky_Egg_C10
|
|
Name: Lucky Egg C10
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Egg_C10);
|
|
- Id: 12674
|
|
AegisName: God_Material_Box
|
|
Name: God Material Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 500
|
|
Script: |
|
|
getgroupitem(IG_God_Material_Box);
|
|
- Id: 12675
|
|
AegisName: Sg_Weapon_Supply_Box
|
|
Name: WoE Weapon Supply Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 500
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sg_Weapon_Supply_Box);
|
|
- Id: 12676
|
|
AegisName: Sg_Violet_Potion_Box
|
|
Name: Siege Violet Potion Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 11547,50;
|
|
- Id: 12677
|
|
AegisName: Siege_Arrow_Quiver_S
|
|
Name: Siege Arrow Quiver S
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
EquipLevelMin: 130
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1775,500;
|
|
- Id: 12678
|
|
AegisName: Siege_Arrow_Quiver_A
|
|
Name: Siege Arrow Quiver A
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
EquipLevelMin: 95
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 1776,500;
|
|
- Id: 12679
|
|
AegisName: Sg_White_Potion_Box
|
|
Name: Siege White Potion Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 11548,30;
|
|
- Id: 12680
|
|
AegisName: Sg_Blue_Potion_Box
|
|
Name: Siege Blue Potion Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 11549,10;
|
|
- Id: 12681
|
|
AegisName: Nestea_Lemon
|
|
Name: Nestea Lemon
|
|
Type: Usable
|
|
Weight: 50
|
|
- Id: 12682
|
|
AegisName: Nestea_Blacktea
|
|
Name: Nestea Black Tea
|
|
Type: Usable
|
|
Weight: 30
|
|
- Id: 12683
|
|
AegisName: Sg_Vi_Potion_Box200
|
|
Name: Siege Violet Potion Box (200)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem 11547,200;
|
|
- Id: 12684
|
|
AegisName: ASPD_Potion
|
|
Name: ASPD Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 900000
|
|
Status: Reuse_Limit_Aspd_Potion
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATTHASTE_CASH,900000,3;
|
|
- Id: 12685
|
|
AegisName: Gryphon_Egg_Scroll
|
|
Name: Gryphon Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12686
|
|
AegisName: Str_Dish20
|
|
Name: Str Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12687
|
|
AegisName: Int_Dish20
|
|
Name: Int Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12688
|
|
AegisName: Vit_Dish20
|
|
Name: Vit Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12689
|
|
AegisName: Dex_Dish20
|
|
Name: Dex Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12690
|
|
AegisName: Old_C_Album_Helm
|
|
Name: Headgear Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Helm,1);
|
|
- Id: 12691
|
|
AegisName: Old_C_Album_Armor
|
|
Name: Armor Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Armor,1);
|
|
- Id: 12692
|
|
AegisName: Old_C_Album_Shield
|
|
Name: Shield Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Shield,1);
|
|
- Id: 12693
|
|
AegisName: Old_C_Album_Garment
|
|
Name: Garment Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Garment,1);
|
|
- Id: 12694
|
|
AegisName: Old_C_Album_Shoes
|
|
Name: Shoes Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Shoes,1);
|
|
- Id: 12695
|
|
AegisName: Old_C_Album_Acc
|
|
Name: Accessory Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Acc,1);
|
|
- Id: 12696
|
|
AegisName: RWC_Cele_Fire
|
|
Name: RWC Celebration Firecracker
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;
|
|
- Id: 12697
|
|
AegisName: RWC_Cele_Fire2
|
|
Name: RWC Celebration Firecracker
|
|
Type: Usable
|
|
Weight: 20
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,3; bonus2 bAddClass,Class_All,5; bonus2 bMagicAddClass,Class_All,5; bonus bMatkRate,5; }",10,0,0,EFST_2011RWC;
|
|
- Id: 12698
|
|
AegisName: Old_C_Album_Weapon
|
|
Name: Weapon Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum_Weapon,1);
|
|
- Id: 12699
|
|
AegisName: Tikbalang_Belt
|
|
Name: Tikbalang Harness
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
pet 2313;
|
|
- Id: 12700
|
|
AegisName: Insideout_Shirt
|
|
Name: Inside-out Shirt
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
warp "malaya",242,211;
|
|
- Id: 12701
|
|
AegisName: Old_Blue_Box_F
|
|
Name: Old Blue Box
|
|
Type: Usable
|
|
Weight: 200
|
|
- Id: 12702
|
|
AegisName: Old_Bleu_Box
|
|
Name: Old Navy Box
|
|
Type: Usable
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_BleuBox,1);
|
|
getrandgroupitem(IG_BleuBox,1);
|
|
- Id: 12703
|
|
AegisName: Holy_Egg_2
|
|
Name: Holy Egg
|
|
Type: Usable
|
|
Weight: 50
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Holy_Egg_2,1);
|
|
- Id: 12704
|
|
AegisName: Elixir_Of_Life
|
|
Name: Elixir of Life
|
|
Type: Healing
|
|
Weight: 10
|
|
EquipLevelMin: 85
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 100,0;
|
|
- Id: 12705
|
|
AegisName: Noble_Nameplate
|
|
Name: Noble Nameplate
|
|
Type: Usable
|
|
Weight: 100
|
|
EquipLevelMin: 90
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,100;
|
|
- Id: 12706
|
|
AegisName: Lucky_Cookie01
|
|
Name: Lucky Cookie
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "PR_GLORIA",5;
|
|
- Id: 12707
|
|
AegisName: Lucky_Cookie02
|
|
Name: Lucky Cookie
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "PR_MAGNIFICAT",1;
|
|
- Id: 12708
|
|
AegisName: Lucky_Cookie03
|
|
Name: Lucky Cookie
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
itemskill "PR_IMPOSITIO",3;
|
|
- Id: 12709
|
|
AegisName: Guyak_Candy
|
|
Name: Guyak Candy
|
|
Type: Healing
|
|
Weight: 150
|
|
Script: |
|
|
percentheal 30,30;
|
|
- Id: 12710
|
|
AegisName: Guyak_Pudding
|
|
Name: Guyak Pudding
|
|
Type: Usable
|
|
Weight: 200
|
|
Script: |
|
|
sc_start SC_SPEEDUP1,300000,50;
|
|
- Id: 12711
|
|
AegisName: Pretzel
|
|
Name: Pretzel
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Script: |
|
|
itemheal rand(50,90),0;
|
|
- Id: 12712
|
|
AegisName: Green_Beer
|
|
Name: Green Beer
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
Script: |
|
|
percentheal 0,50;
|
|
- Id: 12713
|
|
AegisName: Monster_Extract
|
|
Name: Monster Extract
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12714
|
|
AegisName: Easter_Scroll
|
|
Name: Easter Scroll
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_Easter_Scroll,1);
|
|
- Id: 12715
|
|
AegisName: Black_Treasure_Box
|
|
Name: Black Treasure Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12716
|
|
AegisName: Indian_Rice_Cake
|
|
Name: Indian Rice Cake
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12717
|
|
AegisName: Poison_Paralysis
|
|
Name: Paralyze
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12718
|
|
AegisName: Poison_Leech
|
|
Name: Leech End
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12719
|
|
AegisName: Poison_Oblivion
|
|
Name: Oblivion Curse
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12720
|
|
AegisName: Poison_Contamination
|
|
Name: Disheart
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12721
|
|
AegisName: Poison_Numb
|
|
Name: Toxin
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12722
|
|
AegisName: Poison_Fever
|
|
Name: Pyrexia
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12723
|
|
AegisName: Poison_Laughing
|
|
Name: Magic Mushroom
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12724
|
|
AegisName: Poison_Fatigue
|
|
Name: Venom Bleed
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Flags:
|
|
BuyingStore: true
|
|
- Id: 12725
|
|
AegisName: Runstone_Nosiege
|
|
Name: Nauthiz Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 120000
|
|
Status: Reuse_Refresh
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_REFRESH",1;
|
|
- Id: 12726
|
|
AegisName: Runstone_Rhydo
|
|
Name: Raido Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 30000
|
|
Status: Reuse_Crushstrike
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_CRUSHSTRIKE",1;
|
|
- Id: 12727
|
|
AegisName: Runstone_Verkana
|
|
Name: Berkana Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 60000
|
|
Status: Reuse_Millenniumshield
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_MILLENNIUMSHIELD",1;
|
|
- Id: 12728
|
|
AegisName: Runstone_Isia
|
|
Name: Isa Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_VITALITYACTIVATION",1;
|
|
- Id: 12729
|
|
AegisName: Runstone_Asir
|
|
Name: Othila Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_FIGHTINGSPIRIT",1;
|
|
- Id: 12730
|
|
AegisName: Runstone_Urj
|
|
Name: Uruz Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_ABUNDANCE",1;
|
|
- Id: 12731
|
|
AegisName: Runstone_Turisus
|
|
Name: Thurisaz Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_GIANTGROWTH",1;
|
|
- Id: 12732
|
|
AegisName: Runstone_Pertz
|
|
Name: Wyrd Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 1000
|
|
Status: Reuse_Stormblast
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_STORMBLAST",1;
|
|
- Id: 12733
|
|
AegisName: Runstone_Hagalas
|
|
Name: Hagalaz Rune
|
|
Type: Usable
|
|
Buy: 100
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if ((eaclass()&EAJ_THIRDMASK) == EAJ_RUNE_KNIGHT)
|
|
unitskilluseid getcharid(3),"RK_STONEHARDSKIN",1;
|
|
- Id: 12734
|
|
AegisName: Runstone_Quality
|
|
Name: Luxurious Rune
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Jobs:
|
|
Knight: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
makerune 8;
|
|
- Id: 12735
|
|
AegisName: Runstone_Ancient
|
|
Name: Ancient Rune
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Jobs:
|
|
Knight: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
makerune 30;
|
|
- Id: 12736
|
|
AegisName: Runstone_Mystic
|
|
Name: Mystic Rune
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Jobs:
|
|
Knight: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
makerune 60;
|
|
- Id: 12737
|
|
AegisName: Runstone_Ordinary
|
|
Name: General Rune
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Jobs:
|
|
Knight: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
makerune 4;
|
|
- Id: 12738
|
|
AegisName: Runstone_Rare
|
|
Name: Rare Rune
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 100
|
|
Jobs:
|
|
Knight: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
makerune 15;
|
|
- Id: 12739
|
|
AegisName: Snow_Flower
|
|
Name: Snow Flowers
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 12740
|
|
AegisName: Inc_Str_Scroll
|
|
Name: Amplification Scroll
|
|
Type: Usable
|
|
Buy: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bStr,20; }",60,0,0,EFST_STR_SCROLL;
|
|
- Id: 12741
|
|
AegisName: Inc_Int_Scroll
|
|
Name: Intellect Amplification Scroll
|
|
Type: Usable
|
|
Buy: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
bonus_script "{ bonus bInt,20; }",60,0,0,EFST_INT_SCROLL;
|
|
- Id: 12742
|
|
AegisName: Valentine_Gift_Box1
|
|
Name: Valentine Gift Box
|
|
Type: Usable
|
|
Script: |
|
|
getitem 7946,1;
|
|
- Id: 12743
|
|
AegisName: Valentine_Gift_Box2
|
|
Name: Valentine Gift Box
|
|
Type: Usable
|
|
Script: |
|
|
getitem 7947,1;
|
|
- Id: 12744
|
|
AegisName: Chocotate_Box
|
|
Name: Chocolate Box
|
|
Type: Usable
|
|
Script: |
|
|
getitem 558,1;
|
|
- Id: 12745
|
|
AegisName: Skull_Scroll
|
|
Name: Skull Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12746
|
|
AegisName: Destruction_Scroll
|
|
Name: Destruction Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12747
|
|
AegisName: Royal_Scroll
|
|
Name: Royal Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12748
|
|
AegisName: Immune_Scroll
|
|
Name: Immune Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12749
|
|
AegisName: Mystic_Scroll
|
|
Name: Mystic Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12750
|
|
AegisName: Battle_Scroll
|
|
Name: Battle Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12751
|
|
AegisName: Armor_Scroll
|
|
Name: Armor Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12752
|
|
AegisName: Prayer_Scroll
|
|
Name: Prayer Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12753
|
|
AegisName: Soul_Scroll
|
|
Name: Soul Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12754
|
|
AegisName: New_Year_Bun
|
|
Name: Chinese Pastel
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
percentheal 50,50;
|
|
- Id: 12755
|
|
AegisName: Traditional_Firecrack
|
|
Name: Chinese Fireworks
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_POK_JAP;
|
|
/* itemskill "MO_CALLSPIRITS",3; itemskill "MO_FINGEROFFENSIVE",5; */
|
|
- Id: 12756
|
|
AegisName: New_Gift_Envelope
|
|
Name: Chinese New Year Envelope
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_New_Gift_Envelope);*/
|
|
getrandgroupitem(IG_New_Gift_Envelope,0);
|
|
- Id: 12757
|
|
AegisName: Loyal_Ring1_Box
|
|
Name: Loyal Ring1 Box
|
|
Type: Usable
|
|
Buy: 10
|
|
- Id: 12758
|
|
AegisName: Loyal_Ring2_Box
|
|
Name: Loyal Ring2 Box
|
|
Type: Usable
|
|
Buy: 10
|
|
- Id: 12759
|
|
AegisName: Loyal_Ring3_Box
|
|
Name: Loyal Ring3 Box
|
|
Type: Usable
|
|
Buy: 10
|
|
- Id: 12760
|
|
AegisName: Bubble_Gum_Green
|
|
Name: Bubble Gum Green
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCSTR,1200000,10;
|
|
- Id: 12761
|
|
AegisName: Bubble_Gum_Yellow
|
|
Name: Bubble Gum Yellow
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCINT,1200000,10;
|
|
- Id: 12762
|
|
AegisName: Bubble_Gum_Orange
|
|
Name: Bubble Gum Orange
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCDEX,1200000,10;
|
|
- Id: 12763
|
|
AegisName: Bubble_Gum_Red
|
|
Name: Bubble Gum Red
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INCAGI,1200000,10;
|
|
- Id: 12764
|
|
AegisName: Fools_Day_Box_Tw
|
|
Name: Fools Day Box Tw
|
|
Type: Usable
|
|
- Id: 12765
|
|
AegisName: Summer_Knight_Box
|
|
Name: Summer Knight Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
- Id: 12766
|
|
AegisName: Reward_Job_BM25
|
|
Name: Reward Job BM25
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12767
|
|
AegisName: Passion_FB_Hat_Box
|
|
Name: Passion FB Hat Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Passion_FB_Hat_Box);*/
|
|
rentitem 5856,3600;
|
|
- Id: 12768
|
|
AegisName: Cool_FB_Hat_Box
|
|
Name: Cool FB Hat Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Cool_FB_Hat_Box);*/
|
|
rentitem 5857,3600;
|
|
- Id: 12769
|
|
AegisName: Victory_FB_Hat_Box
|
|
Name: Victory FB Hat Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Victory_FB_Hat_Box);*/
|
|
rentitem 5858,3600;
|
|
- Id: 12770
|
|
AegisName: Glory_FB_Hat_Box
|
|
Name: Glory FB Hat Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Glory_FB_Hat_Box);*/
|
|
rentitem 5859,86400;
|
|
- Id: 12771
|
|
AegisName: Passion_Hat_Box2
|
|
Name: Passion Hat Box2
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Passion_Hat_Box2);*/
|
|
rentitem 5856,21600;
|
|
- Id: 12772
|
|
AegisName: Cool_Hat_Box2
|
|
Name: Cool Hat Box2
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Cool_Hat_Box2);*/
|
|
rentitem 5857,21600;
|
|
- Id: 12773
|
|
AegisName: Victory_Hat_Box2
|
|
Name: Victory Hat Box2
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_Victory_Hat_Box2);*/
|
|
rentitem 5858,21600;
|
|
- Id: 12774
|
|
AegisName: Empty_Potion_Bottle
|
|
Name: Empty Potion Bottle
|
|
Type: Usable
|
|
- Id: 12775
|
|
AegisName: Ancient_Spirit_Agimat
|
|
Name: Greater Agimat of Ancient Spirit
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 600
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_PROVIDENCE;
|
|
bonus_script "{ bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; }",1200;
|
|
- Id: 12776
|
|
AegisName: Agi_Dish20
|
|
Name: Agi Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12777
|
|
AegisName: Luk_Dish20
|
|
Name: Luk Dish20
|
|
Type: Usable
|
|
Weight: 10
|
|
- Id: 12778
|
|
AegisName: Bapho_Jr_Scroll
|
|
Name: Bapho Jr Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2325,1800000;
|
|
- Id: 12779
|
|
AegisName: Galapago_Scroll
|
|
Name: Galapago Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2326,1800000;
|
|
- Id: 12780
|
|
AegisName: 10M_Zeny_Check
|
|
Name: 10M Zeny Check
|
|
Type: Usable
|
|
- Id: 12781
|
|
AegisName: 1M_Zeny_Check
|
|
Name: 1M Zeny Check
|
|
Type: Usable
|
|
- Id: 12782
|
|
AegisName: 100T_Zeny_Check
|
|
Name: 100T Zeny Check
|
|
Type: Usable
|
|
- Id: 12783
|
|
AegisName: 10000_Zeny_Check
|
|
Name: 10000 Zeny Check
|
|
Type: Usable
|
|
- Id: 12784
|
|
AegisName: 1000_Zeny_Check
|
|
Name: 1000 Zeny Check
|
|
Type: Usable
|
|
- Id: 12785
|
|
AegisName: Dragon_Egg_Scroll
|
|
Name: Dragon Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12786
|
|
AegisName: Change_Slot_Card
|
|
Name: Character Position Change Coupon
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
CharMoves++;
|
|
- Id: 12787
|
|
AegisName: Diabolic_Scroll
|
|
Name: Diabolic Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2342,1800000;
|
|
- Id: 12788
|
|
AegisName: No100_Firecracker
|
|
Name: No100 Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
- Id: 12789
|
|
AegisName: Juicy_Fruit
|
|
Name: Juicy Fruit
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 100
|
|
- Id: 12790
|
|
AegisName: Change_Name_Card
|
|
Name: Character Name Change Coupon
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
CharRename++;
|
|
- Id: 12791
|
|
AegisName: Combat_Pill
|
|
Name: Combat Pill
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 150
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,-3; bonus bMaxSPrate,-3; }",600,0,0,EFST_GM_BATTLE;
|
|
/* showscript */
|
|
- Id: 12792
|
|
AegisName: P_Combat_Pill
|
|
Name: P Combat Pill
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 150
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHPrate,-5; bonus bMaxSPrate,-5; }",600,0,0,EFST_GM_BATTLE;
|
|
- Id: 12793
|
|
AegisName: Combat_Pill_Box10
|
|
Name: Combat Pill Box10
|
|
Type: Usable
|
|
Buy: 20
|
|
Script: |
|
|
getitem 12791,10;
|
|
- Id: 12794
|
|
AegisName: P_Combat_Pill_Box10
|
|
Name: P Combat Pill Box10
|
|
Type: Usable
|
|
Buy: 20
|
|
Script: |
|
|
getitem 12792,10;
|
|
- Id: 12795
|
|
AegisName: 2011_RWC_Scroll_Kr
|
|
Name: 2011 RWC Scroll Kr
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12796
|
|
AegisName: Red_Booster
|
|
Name: Red Booster
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AC_CONCENTRATION",max(getskilllv("AC_CONCENTRATION"),3);
|
|
/*bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus5 bAutoSpell,\"AC_CONCENTRATION\",max(getskilllv(\"AC_CONCENTRATION\"),3),10,BF_WEAPON|BF_MAGIC,0; }",600,1,1,EFST_2011RWC_SCROLL; TODO implement new staus*/
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW";
|
|
- Id: 12797
|
|
AegisName: Wish_Maiden_Scroll
|
|
Name: Wish Maiden Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2344,1800000;
|
|
- Id: 12798
|
|
AegisName: Zealotus_Scroll
|
|
Name: Zealotus Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2345,1800000;
|
|
- Id: 12799
|
|
AegisName: PCBang_Coupon_Box5
|
|
Name: PCBang Coupon Box5
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12800
|
|
AegisName: Ktullanux_Scroll
|
|
Name: Ktullanux Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2346,1800000;
|
|
- Id: 12801
|
|
AegisName: Eddga_Scroll
|
|
Name: Eddga Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2347,1800000;
|
|
- Id: 12802
|
|
AegisName: Time_Guardian_Box
|
|
Name: Time Guardian Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12803
|
|
AegisName: Beginner_Kit_Box
|
|
Name: Beginner Kit Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12804
|
|
AegisName: Cru_Scroll
|
|
Name: Cru Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12805
|
|
AegisName: Mystic_Powder
|
|
Name: Mystic Powder
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12806
|
|
AegisName: Scaraba_Scroll
|
|
Name: Scaraba Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2378,1800000;
|
|
- Id: 12807
|
|
AegisName: Mercenary_Casting_
|
|
Name: Mercenary Casting
|
|
Type: Usable
|
|
EquipLevelMin: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12160,5;
|
|
getitem 12170,5;
|
|
getitem 12180,5;
|
|
getitem 12808,1;
|
|
- Id: 12808
|
|
AegisName: Mother_Love_Box
|
|
Name: Mother Love Box
|
|
Type: Usable
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12809
|
|
AegisName: Level_Up_Box
|
|
Name: Level Up Box
|
|
Type: Usable
|
|
EquipLevelMin: 120
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12263,5;
|
|
getitem 12264,5;
|
|
getitem 12265,5;
|
|
getitem 12766,5;
|
|
getitem 12819,1;
|
|
- Id: 12810
|
|
AegisName: Event_Gift_Box
|
|
Name: Event Gift Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12811
|
|
AegisName: Event_Gift_Box_
|
|
Name: Event Gift Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 607,3;
|
|
getitem callfunc("F_Rand",22528,22802,12246,6228,6229,6230,6232,6233,6234),1;
|
|
- Id: 12812
|
|
AegisName: Snow_Flip
|
|
Name: Snow Flip
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_Ecl
|
|
Script: |
|
|
itemskill "ECL_SNOWFLIP",1;
|
|
- Id: 12813
|
|
AegisName: Peony_Mommy
|
|
Name: Peony Mamy
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_Ecl
|
|
Script: |
|
|
itemskill "ECL_PEONYMAMY",1;
|
|
- Id: 12814
|
|
AegisName: Slapping_Herb
|
|
Name: Slapping Herb
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_Ecl
|
|
Script: |
|
|
itemskill "ECL_SADAGUI",1;
|
|
- Id: 12815
|
|
AegisName: Yggdrasil_Dust
|
|
Name: Yggdrasil Dust
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_Ecl
|
|
Script: |
|
|
itemskill "ECL_SEQUOIADUST",1;
|
|
- Id: 12816
|
|
AegisName: Old_Ore_Box_
|
|
Name: Old Ore Box
|
|
Type: Usable
|
|
EquipLevelMin: 60
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12817
|
|
AegisName: Old_Card_Album_
|
|
Name: Old Card Album
|
|
Type: Usable
|
|
EquipLevelMin: 80
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_CardAlbum,1);
|
|
getitem 12818,1;
|
|
- Id: 12818
|
|
AegisName: High_Weapon_Box_
|
|
Name: High Weapon Box
|
|
Type: Usable
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_Advanced_Weapons_Box,1);
|
|
getitem 12809,1;
|
|
- Id: 12819
|
|
AegisName: Zherlthsh_Tck_Box_
|
|
Name: Zherlthsh Tck Box
|
|
Type: Usable
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6184,1;
|
|
- Id: 12820
|
|
AegisName: Mao_Guai_Scroll
|
|
Name: Mao Guai Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2348,1800000;
|
|
- Id: 12821
|
|
AegisName: Loli_Ruri_Scroll
|
|
Name: Loli Ruri Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2349,1800000;
|
|
- Id: 12822
|
|
AegisName: Songpyun_Box50
|
|
Name: Songpyun Box50
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 663,50;
|
|
- Id: 12823
|
|
AegisName: Sedora_Scroll
|
|
Name: Sedora Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2350,1800000;
|
|
- Id: 12824
|
|
AegisName: Chepet_Scroll
|
|
Name: Chepet Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
mercenary_create 2351,1800000;
|
|
- Id: 12826
|
|
AegisName: Wind_Type_Scroll
|
|
Name: Wind Type Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Wind_Type_Scroll);
|
|
- Id: 12827
|
|
AegisName: Water_Type_Scroll
|
|
Name: Water Type Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Water_Type_Scroll);
|
|
- Id: 12828
|
|
AegisName: Fire_Type_Scroll
|
|
Name: Fire Type Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Fire_Type_Scroll);
|
|
- Id: 12829
|
|
AegisName: Earth_Type_Scroll
|
|
Name: Earth Type Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Earth_Type_Scroll);
|
|
- Id: 12831
|
|
AegisName: Potion_Box
|
|
Name: Potion Box
|
|
Type: Usable
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 545,100;
|
|
getitem 546,100;
|
|
getitem 547,100;
|
|
getitem 505,100;
|
|
- Id: 12834
|
|
AegisName: Undead_Egg
|
|
Name: Undead Egg
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12835
|
|
AegisName: Girls_Heart
|
|
Name: Girls Heart
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12837
|
|
AegisName: Wooden_Treasure_Box
|
|
Name: Wooden Treasure Box
|
|
Type: Usable
|
|
- Id: 12838
|
|
AegisName: Iron_Treasure_Box
|
|
Name: Iron Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 10
|
|
- Id: 12839
|
|
AegisName: bronze_Treasure_Box
|
|
Name: bronze Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 20
|
|
- Id: 12840
|
|
AegisName: Silver_Treasure_Box
|
|
Name: Silver Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 30
|
|
- Id: 12841
|
|
AegisName: Golden_Treasure_Box
|
|
Name: Golden Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 40
|
|
- Id: 12842
|
|
AegisName: Platinum_Treasure_Box
|
|
Name: Platinum Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 50
|
|
- Id: 12843
|
|
AegisName: Pearl_Treasure_Box
|
|
Name: Pearl Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 60
|
|
- Id: 12844
|
|
AegisName: Diamond_Treasure_Box
|
|
Name: Diamond Treasure Box
|
|
Type: Usable
|
|
EquipLevelMin: 70
|
|
- Id: 12845
|
|
AegisName: WOB_Amatsu
|
|
Name: Amatsu_Butterfly_Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "iz_ng01",26,57;
|
|
- Id: 12846
|
|
AegisName: Unripe_Apple2
|
|
Name: Little Unripe Apple
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
Script: |
|
|
pet 2398;
|
|
- Id: 12847
|
|
AegisName: Old_Equipment_Box
|
|
Name: Old Equipment Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12848
|
|
AegisName: Falcon_Pipe
|
|
Name: Falcon Flute
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
if (getskilllv("HT_FALCON")) {
|
|
if (!checkoption(Option_Wug) && !checkoption(Option_Wugrider))
|
|
setfalcon (!checkfalcon());
|
|
}
|
|
- Id: 12849
|
|
AegisName: Combination_Kit
|
|
Name: Combination Kit
|
|
Type: Usable
|
|
Buy: 40
|
|
Weight: 10
|
|
Script: |
|
|
if (BaseLevel < 20)
|
|
cooking 30;
|
|
else
|
|
cooking 11;
|
|
- Id: 12850
|
|
AegisName: Heaven_Scroll
|
|
Name: Heaven Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Heaven_Scroll);
|
|
- Id: 12851
|
|
AegisName: Vocation_Scroll
|
|
Name: Vocation Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Vocation_Scroll);
|
|
- Id: 12852
|
|
AegisName: Wisdom_Scroll
|
|
Name: Wisdom Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Wisdom_Scroll);
|
|
- Id: 12853
|
|
AegisName: Patron_Scroll
|
|
Name: Patron Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Patron_Scroll);
|
|
- Id: 12860
|
|
AegisName: Mommy_Day_Cake
|
|
Name: Mommy Day Cake
|
|
Type: Usable
|
|
Weight: 200
|
|
Script: |
|
|
percentheal 50,50;
|
|
skilleffect "HP_ASSUMPTIO",0;
|
|
sc_start SC_ASSUMPTIO,100000,5;
|
|
- Id: 12863
|
|
AegisName: Treasure_Chest_Summoned_II
|
|
Name: Treasure Chest Summoned II
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
monster "this",-1,-1,"--ja--",rand(1324,1363),1,"";
|
|
- Id: 12873
|
|
AegisName: TE_Potion_Box
|
|
Name: TE Potion Box
|
|
Type: Cash
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(11558,10);
|
|
- Id: 12874
|
|
AegisName: Frost_Giant_Blood
|
|
Name: Frost Giant Blood
|
|
Type: Usable
|
|
Weight: 100
|
|
Script: |
|
|
specialeffect2 EF_POTION_CON;
|
|
sc_start4 SC_GVG_GIANT,10000,3000,0,100,100;
|
|
- Id: 12875
|
|
AegisName: Golem_Stone
|
|
Name: Golem Stone
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
specialeffect2 EF_POTION_CON;
|
|
sc_start4 SC_GVG_GOLEM,10000,0,200,50,50;
|
|
- Id: 12876
|
|
AegisName: Elf_Tear_Stun
|
|
Name: Elf Tear Stun
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_STUN,10000,3000,0;
|
|
- Id: 12877
|
|
AegisName: Elf_Tear_Stone_Curse
|
|
Name: Elf Tear Stone Curse
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_STONE,10000,3000,0;
|
|
- Id: 12878
|
|
AegisName: Elf_Tear_Freezing
|
|
Name: Elf Tear Freezing
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_FREEZ,10000,3000,0;
|
|
- Id: 12879
|
|
AegisName: Elf_Tear_Sleep
|
|
Name: Elf Tear Sleep
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_SLEEP,10000,3000,0;
|
|
- Id: 12880
|
|
AegisName: Elf_Tear_Curse
|
|
Name: Elf Tear Curse
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_CURSE,10000,3000,0;
|
|
- Id: 12881
|
|
AegisName: Elf_Tear_Silence
|
|
Name: Elf Tear Silence
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_SILENCE,10000,3000,0;
|
|
- Id: 12882
|
|
AegisName: Elf_Tear_Blind
|
|
Name: Elf Tear Blind
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start2 SC_GVG_BLIND,10000,3000,0;
|
|
- Id: 12883
|
|
AegisName: Almighty
|
|
Name: Almighty
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_BASH3D;
|
|
sc_start SC_2011RWC_SCROLL,1800000,10;
|
|
- Id: 12884
|
|
AegisName: Infinite_Concentration_Potion
|
|
Name: Infinite Concentration Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,1800000,4;
|
|
- Id: 12885
|
|
AegisName: Infinite_Awakening_Potion
|
|
Name: Infinite Awakening Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION1,1800000,6;
|
|
- Id: 12886
|
|
AegisName: Infinite_Berserk_Potion
|
|
Name: Infinite Berserk Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION2,1800000,9;
|
|
- Id: 12887
|
|
AegisName: C_Wing_Of_Fly
|
|
Name: Infinite Flywing
|
|
Type: Usable
|
|
Flags:
|
|
NoConsume: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 12888
|
|
AegisName: Siege_Kit_Box
|
|
Name: Siege Kit Box
|
|
Type: Cash
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 12889
|
|
AegisName: Weapon_Box_Spear
|
|
Name: Weapon Box(Spear)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12890
|
|
AegisName: Weapon_Box_Mace
|
|
Name: Weapon Box(Mace)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12891
|
|
AegisName: Weapon_Box_Dagger
|
|
Name: Weapon Box(Dagger)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12892
|
|
AegisName: Weapon_Box_Axe
|
|
Name: Weapon Box(Axe)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12893
|
|
AegisName: Weapon_Box_Bow
|
|
Name: Weapon Box(Bow)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12894
|
|
AegisName: Weapon_Box_Sword
|
|
Name: Weapon Box(Sword)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12895
|
|
AegisName: Weapon_Box_Knuckle
|
|
Name: Weapon Box(Knuckle)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12896
|
|
AegisName: Weapon_Box_Book
|
|
Name: Weapon Box(Book)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12897
|
|
AegisName: Weapon_Box_Guitar
|
|
Name: Weapon Box(Guitar)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12898
|
|
AegisName: Weapon_Box_Whip
|
|
Name: Weapon Box(Whip)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12899
|
|
AegisName: Weapon_Box_Staff
|
|
Name: Weapon Box(Staff)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
- Id: 12900
|
|
AegisName: Battle_Manual_Box
|
|
Name: Battle Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,10;
|
|
- Id: 12901
|
|
AegisName: Insurance_Package
|
|
Name: Insurance Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,10;
|
|
- Id: 12902
|
|
AegisName: Bubble_Gum_Box
|
|
Name: Bubble Gum Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,10;
|
|
- Id: 12903
|
|
AegisName: Str_Dish_Box
|
|
Name: Steamed Tongue Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,10;
|
|
- Id: 12904
|
|
AegisName: Agi_Dish_Box
|
|
Name: Steamed Scorpion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,10;
|
|
- Id: 12905
|
|
AegisName: Int_Dish_Box
|
|
Name: Dragon Breath Cocktail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,10;
|
|
- Id: 12906
|
|
AegisName: Dex_Dish_Box
|
|
Name: Hwergelmir's Tonic Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,10;
|
|
- Id: 12907
|
|
AegisName: Luk_Dish_Box
|
|
Name: Nine Tail Dish Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,10;
|
|
- Id: 12908
|
|
AegisName: Vit_Dish_Box
|
|
Name: Stew Of Immortality Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,10;
|
|
- Id: 12909
|
|
AegisName: Kafra_Card_Box
|
|
Name: Kafra Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,10;
|
|
- Id: 12910
|
|
AegisName: Giant_Fly_Wing_Box
|
|
Name: Giant Fly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,10;
|
|
- Id: 12911
|
|
AegisName: Neuralizer_Box
|
|
Name: Neuralizer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12213,1;
|
|
- Id: 12912
|
|
AegisName: Convex_Mirror_Box
|
|
Name: Convex Mirror Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,10;
|
|
- Id: 12913
|
|
AegisName: Blessing_10_Scroll_Box
|
|
Name: Blessing 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,10;
|
|
- Id: 12914
|
|
AegisName: Inc_Agi_10_Scroll_Box
|
|
Name: Increase AGI 10 scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,10;
|
|
- Id: 12915
|
|
AegisName: Aspersio_5_Scroll_Box
|
|
Name: Aspersio 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Aspersio_5_Scroll_Box);
|
|
- Id: 12916
|
|
AegisName: Assumptio_5_Scroll_Box
|
|
Name: Assumptio 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,10;
|
|
- Id: 12917
|
|
AegisName: Wind_Walk_10_Scroll_Box
|
|
Name: Wind Walk 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,10;
|
|
- Id: 12918
|
|
AegisName: Adrenaline_Scroll_Box
|
|
Name: Adrenaline 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,10;
|
|
- Id: 12919
|
|
AegisName: Megaphone_Box
|
|
Name: Megaphone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,10;
|
|
- Id: 12920
|
|
AegisName: Enriched_Elunium_Box
|
|
Name: Enriched Elunium Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,10;
|
|
- Id: 12921
|
|
AegisName: Enriched_Oridecon_Box
|
|
Name: Enriched Oridecon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,10;
|
|
- Id: 12922
|
|
AegisName: Token_Of_Siegfried_Box
|
|
Name: Token of Siegfried Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,10;
|
|
- Id: 12923
|
|
AegisName: Pet_Egg_Scroll_Box1
|
|
Name: December Lucky Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box1);
|
|
- Id: 12924
|
|
AegisName: Pet_Egg_Scroll_Box2
|
|
Name: Pet Egg Box 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box2);
|
|
- Id: 12925
|
|
AegisName: Pet_Egg_Scroll1
|
|
Name: Kafra Item Mall Prize Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll1);
|
|
- Id: 12926
|
|
AegisName: Pet_Egg_Scroll2
|
|
Name: December Lucky Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll2);
|
|
- Id: 12927
|
|
AegisName: J_Aspersio_5_Scroll_Box
|
|
Name: Aspersio Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12928,10;
|
|
- Id: 12928
|
|
AegisName: J_Aspersio_5_Scroll
|
|
Name: Sacred Scroll
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "PR_ASPERSIO",5;
|
|
- Id: 12929
|
|
AegisName: Pet_Egg_Scroll_Box3
|
|
Name: Pet Egg Box 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box3);
|
|
- Id: 12930
|
|
AegisName: Pet_Egg_Scroll_Box4
|
|
Name: Pet Egg Box 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box4);
|
|
- Id: 12931
|
|
AegisName: Pet_Egg_Scroll_Box5
|
|
Name: Pet Egg Box 5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box5);
|
|
- Id: 12932
|
|
AegisName: Pet_Egg_Scroll3
|
|
Name: Episode 13.2 Key Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll3);
|
|
- Id: 12933
|
|
AegisName: Pet_Egg_Scroll4
|
|
Name: Summer Hat Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll4);
|
|
- Id: 12934
|
|
AegisName: Pet_Egg_Scroll5
|
|
Name: Pet Egg Scroll5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll5);
|
|
- Id: 12935
|
|
AegisName: Infiltrator_Box
|
|
Name: Infiltrator Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Infiltrator_Box);
|
|
- Id: 12936
|
|
AegisName: Muramasa_Box
|
|
Name: Muramasa Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Muramasa_Box);
|
|
- Id: 12937
|
|
AegisName: Excalibur_Box
|
|
Name: Excalibur Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Excalibur_Box);
|
|
- Id: 12938
|
|
AegisName: Combat_Knife_Box
|
|
Name: Combat Knife Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Combat_Knife_Box);
|
|
- Id: 12939
|
|
AegisName: Counter_Dagger_Box
|
|
Name: Dagger of Counter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Counter_Dagger_Box);
|
|
- Id: 12940
|
|
AegisName: Kaiser_Knuckle_Box
|
|
Name: Kaiser Knuckle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Kaiser_Knuckle_Box);
|
|
- Id: 12941
|
|
AegisName: Pole_Axe_Box
|
|
Name: Poll Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pole_Axe_Box);
|
|
- Id: 12942
|
|
AegisName: Mighty_Staff_Box
|
|
Name: Mighty Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mighty_Staff_Box);
|
|
- Id: 12943
|
|
AegisName: Right_Epsilon_Box
|
|
Name: Light Epsilon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Right_Epsilon_Box);
|
|
- Id: 12944
|
|
AegisName: Balistar_Box
|
|
Name: Ballista Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Balistar_Box);
|
|
- Id: 12945
|
|
AegisName: Diary_Of_Great_Sage_Box
|
|
Name: Sage's Diary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Diary_Of_Great_Sage_Box);
|
|
- Id: 12946
|
|
AegisName: Asura_Box
|
|
Name: Asura Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Asura_Box);
|
|
- Id: 12947
|
|
AegisName: Apple_Of_Archer_Box
|
|
Name: Apple of Archer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Apple_Of_Archer_Box);
|
|
- Id: 12948
|
|
AegisName: Bunny_Band_Box
|
|
Name: Bunny Band Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Bunny_Band_Box);
|
|
- Id: 12949
|
|
AegisName: Sahkkat_Box
|
|
Name: Sakkat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Sahkkat_Box);
|
|
- Id: 12950
|
|
AegisName: Lord_Circlet_Box
|
|
Name: Grand Circlet Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lord_Circlet_Box);
|
|
- Id: 12951
|
|
AegisName: Elven_Ears_Box
|
|
Name: Elven Ears Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Elven_Ears_Box);
|
|
- Id: 12952
|
|
AegisName: Steel_Flower_Box
|
|
Name: Steel Flower Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Steel_Flower_Box);
|
|
- Id: 12953
|
|
AegisName: Critical_Ring_Box
|
|
Name: Critical Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Critical_Ring_Box);
|
|
- Id: 12954
|
|
AegisName: Earring_Box
|
|
Name: Earring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Earring_Box);
|
|
- Id: 12955
|
|
AegisName: Ring_Box
|
|
Name: Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Ring_Box);
|
|
- Id: 12956
|
|
AegisName: Necklace_Box
|
|
Name: Necklace Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Necklace_Box);
|
|
- Id: 12957
|
|
AegisName: Glove_Box
|
|
Name: Glove Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Glove_Box);
|
|
- Id: 12958
|
|
AegisName: Brooch_Box
|
|
Name: Brooch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Brooch_Box);
|
|
- Id: 12959
|
|
AegisName: Rosary_Box
|
|
Name: Rosary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Rosary_Box);
|
|
- Id: 12960
|
|
AegisName: Safety_Ring_Box
|
|
Name: Safety Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Safety_Ring_Box);
|
|
- Id: 12961
|
|
AegisName: Vesper_Core01_Box
|
|
Name: Vesper Core 01 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vesper_Core01_Box);
|
|
- Id: 12962
|
|
AegisName: Vesper_Core02_Box
|
|
Name: Vesper Core 02 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vesper_Core02_Box);
|
|
- Id: 12963
|
|
AegisName: Vesper_Core03_Box
|
|
Name: Vesper Core 03 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vesper_Core03_Box);
|
|
- Id: 12964
|
|
AegisName: Vesper_Core04_Box
|
|
Name: Vesper Core 04 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vesper_Core04_Box);
|
|
- Id: 12965
|
|
AegisName: Emergency_Box1
|
|
Name: Emergency Level 1 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12968,1;
|
|
- Id: 12966
|
|
AegisName: Emergency_Box2
|
|
Name: Emergency Level 2 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12969,1;
|
|
- Id: 12967
|
|
AegisName: Emergency_Box3
|
|
Name: Emergency Level 3 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12970,1;
|
|
- Id: 12968
|
|
AegisName: Emergency_Scroll1
|
|
Name: Emergency Level 1 Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 300000
|
|
Status: Reuse_Limit_Recall
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",1;
|
|
- Id: 12969
|
|
AegisName: Emergency_Scroll2
|
|
Name: Emergency Level 2 Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 300000
|
|
Status: Reuse_Limit_Recall
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",2;
|
|
- Id: 12970
|
|
AegisName: Emergency_Scroll3
|
|
Name: Emergency Level 3 Scroll
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 300000
|
|
Status: Reuse_Limit_Recall
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"GD_ITEMEMERGENCYCALL",3;
|
|
- Id: 12971
|
|
AegisName: Teleport_Box1
|
|
Name: Teleport Scroll Box 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12977,10;
|
|
- Id: 12972
|
|
AegisName: Teleport_Box2
|
|
Name: Teleport Scroll Box 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12978,10;
|
|
- Id: 12973
|
|
AegisName: Teleport_Box3
|
|
Name: Teleport Scroll Box 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12979,10;
|
|
- Id: 12974
|
|
AegisName: Teleport_Box4
|
|
Name: Teleport Scroll Box 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12980,10;
|
|
- Id: 12975
|
|
AegisName: Teleport_Box5
|
|
Name: Teleport Scroll Box 5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12981,10;
|
|
- Id: 12976
|
|
AegisName: Teleport_Box6
|
|
Name: Teleport Scroll Box 6
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12982,10;
|
|
- Id: 12977
|
|
AegisName: Teleport_Scroll1
|
|
Name: Teleport Scroll 1
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",1;
|
|
- Id: 12978
|
|
AegisName: Teleport_Scroll2
|
|
Name: Teleport Scroll 2
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",2;
|
|
- Id: 12979
|
|
AegisName: Teleport_Scroll3
|
|
Name: Teleport Scroll 3
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",3;
|
|
- Id: 12980
|
|
AegisName: Teleport_Scroll4
|
|
Name: Teleport Scroll 4
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",4;
|
|
- Id: 12981
|
|
AegisName: Teleport_Scroll5
|
|
Name: Teleport Scroll 5
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",5;
|
|
- Id: 12982
|
|
AegisName: Teleport_Scroll6
|
|
Name: Teleport Scroll 6
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashTele",6;
|
|
- Id: 12983
|
|
AegisName: Pet_Egg_Scroll_Box6
|
|
Name: Pet Egg Scroll Box 6
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box6);
|
|
- Id: 12984
|
|
AegisName: Pet_Egg_Scroll_Box7
|
|
Name: Pet Egg Scroll Box 7
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box7);
|
|
- Id: 12985
|
|
AegisName: Pet_Egg_Scroll_Box8
|
|
Name: Pet Egg Scroll Box 8
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box8);
|
|
- Id: 12986
|
|
AegisName: Pet_Egg_Scroll_Box9
|
|
Name: Adventurer Pack Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box9);
|
|
- Id: 12987
|
|
AegisName: Pet_Egg_Scroll_Box10
|
|
Name: Pet Egg Scroll Box 10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box10);
|
|
- Id: 12988
|
|
AegisName: Pet_Egg_Scroll_Box11
|
|
Name: Pet Egg Scroll Box 11
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_Box11);
|
|
- Id: 12989
|
|
AegisName: Pet_Egg_Scroll6
|
|
Name: Pet Egg Scroll 6
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll6);
|
|
- Id: 12990
|
|
AegisName: Pet_Egg_Scroll7
|
|
Name: Pet Egg Scroll 7
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll7);
|
|
- Id: 12991
|
|
AegisName: Pet_Egg_Scroll8
|
|
Name: Party Hard Pack
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll8);
|
|
- Id: 12992
|
|
AegisName: Pet_Egg_Scroll9
|
|
Name: Adventurer Pack
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll9);
|
|
- Id: 12993
|
|
AegisName: Pet_Egg_Scroll10
|
|
Name: Pet Egg Scroll 10
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll10);
|
|
- Id: 12994
|
|
AegisName: Pet_Egg_Scroll11
|
|
Name: Pet Egg Scroll 11
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll11);
|
|
- Id: 12995
|
|
AegisName: White_Herb_Box
|
|
Name: White Herb Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 509,15;
|
|
- Id: 12996
|
|
AegisName: Blue_Herb_Box
|
|
Name: Blue Herb Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 510,15;
|
|
- Id: 12997
|
|
AegisName: Elunium_Box
|
|
Name: Elunium Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 985,5;
|
|
- Id: 12998
|
|
AegisName: Oridecon_Box
|
|
Name: Oridecon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 984,5;
|
|
- Id: 12999
|
|
AegisName: Branch_Of_Dead_Tree_Box
|
|
Name: Dead Branch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 604,3;
|
|
- Id: 13500
|
|
AegisName: Insurance60_Package
|
|
Name: Life Insurrance Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14500,10;
|
|
- Id: 13501
|
|
AegisName: Assorted_Scroll_Box
|
|
Name: Experience Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13502
|
|
AegisName: Drooping_Kitty_Box
|
|
Name: Refined Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5279,604800;
|
|
- Id: 13503
|
|
AegisName: Magestic_Goat_Box
|
|
Name: Baphomet Horns Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5280,604800;
|
|
- Id: 13504
|
|
AegisName: Deviruchi_Cap_Box
|
|
Name: Refined Deviruchi Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5281,604800;
|
|
- Id: 13505
|
|
AegisName: Executioner_Box
|
|
Name: Executioner Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1174,604800;
|
|
- Id: 13506
|
|
AegisName: Brood_Axe_Box
|
|
Name: Refined Bloody Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1373,604800;
|
|
- Id: 13507
|
|
AegisName: Tomahawk_Box
|
|
Name: Tomahawk Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1374,604800;
|
|
- Id: 13508
|
|
AegisName: Bow_Of_Rudra_Box
|
|
Name: Rudra Bow Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1729,604800;
|
|
- Id: 13509
|
|
AegisName: Cutlas_Box
|
|
Name: Cutlus Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13402,604800;
|
|
- Id: 13510
|
|
AegisName: Solar_Sword_Box
|
|
Name: Solar Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13403,604800;
|
|
- Id: 13511
|
|
AegisName: Sword_Breaker_Box
|
|
Name: Refined Swordbreaker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13024,604800;
|
|
- Id: 13512
|
|
AegisName: Mail_Breaker_Box
|
|
Name: Refined Mailbreaker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13025,604800;
|
|
- Id: 13513
|
|
AegisName: Moonlight_Sword_Box
|
|
Name: Moonlight Dagger Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13026,604800;
|
|
- Id: 13514
|
|
AegisName: Spanner_Box
|
|
Name: Wrench Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1534,604800;
|
|
- Id: 13515
|
|
AegisName: Grape_Box
|
|
Name: Grape Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 514,10;
|
|
- Id: 13516
|
|
AegisName: Royal_Jelly_Box
|
|
Name: Royal Jelly Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 526,5;
|
|
- Id: 13517
|
|
AegisName: Yggdrasilberry_Box
|
|
Name: Yggdrasil Berry Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 607,3;
|
|
- Id: 13518
|
|
AegisName: Weapon_Card_Scroll_Box
|
|
Name: Weapon Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13558,1;
|
|
- Id: 13519
|
|
AegisName: Armor_Card_Scroll_Box
|
|
Name: Armor Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13559,1;
|
|
- Id: 13520
|
|
AegisName: Helmet_Card_Scroll_Box
|
|
Name: Helmet Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13560,1;
|
|
- Id: 13521
|
|
AegisName: Hood_Card_Scroll_Box
|
|
Name: Garment Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13561,1;
|
|
- Id: 13522
|
|
AegisName: Hood_Card_Scroll_Box2
|
|
Name: Shield Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13562,1;
|
|
- Id: 13523
|
|
AegisName: Shoes_Card_Scroll_Box
|
|
Name: Shoes Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13563,1;
|
|
- Id: 13524
|
|
AegisName: Accy_Card_Scroll_Box
|
|
Name: Accessory Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13564,1;
|
|
- Id: 13525
|
|
AegisName: Zeny_Scroll_Box
|
|
Name: Zeny Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14508,1;
|
|
- Id: 13526
|
|
AegisName: Pet_Egg_Scroll_Box1_
|
|
Name: Pet Egg Scroll Box 12
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12925,30;
|
|
- Id: 13527
|
|
AegisName: Pet_Egg_Scroll_Box2_
|
|
Name: Pet Egg Scroll Box 13
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12926,30;
|
|
- Id: 13528
|
|
AegisName: Pet_Egg_Scroll_Box3_
|
|
Name: Pet Egg Scroll Box 14
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12932,30;
|
|
- Id: 13529
|
|
AegisName: Pet_Egg_Scroll_Box4_
|
|
Name: Pet Egg Scroll Box 15
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12933,30;
|
|
- Id: 13530
|
|
AegisName: Pet_Egg_Scroll_Box5_
|
|
Name: Pet Egg Scroll Box 16
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12934,30;
|
|
- Id: 13531
|
|
AegisName: Light_Red_Pot_Box
|
|
Name: Light Red Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 598,50;
|
|
- Id: 13532
|
|
AegisName: Light_Orange_Pot_Box
|
|
Name: Light Orange Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 599,50;
|
|
- Id: 13533
|
|
AegisName: Light_Yellow_Pot_Box
|
|
Name: Light Yellow Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11500,50;
|
|
- Id: 13534
|
|
AegisName: Light_White_Pot_Box
|
|
Name: Light White Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11501,50;
|
|
- Id: 13535
|
|
AegisName: Light_Center_Pot_Box
|
|
Name: Light Concentration Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14509,20;
|
|
- Id: 13536
|
|
AegisName: Light_Awakening_Pot_Box
|
|
Name: Light Awakening Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14510,20;
|
|
- Id: 13537
|
|
AegisName: Light_Berserk_Pot_Box
|
|
Name: Light Berserk Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14511,20;
|
|
- Id: 13538
|
|
AegisName: Meteor_10_Scroll_Box
|
|
Name: Meteor Storm Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14512,10;
|
|
- Id: 13539
|
|
AegisName: Storm_10_Scroll_Box
|
|
Name: Storm Gust Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14513,10;
|
|
- Id: 13540
|
|
AegisName: Vermilion_10_Scroll_Box
|
|
Name: Lord of Vermilion Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14514,10;
|
|
- Id: 13541
|
|
AegisName: Lex_Aeterna_Scroll_Box
|
|
Name: Lex Aeterna Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14515,10;
|
|
- Id: 13542
|
|
AegisName: Magnificat_5_Scroll_Box
|
|
Name: Magnificat Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14516,10;
|
|
- Id: 13543
|
|
AegisName: CP_Helm_Scroll_Box
|
|
Name: Chemical Protection Helm Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_CP_Helm_Scroll_Box);
|
|
- Id: 13544
|
|
AegisName: CP_Shield_Scroll_Box
|
|
Name: Chemical Protection Shield Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_CP_Shield_Scroll_Box);
|
|
- Id: 13545
|
|
AegisName: CP_Armor_Scroll_Box
|
|
Name: Chemical Protection Armor Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_CP_Armor_Scroll_Box);
|
|
- Id: 13546
|
|
AegisName: CP_Weapon_Scroll_Box
|
|
Name: Chemical Protection Weapon Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_CP_Weapon_Scroll_Box);
|
|
- Id: 13547
|
|
AegisName: Repair_Scroll_Box
|
|
Name: Repair Weapon Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Repair_Scroll_Box);
|
|
- Id: 13548
|
|
AegisName: Big_Bun_Box
|
|
Name: Big Bun Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14522,10;
|
|
- Id: 13549
|
|
AegisName: Pill__Box
|
|
Name: Pill Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14523,10;
|
|
- Id: 13550
|
|
AegisName: Superb_Fish_Slice_Box
|
|
Name: Fish Slice Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14524,10;
|
|
- Id: 13551
|
|
AegisName: Chewy_Ricecake_Box
|
|
Name: Chewy Ricecake Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14525,10;
|
|
- Id: 13552
|
|
AegisName: Oriental_Pastry_Box
|
|
Name: Pastry Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14526,10;
|
|
- Id: 13553
|
|
AegisName: Dun_Tele_Scroll1_Box
|
|
Name: Dungeon Teleport Scroll 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14527,5;
|
|
- Id: 13554
|
|
AegisName: Weapon_Card_Scroll_Box2
|
|
Name: Weapon Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13565,1;
|
|
- Id: 13555
|
|
AegisName: Weapon_Card_Scroll_Box3
|
|
Name: Weapon Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13566,1;
|
|
- Id: 13556
|
|
AegisName: Armor_Card_Scroll_Box2
|
|
Name: Armor Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13567,1;
|
|
- Id: 13557
|
|
AegisName: Accy_Card_Scroll_Box2
|
|
Name: Accessory Card Pet Egg Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13568,1;
|
|
- Id: 13558
|
|
AegisName: Weapon_Card_Scroll
|
|
Name: Weapon Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13559
|
|
AegisName: Armor_Card_Scroll
|
|
Name: Armor Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13560
|
|
AegisName: Helmet_Card_Scroll
|
|
Name: Helmet Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13561
|
|
AegisName: Hood_Card_Scroll
|
|
Name: Garment Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13562
|
|
AegisName: Hood_Card_Scroll2
|
|
Name: Shield Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13563
|
|
AegisName: Shoes_Card_Scroll
|
|
Name: Shoes Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13564
|
|
AegisName: Accy_Card_Scroll
|
|
Name: Accessory Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13565
|
|
AegisName: Weapon_Card_Scroll2
|
|
Name: Weapon Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13566
|
|
AegisName: Weapon_Card_Scroll3
|
|
Name: Weapon Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13567
|
|
AegisName: Armor_Card_Scroll2
|
|
Name: Armor Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13568
|
|
AegisName: Accy_Card_Scroll2
|
|
Name: Accessory Card Pet Egg Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13569
|
|
AegisName: PVP_Tele_Scroll_Box
|
|
Name: PVP Teleport Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14528,10;
|
|
- Id: 13570
|
|
AegisName: Giant_Fly_Wing_Box50
|
|
Name: Giant Fly Wing 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,50;
|
|
- Id: 13571
|
|
AegisName: Giant_Fly_Wing_Box100
|
|
Name: Giant Fly Wing 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,100;
|
|
- Id: 13572
|
|
AegisName: Dex_Dish_Box30
|
|
Name: Hwergelmir's Tonic 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,30;
|
|
- Id: 13573
|
|
AegisName: Dex_Dish_Box50
|
|
Name: Hwergelmir's Tonic 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,50;
|
|
- Id: 13574
|
|
AegisName: Luk_Dish_Box30
|
|
Name: Nine Tail Dish 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,30;
|
|
- Id: 13575
|
|
AegisName: Luk_Dish_Box50
|
|
Name: Nine Tail Dish 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,50;
|
|
- Id: 13576
|
|
AegisName: Inc_Agi_10_Box30
|
|
Name: Increase Agility Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,30;
|
|
- Id: 13577
|
|
AegisName: Inc_Agi_10_Box50
|
|
Name: Increase Agility Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,50;
|
|
- Id: 13578
|
|
AegisName: Vit_Dish_Box30
|
|
Name: Stew of Immortality 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,30;
|
|
- Id: 13579
|
|
AegisName: Vit_Dish_Box50
|
|
Name: Stew of Immortality 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,50;
|
|
- Id: 13580
|
|
AegisName: Insurance_Package30
|
|
Name: Life Insurrance 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,30;
|
|
- Id: 13581
|
|
AegisName: Insurance_Package50
|
|
Name: Life Insurrance 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,50;
|
|
- Id: 13582
|
|
AegisName: Convex_Mirror_Box5
|
|
Name: Convex Mirror 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,5;
|
|
- Id: 13583
|
|
AegisName: Convex_Mirror_Box30
|
|
Name: Convex Mirror 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,30;
|
|
- Id: 13584
|
|
AegisName: Blessing10_Box30
|
|
Name: Blessing Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,30;
|
|
- Id: 13585
|
|
AegisName: Blessing10_Box50
|
|
Name: Blessing Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,50;
|
|
- Id: 13586
|
|
AegisName: Adrenaline10_Box30
|
|
Name: Adrenaline Rush Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,30;
|
|
- Id: 13587
|
|
AegisName: Adrenaline10_Box50
|
|
Name: Adrenaline Rush Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,50;
|
|
- Id: 13588
|
|
AegisName: Assumptio_5_Box30
|
|
Name: Assumptio Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,30;
|
|
- Id: 13589
|
|
AegisName: Assumptio_5_Box50
|
|
Name: Assumptio Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,50;
|
|
- Id: 13590
|
|
AegisName: Aspersio_5_Box30
|
|
Name: Aspersio Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12217,30;
|
|
- Id: 13591
|
|
AegisName: Aspersio_5_Box50
|
|
Name: Aspersio Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12217,50;
|
|
- Id: 13592
|
|
AegisName: Agi_Dish_Box30
|
|
Name: Steamed Scorpion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,30;
|
|
- Id: 13593
|
|
AegisName: Agi_Dish_Box50
|
|
Name: Steamed Scorpion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,50;
|
|
- Id: 13594
|
|
AegisName: Wind_Walk10_Box30
|
|
Name: Wind Walk Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,30;
|
|
- Id: 13595
|
|
AegisName: Wind_Walk10_Box50
|
|
Name: Wind Walk Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,50;
|
|
- Id: 13596
|
|
AegisName: Int_Dish_Box30
|
|
Name: Dragon Breath Cocktail 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,30;
|
|
- Id: 13597
|
|
AegisName: Int_Dish_Box50
|
|
Name: Dragon Breath Cocktail 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,50;
|
|
- Id: 13598
|
|
AegisName: Battle_Manual_Box1
|
|
Name: Field Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,1;
|
|
- Id: 13599
|
|
AegisName: Battle_Manual_Box5
|
|
Name: Field Manual 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,5;
|
|
- Id: 13600
|
|
AegisName: Siegfried_Box5
|
|
Name: Token of Siegfried 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,5;
|
|
- Id: 13601
|
|
AegisName: Siegfried_Box20
|
|
Name: Token of Siegfried 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,20;
|
|
- Id: 13602
|
|
AegisName: Kafra_Card_Box30
|
|
Name: Kafra Card 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,30;
|
|
- Id: 13603
|
|
AegisName: Kafra_Card_Box50
|
|
Name: Kafra Card 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,50;
|
|
- Id: 13604
|
|
AegisName: Str_Dish_Box30
|
|
Name: Steamed Tongue 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,30;
|
|
- Id: 13605
|
|
AegisName: Str_Dish_Box50
|
|
Name: Steamed Tongue 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,50;
|
|
- Id: 13606
|
|
AegisName: Bubble_Gum_Box1
|
|
Name: Bubble Gum Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,1;
|
|
- Id: 13607
|
|
AegisName: Bubble_Gum_Box5
|
|
Name: Bubble Gum 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,5;
|
|
- Id: 13608
|
|
AegisName: Megaphone_Box1
|
|
Name: Megaphone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,1;
|
|
- Id: 13609
|
|
AegisName: Megaphone_Box5
|
|
Name: Megaphone 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,5;
|
|
- Id: 13610
|
|
AegisName: Enriched_Elunium_Box5
|
|
Name: Enriched Elunium 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
- Id: 13611
|
|
AegisName: Enriched_Oridecon_Box5
|
|
Name: Enriched Oridecon 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,5;
|
|
- Id: 13612
|
|
AegisName: Handcuff_Box
|
|
Name: Arrest Handcuffs Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2706,1;
|
|
- Id: 13613
|
|
AegisName: Super_Pet_Egg_Box1
|
|
Name: Super Pet Egg Box 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13617,1;
|
|
- Id: 13614
|
|
AegisName: Super_Pet_Egg_Box2
|
|
Name: Super Pet Egg Box 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13618,1;
|
|
- Id: 13615
|
|
AegisName: Super_Pet_Egg_Box3
|
|
Name: Super Pet Egg Box 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13619,1;
|
|
- Id: 13616
|
|
AegisName: Super_Pet_Egg_Box4
|
|
Name: Super Pet Egg Box 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13620,1;
|
|
- Id: 13617
|
|
AegisName: Super_Pet_Egg1
|
|
Name: Super Pet Egg 1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg1);
|
|
- Id: 13618
|
|
AegisName: Super_Pet_Egg2
|
|
Name: Super Pet Egg 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg2);
|
|
- Id: 13619
|
|
AegisName: Super_Pet_Egg3
|
|
Name: Super Pet Egg 3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg3);
|
|
- Id: 13620
|
|
AegisName: Super_Pet_Egg4
|
|
Name: Super Pet Egg 4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg4);
|
|
- Id: 13621
|
|
AegisName: Greed_Box30
|
|
Name: Greed Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14529,30;
|
|
- Id: 13622
|
|
AegisName: Greed_Box50
|
|
Name: Greed Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14529,50;
|
|
- Id: 13623
|
|
AegisName: Greed_Box100
|
|
Name: Greed Scroll 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14529,100;
|
|
- Id: 13624
|
|
AegisName: Flee_30_Scroll_Box
|
|
Name: Evasion Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14530,1;
|
|
- Id: 13625
|
|
AegisName: Accuracy_30_Scroll_Box
|
|
Name: Concentration Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14531,1;
|
|
- Id: 13626
|
|
AegisName: Super_Card_Pet_Egg_Box1
|
|
Name: Super Card Pet Egg Box 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13630,1;
|
|
- Id: 13627
|
|
AegisName: Super_Card_Pet_Egg_Box2
|
|
Name: Super Card Pet Egg Box 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13631,1;
|
|
- Id: 13628
|
|
AegisName: Super_Card_Pet_Egg_Box3
|
|
Name: Super Card Pet Egg Box 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13632,1;
|
|
- Id: 13629
|
|
AegisName: Super_Card_Pet_Egg_Box4
|
|
Name: Super Card Pet Egg Box 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13633,1;
|
|
- Id: 13630
|
|
AegisName: Super_Card_Pet_Egg1
|
|
Name: Super Card Pet Egg 1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Card_Pet_Egg1);
|
|
- Id: 13631
|
|
AegisName: Super_Card_Pet_Egg2
|
|
Name: Super Card Pet Egg 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Card_Pet_Egg2);
|
|
- Id: 13632
|
|
AegisName: Super_Card_Pet_Egg3
|
|
Name: Super Card Pet Egg 3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Card_Pet_Egg3);
|
|
- Id: 13633
|
|
AegisName: Super_Card_Pet_Egg4
|
|
Name: Super Card Pet Egg 4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Card_Pet_Egg4);
|
|
- Id: 13634
|
|
AegisName: Vigorgra_Package1
|
|
Name: 1 Hour Package Vol. 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package1);
|
|
- Id: 13635
|
|
AegisName: Vigorgra_Package2
|
|
Name: 1 Hour Package Vol. 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package2);
|
|
- Id: 13636
|
|
AegisName: Vigorgra_Package3
|
|
Name: 1 Hour Package Vol. 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package3);
|
|
- Id: 13637
|
|
AegisName: Vigorgra_Package4
|
|
Name: 1 Hour Package Vol. 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package4);
|
|
- Id: 13638
|
|
AegisName: Vigorgra_Package5
|
|
Name: 1 Hour Package Vol. 5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package5);
|
|
- Id: 13639
|
|
AegisName: Vigorgra_Package6
|
|
Name: 1 Hour Package Vol. 6
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package6);
|
|
- Id: 13640
|
|
AegisName: Vigorgra_Package7
|
|
Name: 2 Hour Package Vol. 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package7);
|
|
- Id: 13641
|
|
AegisName: Vigorgra_Package8
|
|
Name: 2 Hour Package Vol. 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package8);
|
|
- Id: 13642
|
|
AegisName: Vigorgra_Package9
|
|
Name: 2 Hour Package Vol. 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package9);
|
|
- Id: 13643
|
|
AegisName: Vigorgra_Package10
|
|
Name: 2 Hour Package Vol. 4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package10);
|
|
- Id: 13644
|
|
AegisName: Vigorgra_Package11
|
|
Name: 2 Hour Package Vol. 5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package11);
|
|
- Id: 13645
|
|
AegisName: Vigorgra_Package12
|
|
Name: 2 Hour Package Vol. 6
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Vigorgra_Package12);
|
|
- Id: 13646
|
|
AegisName: Infiltrator_Box1
|
|
Name: Refined Infiltrator Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1267,604800;
|
|
- Id: 13647
|
|
AegisName: Muramasa_Box1
|
|
Name: Refined Muramasa Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1173,604800;
|
|
- Id: 13648
|
|
AegisName: Excalibur_Box1
|
|
Name: Refined Excalibur Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13401,604800;
|
|
- Id: 13649
|
|
AegisName: Combat_Knife_Box1
|
|
Name: Refined Combat Knife Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13021,604800;
|
|
- Id: 13650
|
|
AegisName: Counter_Dagger_Box1
|
|
Name: Refined Dagger of Counter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13022,604800;
|
|
- Id: 13651
|
|
AegisName: Kaiser_Knuckle_Box1
|
|
Name: Refined Kaiser Knuckle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1817,604800;
|
|
- Id: 13652
|
|
AegisName: Pole_Axe_Box1
|
|
Name: Refined Pole Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1419,604800;
|
|
- Id: 13653
|
|
AegisName: Mighty_Staff_Box1
|
|
Name: Refined Mighty Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1623,604800;
|
|
- Id: 13654
|
|
AegisName: Right_Epsilon_Box1
|
|
Name: Refined Light Epsilon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1372,604800;
|
|
- Id: 13655
|
|
AegisName: Balistar_Box1
|
|
Name: Refined Ballista Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1728,604800;
|
|
- Id: 13656
|
|
AegisName: Diary_Of_Sage_Box1
|
|
Name: Refined Sage's Diary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1563,604800;
|
|
- Id: 13657
|
|
AegisName: Asura_Box1
|
|
Name: Refined Ashura Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13023,604800;
|
|
- Id: 13658
|
|
AegisName: Apple_Of_Archer_Box1
|
|
Name: Refined Apple of Archer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5265,1209600;
|
|
- Id: 13659
|
|
AegisName: Bunny_Band_Box1
|
|
Name: Refined Bunny Band Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5266,1209600;
|
|
- Id: 13660
|
|
AegisName: Sahkkat_Box1
|
|
Name: Refined Sakkat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5267,1209600;
|
|
- Id: 13661
|
|
AegisName: Lord_Circlet_Box1
|
|
Name: Refined Grand Circlet Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5268,1209600;
|
|
- Id: 13662
|
|
AegisName: Elven_Ears_Box1
|
|
Name: Refined Elven Ears Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2686,1209600;
|
|
- Id: 13663
|
|
AegisName: Steel_Flower_Box1
|
|
Name: Refined Romantic Flower Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2687,1209600;
|
|
- Id: 13664
|
|
AegisName: Critical_Ring_Box1
|
|
Name: Refined Critical Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2688,604800;
|
|
- Id: 13665
|
|
AegisName: Earring_Box1
|
|
Name: Refined Earring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2689,604800;
|
|
- Id: 13666
|
|
AegisName: Ring_Box1
|
|
Name: Refined Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2690,604800;
|
|
- Id: 13667
|
|
AegisName: Necklace_Box1
|
|
Name: Refined Necklace Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2691,604800;
|
|
- Id: 13668
|
|
AegisName: Glove_Box1
|
|
Name: Refined Glove Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2692,604800;
|
|
- Id: 13669
|
|
AegisName: Brooch_Box1
|
|
Name: Refined Brooch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2693,604800;
|
|
- Id: 13670
|
|
AegisName: Rosary_Box1
|
|
Name: Refined Rosary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2694,604800;
|
|
- Id: 13671
|
|
AegisName: Safety_Ring_Box1
|
|
Name: Refined Safety Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2695,604800;
|
|
- Id: 13672
|
|
AegisName: Vesper_Core01_Box1
|
|
Name: Refined Vesper Core 01 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2696,604800;
|
|
- Id: 13673
|
|
AegisName: Vesper_Core02_Box1
|
|
Name: Refined Vesper Core 02 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2697,604800;
|
|
- Id: 13674
|
|
AegisName: Vesper_Core03_Box1
|
|
Name: Refined Vesper Core 03 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2698,604800;
|
|
- Id: 13675
|
|
AegisName: Vesper_Core04_Box1
|
|
Name: Refined Vesper Core 04 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2699,604800;
|
|
- Id: 13676
|
|
AegisName: Drooping_Kitty_Box1
|
|
Name: Refined Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5279,1209600;
|
|
- Id: 13677
|
|
AegisName: Magestic_Goat_Box1
|
|
Name: Refined Majestic Goat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5280,1209600;
|
|
- Id: 13678
|
|
AegisName: Deviruchi_Cap_Box1
|
|
Name: Refined Deviruchi Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5281,1209600;
|
|
- Id: 13679
|
|
AegisName: Executioner_Box1
|
|
Name: Refined Executioner Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1174,604800;
|
|
- Id: 13680
|
|
AegisName: Brood_Axe_Box1
|
|
Name: Refined Bloody Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1373,604800;
|
|
- Id: 13681
|
|
AegisName: Tomahawk_Box1
|
|
Name: Refined Tomahawk Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1374,604800;
|
|
- Id: 13682
|
|
AegisName: Bow_Of_Rudra_Box1
|
|
Name: Refined Rudra Bow Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1729,604800;
|
|
- Id: 13683
|
|
AegisName: Cutlas_Box1
|
|
Name: Refined Cutlus Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13402,604800;
|
|
- Id: 13684
|
|
AegisName: Solar_Sword_Box1
|
|
Name: Refined Solar Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13403,604800;
|
|
- Id: 13685
|
|
AegisName: Sword_Breaker_Box1
|
|
Name: Refined Swordbreaker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13024,604800;
|
|
- Id: 13686
|
|
AegisName: Mail_Breaker_Box1
|
|
Name: Refined Mailbreaker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13025,604800;
|
|
- Id: 13687
|
|
AegisName: Moonlight_Sword_Box1
|
|
Name: Refined Moonlight Dagger Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13026,604800;
|
|
- Id: 13688
|
|
AegisName: Spanner_Box1
|
|
Name: Refined Wrench Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1534,604800;
|
|
- Id: 13689
|
|
AegisName: Bok_Choy_Box
|
|
Name: Bok Choy Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7766,100;
|
|
- Id: 13690
|
|
AegisName: Chung_E_Cake_Box
|
|
Name: Green Maiden Cake Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7767,100;
|
|
- Id: 13691
|
|
AegisName: Freyja_Overcoat_Box
|
|
Name: Freya's Clothes Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2369,604800;
|
|
- Id: 13692
|
|
AegisName: Freyja_Boots_Box
|
|
Name: Freya's Boots Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2428,604800;
|
|
- Id: 13693
|
|
AegisName: Freyja_Cape_Box
|
|
Name: Freya's Manteau Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2533,604800;
|
|
- Id: 13694
|
|
AegisName: Freyja_Crown_Box
|
|
Name: Freya's Crown Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5306,604800;
|
|
- Id: 13695
|
|
AegisName: Battle_Manual25_Box
|
|
Name: Field Manual 25% Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14532,10;
|
|
- Id: 13696
|
|
AegisName: Battle_Manual100_Box
|
|
Name: Field Manual 100% Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14533,10;
|
|
- Id: 13697
|
|
AegisName: J_Blessing10_Box
|
|
Name: Blessing Scroll 10 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,10;
|
|
- Id: 13698
|
|
AegisName: J_Inc_Agi10_Box
|
|
Name: Increase Agility Scroll 10 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,10;
|
|
- Id: 13699
|
|
AegisName: J_Wind_Walk10_Box
|
|
Name: Wind Walk Scroll 10 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,10;
|
|
- Id: 13700
|
|
AegisName: J_Adrenaline10_Box
|
|
Name: Adrenaline Rush Scroll 10 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,10;
|
|
- Id: 13701
|
|
AegisName: Pet_Egg_Scroll12
|
|
Name: Pet Egg Scroll 12
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll12);
|
|
- Id: 13702
|
|
AegisName: Pet_Egg_Scroll13
|
|
Name: Pet Egg Scroll 13
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll13);
|
|
- Id: 13703
|
|
AegisName: Pet_Egg_Scroll14
|
|
Name: Pet Egg Scroll 14
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll14);
|
|
- Id: 13704
|
|
AegisName: Super_Pet_Egg5
|
|
Name: Super Pet Egg 5
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg5);
|
|
- Id: 13705
|
|
AegisName: Super_Pet_Egg6
|
|
Name: Super Pet Egg 6
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg6);
|
|
- Id: 13706
|
|
AegisName: Super_Pet_Egg7
|
|
Name: Super Pet Egg 7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg7);
|
|
- Id: 13707
|
|
AegisName: Super_Pet_Egg8
|
|
Name: Super Pet Egg 8
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg8);
|
|
- Id: 13708
|
|
AegisName: Pet_Egg_Scroll_E
|
|
Name: Pet Egg Scroll E
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Pet_Egg_Scroll_E);
|
|
- Id: 13709
|
|
AegisName: BRO_Package_1
|
|
Name: BRO Package Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13710
|
|
AegisName: Max_Weight_Up_Box
|
|
Name: Gym Pass Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7776,10;
|
|
- Id: 13711
|
|
AegisName: Small_Life_Potion_Box
|
|
Name: Small Life Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,10;
|
|
- Id: 13712
|
|
AegisName: Small_Life_Potion_Box30
|
|
Name: Small Life Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,30;
|
|
- Id: 13713
|
|
AegisName: Small_Life_Potion_Box50
|
|
Name: Small Life Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,50;
|
|
- Id: 13714
|
|
AegisName: Med_Life_Potion_Box
|
|
Name: Medium Life Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,10;
|
|
- Id: 13715
|
|
AegisName: Med_Life_Potion_Box30
|
|
Name: Medium Life Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,30;
|
|
- Id: 13716
|
|
AegisName: Med_Life_Potion_Box50
|
|
Name: Medium Life Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,50;
|
|
- Id: 13717
|
|
AegisName: Abrasive_Box5
|
|
Name: Abrasive 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14536,5;
|
|
- Id: 13718
|
|
AegisName: Abrasive_Box10
|
|
Name: Abrasive 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14536,10;
|
|
- Id: 13719
|
|
AegisName: Regeneration_Box5
|
|
Name: Regeneration Potion 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14537,5;
|
|
- Id: 13720
|
|
AegisName: Regeneration_Box10
|
|
Name: Regeneration 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14537,10;
|
|
- Id: 13721
|
|
AegisName: Dun_Tele_Scroll_Box10
|
|
Name: Dungeon Teleport Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14527,10;
|
|
- Id: 13722
|
|
AegisName: Pecopeco_Hairband_Box
|
|
Name: Peco Peco Hairband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5286,1;
|
|
- Id: 13723
|
|
AegisName: Red_Glasses_Box
|
|
Name: Red Glasses Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5288,1;
|
|
- Id: 13724
|
|
AegisName: Whisper_Mask_Box
|
|
Name: Whisper Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5294,1;
|
|
- Id: 13725
|
|
AegisName: Ramen_Hat_Box
|
|
Name: Ramen Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Ramen_Hat_Box);
|
|
- Id: 13726
|
|
AegisName: Gold_Box_
|
|
Name: Golden Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7777,1;
|
|
- Id: 13727
|
|
AegisName: Silver_Box_
|
|
Name: Silver Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7778,1;
|
|
- Id: 13728
|
|
AegisName: Gold_Key1_Box
|
|
Name: Golden Key 1 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7779,1;
|
|
- Id: 13729
|
|
AegisName: Gold_Key5_Box
|
|
Name: Golden Key 5 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7779,5;
|
|
- Id: 13730
|
|
AegisName: Silver_Key1_Box
|
|
Name: Silver Key 1 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7780,1;
|
|
- Id: 13731
|
|
AegisName: Silver_Key5_Box
|
|
Name: Silver Key 5 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7780,5;
|
|
- Id: 13734
|
|
AegisName: Pecopeco_Hairband_Box1
|
|
Name: Peco Peco Hairband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5286,1;
|
|
- Id: 13735
|
|
AegisName: Red_Glasses_Box1
|
|
Name: Red Glasses Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5288,1;
|
|
- Id: 13736
|
|
AegisName: Whisper_Mask_Box1
|
|
Name: Whisper Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5294,1;
|
|
- Id: 13737
|
|
AegisName: Ramen_Hat_Box1
|
|
Name: Ramen Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5293,1;
|
|
- Id: 13738
|
|
AegisName: Glass_Of_Illusion_Box5
|
|
Name: Glass of Illusion 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14538,5;
|
|
- Id: 13739
|
|
AegisName: Glass_Of_Illusion_Box10
|
|
Name: Glass of Illusion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14538,10;
|
|
- Id: 13740
|
|
AegisName: Shadow_Armor_S_Box5
|
|
Name: Shadow Armor Scroll 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,5;
|
|
- Id: 13741
|
|
AegisName: Shadow_Armor_S_Box10
|
|
Name: Shadow Armor Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,10;
|
|
- Id: 13742
|
|
AegisName: Shadow_Armor_S_Box30
|
|
Name: Shadow Armor Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,30;
|
|
- Id: 13743
|
|
AegisName: Holy_Armor_S_Box5
|
|
Name: Holy Armor Scroll 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,5;
|
|
- Id: 13744
|
|
AegisName: Holy_Armor_S_Box10
|
|
Name: Holy Armor Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,10;
|
|
- Id: 13745
|
|
AegisName: Holy_Armor_S_Box30
|
|
Name: Holy Armor Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,30;
|
|
- Id: 13746
|
|
AegisName: S_Def_Potion_Box10
|
|
Name: Small Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,10;
|
|
- Id: 13747
|
|
AegisName: S_Def_Potion_Box30
|
|
Name: Small Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,30;
|
|
- Id: 13748
|
|
AegisName: S_Def_Potion_Box50
|
|
Name: Small Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,50;
|
|
- Id: 13749
|
|
AegisName: B_Def_Potion_Box10
|
|
Name: Big Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,10;
|
|
- Id: 13750
|
|
AegisName: B_Def_Potion_Box30
|
|
Name: Big Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,30;
|
|
- Id: 13751
|
|
AegisName: B_Def_Potion_Box50
|
|
Name: Big Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,50;
|
|
- Id: 13752
|
|
AegisName: S_Mdef_Potion_Box10
|
|
Name: Small Magic Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,10;
|
|
- Id: 13753
|
|
AegisName: S_Mdef_Potion_Box30
|
|
Name: Small Magic Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,30;
|
|
- Id: 13754
|
|
AegisName: S_Mdef_Potion_Box50
|
|
Name: Small Magic Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,50;
|
|
- Id: 13755
|
|
AegisName: B_Mdef_Potion_Box10
|
|
Name: Big Magic Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,10;
|
|
- Id: 13756
|
|
AegisName: B_Mdef_Potion_Box30
|
|
Name: Big Magic Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,30;
|
|
- Id: 13757
|
|
AegisName: B_Mdef_Potion_Box50
|
|
Name: Big Magic Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,50;
|
|
- Id: 13758
|
|
AegisName: Battle_Manual_X3_Box
|
|
Name: Field Manual 300% Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14545,20;
|
|
- Id: 13759
|
|
AegisName: In_Blue_Herb_Box
|
|
Name: Blue Herb Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 510,50;
|
|
- Id: 13760
|
|
AegisName: Honey_Box
|
|
Name: Honey Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 518,100;
|
|
- Id: 13761
|
|
AegisName: Empty_Bottle_Box
|
|
Name: Empty Bottle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 713,500;
|
|
- Id: 13762
|
|
AegisName: In_Royal_Jelly_Box
|
|
Name: Royal Jelly Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 526,70;
|
|
- Id: 13763
|
|
AegisName: 5_Anniversary_Coin_Box
|
|
Name: Coin Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2709,1;
|
|
- Id: 13764
|
|
AegisName: Battle_Manual_Box_TW
|
|
Name: Beginner's Field Manual 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7803,5;
|
|
- Id: 13765
|
|
AegisName: Certificate_TW_Box
|
|
Name: Certificate Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getitem 7804,1;*/
|
|
- Id: 13766
|
|
AegisName: Nagan_Box
|
|
Name: Refined Nagan Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13407,604800;
|
|
- Id: 13767
|
|
AegisName: Skewer_Box
|
|
Name: Refined Brocca Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1424,604800;
|
|
- Id: 13768
|
|
AegisName: Survival_Rod_Box
|
|
Name: Refined Survivor's Rod Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1628,604800;
|
|
- Id: 13769
|
|
AegisName: Quadrille_Box
|
|
Name: Refined Quadrille Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1537,604800;
|
|
- Id: 13770
|
|
AegisName: Great_Axe_Box
|
|
Name: Refined Great Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1378,604800;
|
|
- Id: 13771
|
|
AegisName: Bloody_Roar_Box
|
|
Name: Refined Bloody Roar Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1273,604800;
|
|
- Id: 13772
|
|
AegisName: Hardback_Box
|
|
Name: Refined Hardcover Book Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1567,604800;
|
|
- Id: 13773
|
|
AegisName: Fire_Brand_Box
|
|
Name: Refined Fireblend Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Fire_Brand_Box);
|
|
/*rentitem 13408,604800;*/
|
|
- Id: 13774
|
|
AegisName: Immaterial_Sword_Box
|
|
Name: Refined Immaterial Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13409,604800;
|
|
- Id: 13775
|
|
AegisName: Unholy_Touch_Box
|
|
Name: Refined Unholy Touch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1274,604800;
|
|
- Id: 13776
|
|
AegisName: Cloak_Of_Survival_Box
|
|
Name: Refined Survivor's Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2535,1209600;
|
|
- Id: 13777
|
|
AegisName: Masquerade_Box
|
|
Name: Refined Masquerade Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5326,1209600;
|
|
- Id: 13778
|
|
AegisName: Orc_Hero_Helm_Box
|
|
Name: Refined Helmet of Orc Hero Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5327,1209600;
|
|
- Id: 13779
|
|
AegisName: Evil_Wing_Ears_Box
|
|
Name: Refined Wing of Diablo Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5328,1209600;
|
|
- Id: 13780
|
|
AegisName: Dark_Blindfold_Box
|
|
Name: Refined Dark Blinder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5329,1209600;
|
|
- Id: 13781
|
|
AegisName: kRO_Drooping_Kitty_Box
|
|
Name: Refined Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5330,1209600;
|
|
- Id: 13782
|
|
AegisName: Corsair_Box
|
|
Name: Refined Corsair Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5331,1209600;
|
|
- Id: 13783
|
|
AegisName: Bloody_Iron_Ball_Box
|
|
Name: Refined Bloodied Shackle Ball Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2710,604800;
|
|
- Id: 13784
|
|
AegisName: Spiritual_Ring_Box
|
|
Name: Refined Spiritual Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2711,604800;
|
|
- Id: 13785
|
|
AegisName: Nagan_Box1
|
|
Name: Refined Nagan Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13407,86400;
|
|
- Id: 13786
|
|
AegisName: Skewer_Box1
|
|
Name: Refined Brocca Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1424,86400;
|
|
- Id: 13787
|
|
AegisName: Survival_Rod_Box1
|
|
Name: Refined Survivor's Rod Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1628,86400;
|
|
- Id: 13788
|
|
AegisName: Quadrille_Box1
|
|
Name: Refined Quadrille Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1537,86400;
|
|
- Id: 13789
|
|
AegisName: Great_Axe_Box1
|
|
Name: Refined Great Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1378,86400;
|
|
- Id: 13790
|
|
AegisName: Bloody_Roar_Box1
|
|
Name: Refined Bloody Roar Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1273,86400;
|
|
- Id: 13791
|
|
AegisName: Hardback_Box1
|
|
Name: Refined Hardcover Book Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1567,86400;
|
|
- Id: 13792
|
|
AegisName: Fire_Brand_Box1
|
|
Name: Refined Fireblend Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13408,86400;
|
|
- Id: 13793
|
|
AegisName: Immaterial_Sword_Box1
|
|
Name: Refined Immaterial Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13409,86400;
|
|
- Id: 13794
|
|
AegisName: Unholy_Touch_Box1
|
|
Name: Refined Unholy Touch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1274,86400;
|
|
- Id: 13795
|
|
AegisName: Cloak_Of_Survival_Box1
|
|
Name: Refined Survivor's Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2535,86400;
|
|
- Id: 13796
|
|
AegisName: Masquerade_Box1
|
|
Name: Refined Masquerade Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5326,86400;
|
|
- Id: 13797
|
|
AegisName: Orc_Hero_Helm_Box1
|
|
Name: Refined Helmet of Orc Hero Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5327,86400;
|
|
- Id: 13798
|
|
AegisName: Evil_Wing_Ears_Box1
|
|
Name: Refined Wing of Diablo Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5328,86400;
|
|
- Id: 13799
|
|
AegisName: Dark_Blindfold_Box1
|
|
Name: Refined Dark Blinder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5329,86400;
|
|
- Id: 13800
|
|
AegisName: kRO_Drooping_Kitty_Box1
|
|
Name: Refined Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5330,86400;
|
|
- Id: 13801
|
|
AegisName: Corsair_Box1
|
|
Name: Refined Corsair Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5331,86400;
|
|
- Id: 13802
|
|
AegisName: Bloody_Iron_Ball_Box1
|
|
Name: Refined Bloodied Shackle Ball Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2710,86400;
|
|
- Id: 13803
|
|
AegisName: Spiritual_Ring_Box1
|
|
Name: Refined Spiritual Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2711,86400;
|
|
- Id: 13804
|
|
AegisName: Fire_Cracker_Love_Box
|
|
Name: I Love You Firecracker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14546,10;
|
|
- Id: 13805
|
|
AegisName: Fire_Cracker_Wday_Box
|
|
Name: Whiteday Firecracker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14547,10;
|
|
- Id: 13806
|
|
AegisName: Fire_Cracker_Vday_Box
|
|
Name: Valentine's Day Firecracker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14548,10;
|
|
- Id: 13807
|
|
AegisName: Fire_Cracker_Bday_Box
|
|
Name: Birthday Firecracker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14549,10;
|
|
- Id: 13808
|
|
AegisName: Fire_Cracker_Xmas_Box
|
|
Name: Xmas Firecracker Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14550,10;
|
|
- Id: 13809
|
|
AegisName: Blue_Gemstone_Box
|
|
Name: Blue Gemstone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 717,100;
|
|
- Id: 13810
|
|
AegisName: Blue_Potion_Box
|
|
Name: Light Blue Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11502,25;
|
|
- Id: 13811
|
|
AegisName: Food_Box_Lv1
|
|
Name: Food Box Vol 1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14551,1;
|
|
getitem 14554,1;
|
|
getitem 14557,1;
|
|
getitem 14560,1;
|
|
getitem 14563,1;
|
|
getitem 14566,1;
|
|
- Id: 13812
|
|
AegisName: Food_Box_Lv2
|
|
Name: Food Box Vol 2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14552,1;
|
|
getitem 14555,1;
|
|
getitem 14558,1;
|
|
getitem 14561,1;
|
|
getitem 14564,1;
|
|
getitem 14567,1;
|
|
- Id: 13813
|
|
AegisName: Food_Box_Lv3
|
|
Name: Food Box Vol 3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14553,1;
|
|
getitem 14556,1;
|
|
getitem 14559,1;
|
|
getitem 14562,1;
|
|
getitem 14565,1;
|
|
getitem 14568,1;
|
|
- Id: 13814
|
|
AegisName: Indonesia_Box
|
|
Name: Healing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 503,100;
|
|
getitem 12684,10;
|
|
getitem 607,5;
|
|
- Id: 13815
|
|
AegisName: Knife_Goblin_Box
|
|
Name: Knife Goblin Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14569,10;
|
|
- Id: 13816
|
|
AegisName: Flail_Goblin_Box
|
|
Name: Flail Goblin Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14570,10;
|
|
- Id: 13817
|
|
AegisName: Hammer_Goblin_Box
|
|
Name: Hammer Goblin Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14571,10;
|
|
- Id: 13818
|
|
AegisName: Red_Deleter_Box
|
|
Name: Red Deleter Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14572,10;
|
|
- Id: 13819
|
|
AegisName: Diabolic_Box
|
|
Name: Diabolic Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14573,10;
|
|
- Id: 13820
|
|
AegisName: Wanderer_Box
|
|
Name: Wanderer Taming Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14574,10;
|
|
- Id: 13821
|
|
AegisName: Green_Apple_Box
|
|
Name: Green Apple Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7821,10;
|
|
- Id: 13822
|
|
AegisName: Whole_Barbecue_Box
|
|
Name: Barbeque Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7822,10;
|
|
- Id: 13823
|
|
AegisName: Meat_Veg_Skewer_Box
|
|
Name: Meat Skewer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7823,10;
|
|
- Id: 13824
|
|
AegisName: Spirit_Liquor_Box
|
|
Name: Spirit Liquor Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7824,10;
|
|
- Id: 13825
|
|
AegisName: Green_Box_
|
|
Name: Old Green Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 200
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 13826
|
|
AegisName: Power_Box1
|
|
Name: Power Box 1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 682,1;
|
|
getitem 12123,1;
|
|
getitem 12122,1;
|
|
- Id: 13827
|
|
AegisName: Power_Box2
|
|
Name: Power Box 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 683,1;
|
|
getitem 12123,1;
|
|
getitem 12122,1;
|
|
- Id: 13828
|
|
AegisName: Resist_Box1
|
|
Name: Resist Box 1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12118,1;
|
|
getitem 12119,1;
|
|
- Id: 13829
|
|
AegisName: Resist_Box2
|
|
Name: Resist Box 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12120,1;
|
|
getitem 12121,1;
|
|
- Id: 13830
|
|
AegisName: Stat_Boost1
|
|
Name: Stat Boost 1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCSTR,60000,5;
|
|
sc_start SC_INCAGI,60000,5;
|
|
sc_start SC_INCVIT,60000,5;
|
|
- Id: 13831
|
|
AegisName: Stat_Boost2
|
|
Name: Stat Boost 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCINT,60000,5;
|
|
sc_start SC_INCLUK,60000,5;
|
|
sc_start SC_INCDEX,60000,5;
|
|
- Id: 13832
|
|
AegisName: Stat_Boost3
|
|
Name: Stat Boost 3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCAGI,60000,5;
|
|
sc_start SC_INCVIT,60000,5;
|
|
sc_start SC_INCDEX,60000,5;
|
|
- Id: 13833
|
|
AegisName: Stat_Boost4
|
|
Name: Stat Boost 4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCINT,60000,5;
|
|
sc_start SC_INCVIT,60000,5;
|
|
sc_start SC_INCDEX,60000,5;
|
|
- Id: 13834
|
|
AegisName: Dun_Tele_Scroll2_Box5
|
|
Name: Dungeon Teleport Scroll II 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14581,5;
|
|
- Id: 13835
|
|
AegisName: Dun_Tele_Scroll2_Box10
|
|
Name: Dungeon Teleport Scroll II 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14581,10;
|
|
- Id: 13836
|
|
AegisName: Mbl_Str_Dish_Box
|
|
Name: Steamed Tongue Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,1;
|
|
- Id: 13837
|
|
AegisName: Mbl_Agi_Dish_Box
|
|
Name: Steamed Desert Scorpions Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12251,1;
|
|
- Id: 13838
|
|
AegisName: Mbl_Int_Dish_Box
|
|
Name: Dragon Breath Cocktail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,1;
|
|
- Id: 13839
|
|
AegisName: Mbl_Dex_Dish_Box
|
|
Name: Hwergelmir's Tonic Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12253,1;
|
|
- Id: 13840
|
|
AegisName: Mbl_Luk_Dish_Box
|
|
Name: Cooked Nine Tail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12254,1;
|
|
- Id: 13841
|
|
AegisName: Mbl_Vit_Dish_Box
|
|
Name: Immortal Stew Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12255,1;
|
|
- Id: 13842
|
|
AegisName: Mbl_Kafra_Card_Box
|
|
Name: Payment Statement for Kafra Employee Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12249,1;
|
|
- Id: 13843
|
|
AegisName: Mbl_Battle_Manual_Box
|
|
Name: Field Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14532,1;
|
|
- Id: 13844
|
|
AegisName: Heroic_Stone_Box
|
|
Name: Heroic Stone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7825,1;
|
|
- Id: 13845
|
|
AegisName: Mysterious_Travel_Sack1
|
|
Name: Mystery Travel Sack A
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mysterious_Travel_Sack1);
|
|
- Id: 13846
|
|
AegisName: Mysterious_Travel_Sack2
|
|
Name: Mystery Travel Sack B
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mysterious_Travel_Sack2);
|
|
- Id: 13847
|
|
AegisName: Mysterious_Travel_Sack3
|
|
Name: Mystery Travel Sack C
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mysterious_Travel_Sack3);
|
|
- Id: 13848
|
|
AegisName: Mysterious_Travel_Sack4
|
|
Name: Mystery Travel Sack D
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mysterious_Travel_Sack4);
|
|
- Id: 13849
|
|
AegisName: WOB_Box_Rune5
|
|
Name: Yellow Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14582,5;
|
|
- Id: 13850
|
|
AegisName: WOB_Box_Rune10
|
|
Name: Yellow Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14582,10;
|
|
- Id: 13851
|
|
AegisName: WOB_Box_Schawaltz5
|
|
Name: Green Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14583,5;
|
|
- Id: 13852
|
|
AegisName: WOB_Box_Schawaltz10
|
|
Name: Green Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14583,10;
|
|
- Id: 13853
|
|
AegisName: WOB_Box_Rachel5
|
|
Name: Red Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14584,5;
|
|
- Id: 13854
|
|
AegisName: WOB_Box_Rachel10
|
|
Name: Red Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14584,10;
|
|
- Id: 13855
|
|
AegisName: WOB_Box_Local5
|
|
Name: Blue Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14585,5;
|
|
- Id: 13856
|
|
AegisName: WOB_Box_Local10
|
|
Name: Blue Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14585,10;
|
|
- Id: 13857
|
|
AegisName: Spark_Candy_Box5
|
|
Name: Candy 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14586,5;
|
|
- Id: 13858
|
|
AegisName: Spark_Candy_Box10
|
|
Name: Candy 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14586,10;
|
|
- Id: 13859
|
|
AegisName: Directive_A_Envelope
|
|
Name: Directive Envelope A
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2734,1;
|
|
- Id: 13860
|
|
AegisName: Directive_B_Envelope
|
|
Name: Directive Envelope B
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2735,1;
|
|
- Id: 13861
|
|
AegisName: Mini_Battle_Manual_Box
|
|
Name: Small Field Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,4;
|
|
- Id: 13862
|
|
AegisName: Trial_Box
|
|
Name: Trial Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
- Id: 13863
|
|
AegisName: Repair_Scroll_Box10
|
|
Name: Repair Weapon Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14521,10;
|
|
getitem 1002,10;
|
|
getitem 998,10;
|
|
getitem 756,10;
|
|
getitem 999,10;
|
|
- Id: 13864
|
|
AegisName: Hockey_Mask_Box
|
|
Name: Hockey Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5314,604800;
|
|
- Id: 13865
|
|
AegisName: Observer_Box
|
|
Name: Observer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5315,604800;
|
|
- Id: 13866
|
|
AegisName: Flying_Angel_Box
|
|
Name: Flying Angel Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5210,1;
|
|
- Id: 13867
|
|
AegisName: Neko_Mimi_Box
|
|
Name: Neko Mimi Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5099,1;
|
|
- Id: 13868
|
|
AegisName: MFH_Box
|
|
Name: Moonlight Flower Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5214,1;
|
|
- Id: 13869
|
|
AegisName: Chick_Hat_Box
|
|
Name: Baby Chick Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5283,1;
|
|
- Id: 13870
|
|
AegisName: New_Style_Box
|
|
Name: Beauty Gift Certificate Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7622,1;
|
|
- Id: 13871
|
|
AegisName: Magician_Card_Box
|
|
Name: Mage Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Magician_Card_Box);
|
|
/*getitem 4327,1; getitem 4309,1; getitem 4325,1; getitem 4208,1; getitem 4258,1; getitem 4191,1;*/
|
|
- Id: 13872
|
|
AegisName: Acolyte_Card_Box
|
|
Name: Acolyte Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Acolyte_Card_Box);
|
|
/*getitem 4185,1; getitem 4312,1; getitem 4217,1; getitem 4280,1; getitem 4293,1;*/
|
|
- Id: 13873
|
|
AegisName: Archer_Card_Box
|
|
Name: Archer Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Archer_Card_Box);
|
|
/*getitem 4297,1; getitem 4234,1; getitem 4199,1; getitem 4178,1; getitem 4252,1;*/
|
|
- Id: 13874
|
|
AegisName: Swordman_Card_Box
|
|
Name: Swordman Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Swordman_Card_Box);
|
|
/*getitem 4319,1; getitem 4331,1; getitem 4220,1; getitem 4311,1; getitem 4246,1;*/
|
|
- Id: 13875
|
|
AegisName: Thief_Card_Box
|
|
Name: Thief Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Thief_Card_Box);
|
|
/*getitem 4230,1; getitem 4210,1; getitem 4257,1; getitem 4172,1; getitem 4272,1;*/
|
|
- Id: 13876
|
|
AegisName: Merchant_Card_Box
|
|
Name: Merchant Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Merchant_Card_Box);
|
|
/*getitem 4206,1; getitem 4281,1; getitem 4186,1; getitem 4233,1; getitem 4321,1;*/
|
|
- Id: 13877
|
|
AegisName: Clock_Tower_Card_Box
|
|
Name: Clock Tower Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4244,1;
|
|
getitem 4299,1;
|
|
getitem 4313,1;
|
|
getitem 4229,1;
|
|
- Id: 13878
|
|
AegisName: Geffenia_Card_Box
|
|
Name: Geffenia Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4218,1;
|
|
getitem 4269,1;
|
|
- Id: 13879
|
|
AegisName: Owl_Card_Box
|
|
Name: Owl Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4237,1;
|
|
getitem 4238,1;
|
|
- Id: 13880
|
|
AegisName: Ghost_Card_Box
|
|
Name: Ghost Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4193,1;
|
|
getitem 4294,1;
|
|
- Id: 13881
|
|
AegisName: Nightmare_Card_Box
|
|
Name: Nightmare Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4127,1;
|
|
getitem 4166,1;
|
|
- Id: 13882
|
|
AegisName: Curse_Card_Box
|
|
Name: Curse Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4076,4;
|
|
- Id: 13883
|
|
AegisName: Sleep_Card_Box
|
|
Name: Sleep Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4024,4;
|
|
- Id: 13884
|
|
AegisName: Freeze_Card_Box
|
|
Name: Freeze Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4055,4;
|
|
- Id: 13885
|
|
AegisName: Stun_Card_Box
|
|
Name: Stun Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4017,4;
|
|
- Id: 13886
|
|
AegisName: Silence_Card_Box
|
|
Name: Silence Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4057,4;
|
|
- Id: 13887
|
|
AegisName: Blind_Card_Box
|
|
Name: Blind Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4020,4;
|
|
- Id: 13888
|
|
AegisName: Chaos_Card_Box
|
|
Name: Chaos Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4104,4;
|
|
- Id: 13889
|
|
AegisName: Elunium_Box_
|
|
Name: Elunium Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 985,10;
|
|
- Id: 13890
|
|
AegisName: Oridecon_Box_
|
|
Name: Oridecon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 984,10;
|
|
- Id: 13891
|
|
AegisName: Fire_Converter_Box
|
|
Name: Fire Converter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12114,10;
|
|
- Id: 13892
|
|
AegisName: Water_Converter_Box
|
|
Name: Water Converter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12115,10;
|
|
- Id: 13893
|
|
AegisName: Wind_Converter_Box
|
|
Name: Wind Converter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12117,10;
|
|
- Id: 13894
|
|
AegisName: Earth_Converter_Box
|
|
Name: Earth Converter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12116,10;
|
|
- Id: 13895
|
|
AegisName: Starter_Pack
|
|
Name: Starter Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7229,2;
|
|
getitem 569,300;
|
|
getitem 504,20;
|
|
getitem 505,20;
|
|
getitem 7060,30;
|
|
getitem 2403,1;
|
|
getitem 5039,1;
|
|
getitem 2503,1;
|
|
getitem 2307,1;
|
|
getitem 616,1;
|
|
getitem 603,1;
|
|
getitem 617,1;
|
|
getitem 610,5;
|
|
getitem 604,5;
|
|
- Id: 13896
|
|
AegisName: Mimic_Summon_Box5
|
|
Name: Mimic Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12276,5;
|
|
- Id: 13897
|
|
AegisName: Disguise_Summon_Box5
|
|
Name: Disguise Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12277,5;
|
|
- Id: 13898
|
|
AegisName: Alice_Summon_Box5
|
|
Name: Alice Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12278,5;
|
|
- Id: 13899
|
|
AegisName: Mimic_Summon_Box10
|
|
Name: Mimic Summoning 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12276,10;
|
|
- Id: 13900
|
|
AegisName: Disguise_Summon_Box10
|
|
Name: Disguise Summoning 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12277,10;
|
|
- Id: 13901
|
|
AegisName: Alice_Summon_Box10
|
|
Name: Alice Summoning 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12278,10;
|
|
- Id: 13902
|
|
AegisName: Fish_Head_Hat_Box
|
|
Name: Fish Head Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5380,1;
|
|
- Id: 13903
|
|
AegisName: Santa_Poring_Hat_Box
|
|
Name: Santa Poring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5381,1;
|
|
- Id: 13904
|
|
AegisName: Bell_Ribbon_Box
|
|
Name: Bell Ribbon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5382,1;
|
|
- Id: 13905
|
|
AegisName: Hard_Core_Set_Box
|
|
Name: XM Hardcore Set Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Hard_Core_Set_Box);
|
|
/*getitem 12208,10; getitem 12209,10; getitem 12210,10;*/
|
|
- Id: 13906
|
|
AegisName: Kitty_Set_Box
|
|
Name: XM Kitty Set Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Kitty_Set_Box);
|
|
/*getitem 5230,1; getitem 5231,1; getitem 5232,1; getitem 5233,1; getitem 5234,1;*/
|
|
- Id: 13907
|
|
AegisName: Soft_Core_Set_Box
|
|
Name: XM Softcore Set Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Soft_Core_Set_Box);
|
|
/*getitem 12208,5; getitem 12209,5; getitem 12210,5;*/
|
|
- Id: 13908
|
|
AegisName: Deviruchi_Set_Box
|
|
Name: XM Deviruchi Set Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Deviruchi_Set_Box);
|
|
/*getitem 5227,1; getitem 5228,1; getitem 5229,1;*/
|
|
- Id: 13909
|
|
AegisName: MVP_Hunt_Box
|
|
Name: MVP Hunting Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_MVP_Hunt_Box);
|
|
/*getitem 7621,1; getitem 12210,1; getitem 12221,1; getitem 12214,3;*/
|
|
- Id: 13910
|
|
AegisName: Brewing_Box
|
|
Name: XM Brewing Set Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Brewing_Box);
|
|
/*getitem 12204,10; getitem 12205,10; getitem 12206,10;*/
|
|
- Id: 13911
|
|
AegisName: Xmas_Pet_Scroll
|
|
Name: Christmas Pet Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Xmas_Pet_Scroll);
|
|
- Id: 13912
|
|
AegisName: Party_Blessing_Box
|
|
Name: Party Blessing 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14588,10;
|
|
- Id: 13913
|
|
AegisName: Party_Inc_Agi_Box
|
|
Name: Party Increase Agi 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14589,10;
|
|
- Id: 13914
|
|
AegisName: Party_Assumptio_Box
|
|
Name: Party Assumptio 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14590,10;
|
|
- Id: 13915
|
|
AegisName: Love_Angel_Box
|
|
Name: Love Angel Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12287,604800;
|
|
- Id: 13916
|
|
AegisName: Squirrel_Box
|
|
Name: Squirrel Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12288,604800;
|
|
- Id: 13917
|
|
AegisName: Gogo_Box
|
|
Name: Gogo Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12289,604800;
|
|
- Id: 13918
|
|
AegisName: Drooping_W_Kitty_Box
|
|
Name: Koneko Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5372,1;
|
|
- Id: 13919
|
|
AegisName: L_Magestic_Goat_Box
|
|
Name: Baphomet Horns Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5374,1;
|
|
- Id: 13920
|
|
AegisName: Satanic_Chain_P_Box
|
|
Name: Flying Evil Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5376,1;
|
|
- Id: 13921
|
|
AegisName: Antique_Pipe_Box
|
|
Name: Gentleman's Pipe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5377,1;
|
|
- Id: 13922
|
|
AegisName: Rabbit_Ear_Hat_Box
|
|
Name: Bunny Top Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5378,1;
|
|
- Id: 13923
|
|
AegisName: Darkness_Helm_Box
|
|
Name: Dark Randgris Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5373,1;
|
|
- Id: 13924
|
|
AegisName: L_Orc_Hero_Helm_Box
|
|
Name: Orc Hero Headdress Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5375,1;
|
|
- Id: 13925
|
|
AegisName: Lucky_Scroll08
|
|
Name: Lucky Scroll08
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Scroll08);
|
|
- Id: 13926
|
|
AegisName: Crusader_Card_Box
|
|
Name: Crusader Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4371,1;
|
|
getitem 4311,1;
|
|
getitem 4319,1;
|
|
getitem 4331,1;
|
|
- Id: 13927
|
|
AegisName: Alchemist_Card_Box
|
|
Name: Alchemist Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4281,1;
|
|
getitem 4233,1;
|
|
getitem 4343,1;
|
|
getitem 4186,1;
|
|
getitem 4036,1;
|
|
- Id: 13928
|
|
AegisName: Rogue_Card_Box
|
|
Name: Rogue Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4039,1;
|
|
getitem 4210,1;
|
|
getitem 4257,1;
|
|
getitem 4230,1;
|
|
getitem 4348,1;
|
|
- Id: 13929
|
|
AegisName: Bard_Dancer_Card_Box
|
|
Name: Bard Dancer Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4297,1;
|
|
getitem 4234,1;
|
|
getitem 4178,1;
|
|
getitem 4381,1;
|
|
getitem 4252,1;
|
|
- Id: 13930
|
|
AegisName: Sage_Card_Box
|
|
Name: Sage card box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4382,1;
|
|
getitem 4258,1;
|
|
getitem 4325,1;
|
|
getitem 4208,1;
|
|
getitem 4327,1;
|
|
- Id: 13931
|
|
AegisName: Monk_Card_Box
|
|
Name: Monk Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4312,1;
|
|
getitem 4332,1;
|
|
getitem 4185,1;
|
|
getitem 4293,1;
|
|
- Id: 13932
|
|
AegisName: Sylph_Box
|
|
Name: Sylph Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4345,4;
|
|
- Id: 13933
|
|
AegisName: Undine_Box
|
|
Name: Undine Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4350,4;
|
|
- Id: 13934
|
|
AegisName: Salamander_Box
|
|
Name: Salamander Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4380,4;
|
|
- Id: 13935
|
|
AegisName: Soul_Box
|
|
Name: Soul Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4388,4;
|
|
- Id: 13936
|
|
AegisName: Noum_Bpx
|
|
Name: Gnome Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 4335,4;
|
|
- Id: 13937
|
|
AegisName: Robo_Eye_Box
|
|
Name: Robo Eye Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5325,1;
|
|
- Id: 13938
|
|
AegisName: Twin_Ribbon_Box
|
|
Name: Maiden's Twin Ribbon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5187,1;
|
|
- Id: 13939
|
|
AegisName: Diadem_Box
|
|
Name: Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5313,1;
|
|
- Id: 13940
|
|
AegisName: Siege_Tele_Scroll_Box
|
|
Name: WoE Teleport Scroll 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,100;
|
|
- Id: 13941
|
|
AegisName: Valentine_Scroll_TW
|
|
Name: Taiwan Valentine Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13942
|
|
AegisName: Love_Angel_Box_1m
|
|
Name: Love Angel Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14009,1;
|
|
- Id: 13943
|
|
AegisName: Squirrel_Box_1m
|
|
Name: Squirrel Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14010,1;
|
|
- Id: 13944
|
|
AegisName: Gogo_Box_1m
|
|
Name: Gogo Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14011,1;
|
|
- Id: 13945
|
|
AegisName: Br_SwordPackage
|
|
Name: Swordman Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_SwordPackage);
|
|
- Id: 13946
|
|
AegisName: Br_MagePackage
|
|
Name: Magician Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_MagePackage);
|
|
- Id: 13947
|
|
AegisName: Br_AcolPackage
|
|
Name: Acolyte Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_AcolPackage);
|
|
- Id: 13948
|
|
AegisName: Br_ArcherPackage
|
|
Name: Archer Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_ArcherPackage);
|
|
- Id: 13949
|
|
AegisName: Br_MerPackage
|
|
Name: Merchant Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_MerPackage);
|
|
- Id: 13950
|
|
AegisName: Br_ThiefPackage
|
|
Name: Thief Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Br_ThiefPackage);
|
|
- Id: 13951
|
|
AegisName: Wasteland_Outlaw_Box
|
|
Name: Western Outlaw Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13109,604800;
|
|
- Id: 13952
|
|
AegisName: Lever_Action_Rifle_Box
|
|
Name: Lever Action Rifle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13170,604800;
|
|
- Id: 13953
|
|
AegisName: All_In_One_Ring_Box
|
|
Name: All In One Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_All_In_One_Ring_Box);
|
|
/*rentitem All_In_One_Ring,604800;*/
|
|
- Id: 13954
|
|
AegisName: Spiritual_Tunic_Box
|
|
Name: Spiritual Tunic Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2384,604800;
|
|
- Id: 13955
|
|
AegisName: Recuperative_Armor_Box
|
|
Name: Recuvative Armor Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2385,604800;
|
|
- Id: 13956
|
|
AegisName: Shelter_Resistance_Box
|
|
Name: Shell Of Resistance Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2132,604800;
|
|
- Id: 13957
|
|
AegisName: Sylphid_Manteau_Box
|
|
Name: Silf Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2543,604800;
|
|
- Id: 13958
|
|
AegisName: Refresh_Shoes_Box
|
|
Name: Refresh Shoes Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2439,604800;
|
|
- Id: 13959
|
|
AegisName: Toast_Box
|
|
Name: Crunch Toast Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5391,604800;
|
|
- Id: 13960
|
|
AegisName: Name_Change_Coupon_Box
|
|
Name: Identification Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7623,1;
|
|
- Id: 13961
|
|
AegisName: Mojji_Box
|
|
Name: Mochi Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 554,5;
|
|
- Id: 13962
|
|
AegisName: Deprotai_Doll_Hat_Box
|
|
Name: Defolty Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5340,1;
|
|
- Id: 13963
|
|
AegisName: Claris_Doll_Hat_Box
|
|
Name: Glaris Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5341,1;
|
|
- Id: 13964
|
|
AegisName: Sorin_Doll_Hat_Box
|
|
Name: Sorin Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5342,1;
|
|
- Id: 13965
|
|
AegisName: Tayelin_Doll_Hat_Box
|
|
Name: Tailring Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5343,1;
|
|
- Id: 13966
|
|
AegisName: Binit_Doll_Hat_Box
|
|
Name: Vinit Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5344,1;
|
|
- Id: 13967
|
|
AegisName: Debril_Doll_Hat_Box
|
|
Name: W Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5345,1;
|
|
- Id: 13968
|
|
AegisName: Bubblegum_Lower_Box
|
|
Name: Bubble Gum Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5394,86400;
|
|
- Id: 13969
|
|
AegisName: Lucky_Clip_Box
|
|
Name: Lucky Clip Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2742,86400;
|
|
- Id: 13970
|
|
AegisName: Iron_10_Box
|
|
Name: Iron Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 998,10;
|
|
- Id: 13971
|
|
AegisName: Steel_10_Box
|
|
Name: Steel Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 999,10;
|
|
- Id: 13972
|
|
AegisName: Coal_10_Box
|
|
Name: Coal Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1003,10;
|
|
- Id: 13973
|
|
AegisName: Poison_Bottle_30_Box
|
|
Name: Poison Bottle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 678,30;
|
|
- Id: 13974
|
|
AegisName: TW_Scroll01
|
|
Name: Fisherman Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 13975
|
|
AegisName: Picture_Diary_Box
|
|
Name: Diary Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12304,604800;
|
|
- Id: 13976
|
|
AegisName: Mini_Heart_Box
|
|
Name: Mini Heart Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12305,604800;
|
|
- Id: 13977
|
|
AegisName: Newcomer_Box
|
|
Name: Freshman Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12306,604800;
|
|
- Id: 13978
|
|
AegisName: Kid_Box
|
|
Name: Kid Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12307,604800;
|
|
- Id: 13979
|
|
AegisName: Magic_Castle_Box
|
|
Name: Magic Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12308,604800;
|
|
- Id: 13980
|
|
AegisName: Bulging_Head_Box
|
|
Name: JJangu Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12309,604800;
|
|
- Id: 13981
|
|
AegisName: Picture_Diary_Box_1m
|
|
Name: Diary Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12304,2592000;
|
|
- Id: 13982
|
|
AegisName: Mini_Heart_Box_1m
|
|
Name: Mini Heart Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12305,2592000;
|
|
- Id: 13983
|
|
AegisName: Newcomer_Box_1m
|
|
Name: Freshman Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12306,2592000;
|
|
- Id: 13984
|
|
AegisName: Kid_Box_1m
|
|
Name: Kid Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12307,2592000;
|
|
- Id: 13985
|
|
AegisName: Magic_Castle_Box_1m
|
|
Name: Magic Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12308,2592000;
|
|
- Id: 13986
|
|
AegisName: Bulging_Head_Box_1m
|
|
Name: JJangu Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12309,2592000;
|
|
- Id: 13987
|
|
AegisName: Ori_Stone_5_Box
|
|
Name: Rough Oridecon 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 756,5;
|
|
- Id: 13988
|
|
AegisName: Ori_Stone_50_Box
|
|
Name: Rough Oridecon 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 756,50;
|
|
- Id: 13989
|
|
AegisName: Acidbomb_10_Box
|
|
Name: Acid Bomb 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Acidbomb_10_Box);
|
|
/*getitem 7135,10; getitem 7136,10;*/
|
|
- Id: 13990
|
|
AegisName: Job_Manual50_Box
|
|
Name: JOB Battle Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14592,10;
|
|
- Id: 13991
|
|
AegisName: Tiger_Mask_Box
|
|
Name: Tiger Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5098,1;
|
|
- Id: 13992
|
|
AegisName: Cat_Hat_Box
|
|
Name: Pussy Cat Bell Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5099,1;
|
|
- Id: 13993
|
|
AegisName: Alice_Doll_Box
|
|
Name: Alice Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5137,1;
|
|
- Id: 13994
|
|
AegisName: Speed_Up_Potion_Box5
|
|
Name: Speed Potion 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12016,5;
|
|
- Id: 13995
|
|
AegisName: Speed_Up_Potion_Box10
|
|
Name: Speed Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12016,10;
|
|
- Id: 13996
|
|
AegisName: Big_Bun_Box100
|
|
Name: Big Bun 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14522,100;
|
|
- Id: 13997
|
|
AegisName: Big_Bun_Box500
|
|
Name: Big Bun 500 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14522,500;
|
|
- Id: 13998
|
|
AegisName: Giant_Fly_Wing_Box500
|
|
Name: Giant Fly Wing 500 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,500;
|
|
- Id: 13999
|
|
AegisName: Pill__Box100
|
|
Name: Pill 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14523,100;
|
|
- Id: 14000
|
|
AegisName: Pill__Box500
|
|
Name: Pill 500 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14523,500;
|
|
- Id: 14001
|
|
AegisName: Basic_Siege_Supply_Box
|
|
Name: Recruit Siege Supply Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Basic_Siege_Supply_Box);
|
|
/*getitem 11503,25; getitem 11504,10;*/
|
|
- Id: 14002
|
|
AegisName: Adv_Siege_Supply_Box
|
|
Name: Veteran Siege Supply Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Adv_Siege_Supply_Box);
|
|
/*getitem 11503,50; getitem 11504,20;*/
|
|
- Id: 14003
|
|
AegisName: Elite_Siege_Supply_Box
|
|
Name: Elite Siege Supply Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Elite_Siege_Supply_Box);
|
|
/*getitem 11503,100; getitem 11504,50;*/
|
|
- Id: 14004
|
|
AegisName: Poison_Bottle_10_Box
|
|
Name: Poison Bottle 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 678,10;
|
|
- Id: 14005
|
|
AegisName: Poison_Bottle_5_Box
|
|
Name: Poison Bottle 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 678,5;
|
|
- Id: 14006
|
|
AegisName: F_Drooping_W_Kitty_Box
|
|
Name: Evolved Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5372,1;
|
|
- Id: 14007
|
|
AegisName: F_Rabbit_Ear_Hat_Box
|
|
Name: Evolved Rabbits Headband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5378,1;
|
|
- Id: 14008
|
|
AegisName: F_L_Orc_Hero_Helm_Box
|
|
Name: Evolved Helmet Of Orc Hero Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5375,1;
|
|
- Id: 14009
|
|
AegisName: F_Love_Angel_Box
|
|
Name: Love Angel Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12287,604800;
|
|
- Id: 14010
|
|
AegisName: F_Squirrel_Box
|
|
Name: Squillroll Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12288,604800;
|
|
- Id: 14011
|
|
AegisName: F_Gogo_Box
|
|
Name: Gogo Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12289,604800;
|
|
- Id: 14012
|
|
AegisName: F_Love_Angel_Box_1m
|
|
Name: Love Angel Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13915,2592000;
|
|
- Id: 14013
|
|
AegisName: F_Squirrel_Box_1m
|
|
Name: Squillroll Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13916,2592000;
|
|
- Id: 14014
|
|
AegisName: F_Gogo_Box_1m
|
|
Name: Gogo Magic Powder Box 30 Days
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13917,2592000;
|
|
- Id: 14015
|
|
AegisName: F_Wasteland_Outlaw_Box
|
|
Name: Western Outlaw Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13107,604800;
|
|
- Id: 14016
|
|
AegisName: F_Lever_Action_Rifle_Box
|
|
Name: Lever Action Rifle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13170,604800;
|
|
- Id: 14017
|
|
AegisName: F_All_In_One_Ring_Box
|
|
Name: All In One Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2741,604800;
|
|
- Id: 14018
|
|
AegisName: F_Spritual_Tunic_Box
|
|
Name: Spiritual Tunic Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2384,604800;
|
|
- Id: 14019
|
|
AegisName: F_Recuperative_Box
|
|
Name: Recuvative Armor Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2385,604800;
|
|
- Id: 14020
|
|
AegisName: F_Shelter_Resist_Box
|
|
Name: Shell Of Resistance Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2132,604800;
|
|
- Id: 14021
|
|
AegisName: F_Sylphid_Manteau_Box
|
|
Name: Silf Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2543,604800;
|
|
- Id: 14022
|
|
AegisName: F_Refresh_Shoes_Box
|
|
Name: Refresh Shoes Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2439,604800;
|
|
- Id: 14023
|
|
AegisName: F_Toast_Box
|
|
Name: Crunch Toast Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5391,604800;
|
|
- Id: 14024
|
|
AegisName: F_Robo_Eye_Box
|
|
Name: Robo Eye Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5325,1;
|
|
- Id: 14025
|
|
AegisName: F_Twin_Ribbon_Box
|
|
Name: Maiden's Twin Ribbon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5187,1;
|
|
- Id: 14026
|
|
AegisName: F_Diadem_Box
|
|
Name: Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5313,1;
|
|
- Id: 14027
|
|
AegisName: F_Fish_Head_Hat_Box
|
|
Name: Fish Head Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5380,1;
|
|
- Id: 14028
|
|
AegisName: F_Santa_Poring_Hat_Box
|
|
Name: SantaPoring Cap Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5381,1;
|
|
- Id: 14029
|
|
AegisName: F_Bell_Ribbon_Box
|
|
Name: Bell Ribbon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5382,1;
|
|
- Id: 14030
|
|
AegisName: F_Mimic_Scroll_Box5
|
|
Name: Mimic Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12276,5;
|
|
- Id: 14031
|
|
AegisName: F_Disguise_Scroll_Box5
|
|
Name: Disguise Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12277,5;
|
|
- Id: 14032
|
|
AegisName: F_Alice_Scroll_Box5
|
|
Name: Alice Summoning 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12278,5;
|
|
- Id: 14033
|
|
AegisName: F_Mimic_Scroll_Box10
|
|
Name: Mimic Summoning 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12276,10;
|
|
- Id: 14034
|
|
AegisName: F_Disguise_Scroll_Box10
|
|
Name: Disguise Summoning 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12277,10;
|
|
- Id: 14035
|
|
AegisName: F_Alice_Scroll_Box10
|
|
Name: Alice Summoning 10 Box)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12278,10;
|
|
- Id: 14036
|
|
AegisName: F_New_Style_Coupon_Box
|
|
Name: New Style Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7622,1;
|
|
- Id: 14037
|
|
AegisName: F_Repair_Scroll_Box
|
|
Name: Repair Weapon Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14521,5;
|
|
getitem 1002,5;
|
|
getitem 998,5;
|
|
getitem 756,5;
|
|
getitem 999,5;
|
|
- Id: 14038
|
|
AegisName: F_Repair_Scroll_Box10
|
|
Name: Repair Weapon Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14521,10;
|
|
getitem 1002,10;
|
|
getitem 998,10;
|
|
getitem 756,10;
|
|
getitem 999,10;
|
|
- Id: 14039
|
|
AegisName: F_Hockey_Mask_Box
|
|
Name: Hockey Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5314,604800;
|
|
- Id: 14040
|
|
AegisName: F_Observer_Box
|
|
Name: Observer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5315,604800;
|
|
- Id: 14041
|
|
AegisName: F_WOB_Rune_Box5
|
|
Name: Yellow Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14582,5;
|
|
- Id: 14042
|
|
AegisName: F_WOB_Rune_Box10
|
|
Name: Yellow Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14582,10;
|
|
- Id: 14043
|
|
AegisName: F_WOB_Schwaltz_Box5
|
|
Name: Green Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14583,5;
|
|
- Id: 14044
|
|
AegisName: F_WOB_Schwaltz_Box10
|
|
Name: Green Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14583,10;
|
|
- Id: 14045
|
|
AegisName: F_WOB_Rachel_Box5
|
|
Name: Red Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14584,5;
|
|
- Id: 14046
|
|
AegisName: F_WOB_Rachel_Box10
|
|
Name: Red Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14584,10;
|
|
- Id: 14047
|
|
AegisName: F_WOB_Local_Box5
|
|
Name: Blue Butterfly Wing 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14585,5;
|
|
- Id: 14048
|
|
AegisName: F_WOB_Local_Box10
|
|
Name: Blue Butterfly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14585,10;
|
|
- Id: 14049
|
|
AegisName: F_Spark_Candy_Box5
|
|
Name: Candy 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14586,5;
|
|
- Id: 14050
|
|
AegisName: F_Spark_Candy_Box10
|
|
Name: Candy 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14586,10;
|
|
- Id: 14051
|
|
AegisName: F_Dun_Tel_Scroll2_Box5
|
|
Name: Dungeon Teleport Scroll II 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14581,5;
|
|
- Id: 14052
|
|
AegisName: F_Dun_Tel_Scroll2_Box10
|
|
Name: Dungeon Teleport Scroll II 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14581,10;
|
|
- Id: 14053
|
|
AegisName: F_Little_Angel_Doll_Box
|
|
Name: Little Angel Doll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5324,1;
|
|
- Id: 14054
|
|
AegisName: F_Triple_Poring_Hat_Box
|
|
Name: Poring 3 Hats Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5255,1;
|
|
- Id: 14055
|
|
AegisName: F_Nagan_Box
|
|
Name: Refined Nagan Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13407,604800;
|
|
- Id: 14056
|
|
AegisName: F_Skewer_Box
|
|
Name: Refined Brocca Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1424,604800;
|
|
- Id: 14057
|
|
AegisName: F_Survival_Rod_Box
|
|
Name: Refined Survivor's Rod Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1628,604800;
|
|
- Id: 14058
|
|
AegisName: F_Quadrille_Box
|
|
Name: Refined Quadrille Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1537,604800;
|
|
- Id: 14059
|
|
AegisName: F_Great_Axe_Box
|
|
Name: Refined Great Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1378,604800;
|
|
- Id: 14060
|
|
AegisName: F_Bloody_Roar_Box
|
|
Name: Refined Bloody Roar Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1273,604800;
|
|
- Id: 14061
|
|
AegisName: F_Hardback_Box
|
|
Name: Refined Hardcover Book Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1567,604800;
|
|
- Id: 14062
|
|
AegisName: F_Fire_Brand_Box
|
|
Name: Refined Fireblend Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13408,604800;
|
|
- Id: 14063
|
|
AegisName: F_Immaterial_Sword_Box
|
|
Name: Refined Immaterial Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13409,604800;
|
|
- Id: 14064
|
|
AegisName: F_Unholy_Touch_Box
|
|
Name: Refined Unholy Touch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1274,604800;
|
|
- Id: 14065
|
|
AegisName: F_Clack_Of_Servival_Box
|
|
Name: Refined Survivor's Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2535,1209600;
|
|
- Id: 14066
|
|
AegisName: F_Masquerade_Box
|
|
Name: Refined Masquerade Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5326,1209600;
|
|
- Id: 14067
|
|
AegisName: F_Orc_Hero_Helm_Box
|
|
Name: Refined Helmet of Orc Hero Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5327,1209600;
|
|
- Id: 14068
|
|
AegisName: F_Ear_Of_Devil_Wing_Box
|
|
Name: Refined Wing of Diablo Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5328,1209600;
|
|
- Id: 14069
|
|
AegisName: F_Dark_Blindfold_Box
|
|
Name: Refined Dark Blinder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5329,1209600;
|
|
- Id: 14070
|
|
AegisName: F_K_Drooping_Kitty_Box
|
|
Name: Refined Drooping Cat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5330,1209600;
|
|
- Id: 14071
|
|
AegisName: F_Corsair_Box
|
|
Name: Refined Corsair Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5331,1209600;
|
|
- Id: 14072
|
|
AegisName: F_Bloody_Iron_Ball_Box
|
|
Name: Refined Bloodied Shackle Ball Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2710,604800;
|
|
- Id: 14073
|
|
AegisName: F_Spiritual_Ring_Box
|
|
Name: Refined Spiritual Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2711,604800;
|
|
- Id: 14074
|
|
AegisName: F_G_O_I_Box5
|
|
Name: Wine Glass of Illusion 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14538,5;
|
|
- Id: 14075
|
|
AegisName: F_G_O_I_Box10
|
|
Name: Glass Of Illusion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14538,10;
|
|
- Id: 14076
|
|
AegisName: F_Shadow_Armor_S_Box5
|
|
Name: Scroll of Shadow Armor 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,5;
|
|
- Id: 14077
|
|
AegisName: F_Shadow_Armor_S_Box10
|
|
Name: Scroll of Shadow Armor 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,10;
|
|
- Id: 14078
|
|
AegisName: F_Shadow_Armor_S_Box30
|
|
Name: Scroll of Shadow Armor 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14539,30;
|
|
- Id: 14079
|
|
AegisName: F_Holy_Armor_S_Box5
|
|
Name: Scroll of Holy Armor 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,5;
|
|
- Id: 14080
|
|
AegisName: F_Holy_Armor_S_Box10
|
|
Name: Scroll of Holy Armor 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,10;
|
|
- Id: 14081
|
|
AegisName: F_Holy_Armor_S_Box30
|
|
Name: Scroll of Holy Armor 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14540,30;
|
|
- Id: 14082
|
|
AegisName: FS_Def_Potion_Box10
|
|
Name: Small Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,10;
|
|
- Id: 14083
|
|
AegisName: FS_Def_Potion_Box30
|
|
Name: Small Physical Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,30;
|
|
- Id: 14084
|
|
AegisName: FS_Def_Potion_Box50
|
|
Name: Small Physical Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14541,50;
|
|
- Id: 14085
|
|
AegisName: FB_Def_Potion_Box10
|
|
Name: Big Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,10;
|
|
- Id: 14086
|
|
AegisName: FB_Def_Potion_Box30
|
|
Name: Large Physical Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,30;
|
|
- Id: 14087
|
|
AegisName: FB_Def_Potion_Box50
|
|
Name: Large Physical Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14542,50;
|
|
- Id: 14088
|
|
AegisName: FS_Mdef_Potion_Box10
|
|
Name: Small Magic Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,10;
|
|
- Id: 14089
|
|
AegisName: FS_Mdef_Potion_Box30
|
|
Name: Small Magical Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,30;
|
|
- Id: 14090
|
|
AegisName: FS_Mdef_Potion_Box50
|
|
Name: Small Magical Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14543,50;
|
|
- Id: 14091
|
|
AegisName: FB_Mdef_Potion_Box10
|
|
Name: Big Magic Defense Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,10;
|
|
- Id: 14092
|
|
AegisName: FB_Mdef_Potion_Box30
|
|
Name: Large Magical Defense Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,30;
|
|
- Id: 14093
|
|
AegisName: FB_Mdef_Potion_Box50
|
|
Name: Large Magical Defense Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14544,50;
|
|
- Id: 14094
|
|
AegisName: F_Flying_Angel_Box
|
|
Name: Flying Angel Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5210,1;
|
|
- Id: 14095
|
|
AegisName: F_Cat_Hat_Box
|
|
Name: Neko Mimi Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5099,1;
|
|
- Id: 14096
|
|
AegisName: F_M_F_H_Box
|
|
Name: Moonlight Flower Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5214,1;
|
|
- Id: 14097
|
|
AegisName: F_Chick_Hat_Box
|
|
Name: Baby Chick Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5283,1;
|
|
- Id: 14098
|
|
AegisName: F_Pecopeco_Hairband_Box
|
|
Name: Peco Peco Hairband Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5286,1209600;
|
|
- Id: 14099
|
|
AegisName: F_Red_Glasses_Box
|
|
Name: Red Glasses Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5288,1209600;
|
|
- Id: 14100
|
|
AegisName: F_Whisper_Mask_Box
|
|
Name: Whisper Mask Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5294,1209600;
|
|
- Id: 14101
|
|
AegisName: F_Ramen_Hat_Box
|
|
Name: Ramen Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5293,1209600;
|
|
- Id: 14102
|
|
AegisName: F_Dun_Tele_Scroll1_Box
|
|
Name: Dungeon Teleport Scroll 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14527,5;
|
|
- Id: 14103
|
|
AegisName: F_Max_Weight_Up_Box
|
|
Name: Gym Membership Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7776,1;
|
|
- Id: 14104
|
|
AegisName: F_S_Life_Potion_Box
|
|
Name: Small Life Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,10;
|
|
- Id: 14105
|
|
AegisName: F_S_Life_Potion_Box30
|
|
Name: Small Life Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,30;
|
|
- Id: 14106
|
|
AegisName: F_S_Life_Potion_Box50
|
|
Name: Small Life Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,50;
|
|
- Id: 14107
|
|
AegisName: F_M_Life_Potion_Box
|
|
Name: Medium Life Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,10;
|
|
- Id: 14108
|
|
AegisName: F_M_Life_Potion_Box30
|
|
Name: Large Life Potion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,30;
|
|
- Id: 14109
|
|
AegisName: F_M_Life_Potion_Box50
|
|
Name: Large Life Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14535,50;
|
|
- Id: 14110
|
|
AegisName: F_Abrasive_Box5
|
|
Name: Abrasive 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14536,5;
|
|
- Id: 14111
|
|
AegisName: F_Abrasive_Box10
|
|
Name: Abrasive 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14536,10;
|
|
- Id: 14112
|
|
AegisName: F_Regeneration_Box5
|
|
Name: Regeneration Potion 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14537,5;
|
|
- Id: 14113
|
|
AegisName: F_Regeneration_Box10
|
|
Name: Regeneration Potion 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14537,10;
|
|
- Id: 14114
|
|
AegisName: F_Dun_Tele_Scroll_Box10
|
|
Name: Dungeon Teleport Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14527,10;
|
|
- Id: 14115
|
|
AegisName: F_Infiltrator_Box
|
|
Name: Refined Infiltrator Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1267,604800;
|
|
- Id: 14116
|
|
AegisName: F_Muramasa_Box
|
|
Name: Refined Muramasa Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1173,604800;
|
|
- Id: 14117
|
|
AegisName: F_Excalibur_Box
|
|
Name: Refined Excalibur Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13401,604800;
|
|
- Id: 14118
|
|
AegisName: F_Combat_Knife_Box
|
|
Name: Combat Knife Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13021,604800;
|
|
- Id: 14119
|
|
AegisName: F_Counter_Dagger_Box
|
|
Name: Counter Dagger Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13022,604800;
|
|
- Id: 14120
|
|
AegisName: F_Kaiser_Knuckle_Box
|
|
Name: Refined Kaiser Knuckle Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1817,604800;
|
|
- Id: 14121
|
|
AegisName: F_Mighty_Staff_Box
|
|
Name: Refined Mighty Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1623,604800;
|
|
- Id: 14122
|
|
AegisName: F_Right_Epsilon_Box
|
|
Name: Light Epsilon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1372,604800;
|
|
- Id: 14123
|
|
AegisName: F_Balistar_Box
|
|
Name: Refined Ballista Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1728,604800;
|
|
- Id: 14124
|
|
AegisName: F_Diary_Of_Great_Sage
|
|
Name: Sage's Diary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1563,604800;
|
|
- Id: 14125
|
|
AegisName: F_Asura_Box
|
|
Name: Asura Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13023,604800;
|
|
- Id: 14126
|
|
AegisName: F_Apple_Of_Archer_Box
|
|
Name: Apple of Archer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5265,1209600;
|
|
- Id: 14127
|
|
AegisName: F_Bunny_Band_Box
|
|
Name: Bunny Band Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5266,1209600;
|
|
- Id: 14128
|
|
AegisName: F_Sahkkat_Box
|
|
Name: Refined Sakkat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5267,1209600;
|
|
- Id: 14129
|
|
AegisName: F_Lord_Circlet_Box
|
|
Name: Refined Grand Circlet Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5268,1209600;
|
|
- Id: 14130
|
|
AegisName: F_Elven_Ears_Box
|
|
Name: Elven Ears Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2686,1209600;
|
|
- Id: 14131
|
|
AegisName: F_Steel_Flower_Box
|
|
Name: Steel Flower Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2687,1209600;
|
|
- Id: 14132
|
|
AegisName: F_Critical_Ring_Box
|
|
Name: Critical Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2688,604800;
|
|
- Id: 14133
|
|
AegisName: F_Earring_Box
|
|
Name: Earring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2689,604800;
|
|
- Id: 14134
|
|
AegisName: F_Ring_Box
|
|
Name: Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2690,604800;
|
|
- Id: 14135
|
|
AegisName: F_Necklace_Box
|
|
Name: Necklace Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2691,604800;
|
|
- Id: 14136
|
|
AegisName: F_Glove_Box
|
|
Name: Glove Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2692,604800;
|
|
- Id: 14137
|
|
AegisName: F_Brooch_Box
|
|
Name: Brooch Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2693,604800;
|
|
- Id: 14138
|
|
AegisName: F_Rosary_Box
|
|
Name: Rosary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2694,604800;
|
|
- Id: 14139
|
|
AegisName: F_Safety_Ring_Box
|
|
Name: Safety Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2695,604800;
|
|
- Id: 14140
|
|
AegisName: F_Vesper_Core_Box01
|
|
Name: Refined Vesper Core 01 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2696,604800;
|
|
- Id: 14141
|
|
AegisName: F_Vesper_Core_Box02
|
|
Name: Refined Vesper Core 02 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2697,604800;
|
|
- Id: 14142
|
|
AegisName: F_Vesper_Core_Box03
|
|
Name: Refined Vesper Core 03 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2698,604800;
|
|
- Id: 14143
|
|
AegisName: F_Vesper_Core_Box04
|
|
Name: Refined Vesper Core 04 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2699,604800;
|
|
- Id: 14144
|
|
AegisName: F_Vigorgra_Package1
|
|
Name: Vigorgra Box1
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,2;
|
|
getitem 12251,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14145
|
|
AegisName: F_Vigorgra_Package2
|
|
Name: Vigorgra Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,2;
|
|
getitem 12255,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14146
|
|
AegisName: F_Vigorgra_Package3
|
|
Name: Vigorgra Box3
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,2;
|
|
getitem 12253,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14147
|
|
AegisName: F_Vigorgra_Package4
|
|
Name: Vigorgra Box4
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,2;
|
|
getitem 12255,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14148
|
|
AegisName: F_Vigorgra_Package5
|
|
Name: Vigorgra Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,2;
|
|
getitem 12250,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12216,15;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14149
|
|
AegisName: F_Vigorgra_Package6
|
|
Name: Vigorgra Box6
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,2;
|
|
getitem 12251,2;
|
|
getitem 12208,2;
|
|
getitem 12215,15;
|
|
getitem 12217,20;
|
|
getitem 12211,1;
|
|
getitem 7621,1;
|
|
- Id: 14150
|
|
AegisName: F_Vigorgra_Package7
|
|
Name: Vigorgra Box7
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,4;
|
|
getitem 12251,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12216,30;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14151
|
|
AegisName: F_Vigorgra_Package8
|
|
Name: Vigorgra Box8
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,4;
|
|
getitem 12255,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12216,30;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14152
|
|
AegisName: F_Vigorgra_Package9
|
|
Name: Start your Journey Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,4;
|
|
getitem 12253,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12216,30;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14153
|
|
AegisName: F_Vigorgra_Package10
|
|
Name: Siege Mode Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,4;
|
|
getitem 12255,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12216,30;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14154
|
|
AegisName: F_Vigorgra_Package11
|
|
Name: 1 Hour Survival Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12252,4;
|
|
getitem 12250,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12216,30;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14155
|
|
AegisName: F_Vigorgra_Package12
|
|
Name: Weekend Hunting Pack
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12250,4;
|
|
getitem 12251,4;
|
|
getitem 12208,4;
|
|
getitem 12215,30;
|
|
getitem 12217,40;
|
|
getitem 12211,2;
|
|
getitem 7621,2;
|
|
- Id: 14156
|
|
AegisName: F_Battle_Manual_Box
|
|
Name: Battle Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,10;
|
|
- Id: 14157
|
|
AegisName: F_Insurance_Package
|
|
Name: Insurance Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,10;
|
|
- Id: 14158
|
|
AegisName: F_Bubble_Gum_Box
|
|
Name: Bubble Gum Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,10;
|
|
- Id: 14159
|
|
AegisName: F_Str_Dish_Box
|
|
Name: Steamed Tongue Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,10;
|
|
- Id: 14160
|
|
AegisName: F_Agi_Dish_Box
|
|
Name: Steamed Scorpion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,10;
|
|
- Id: 14161
|
|
AegisName: F_Int_Dish_Box
|
|
Name: Dragon Breath Cocktail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,10;
|
|
- Id: 14162
|
|
AegisName: F_Dex_Dish_Box
|
|
Name: Hwergelmir's Tonic Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,10;
|
|
- Id: 14163
|
|
AegisName: F_Luk_Dish_Box
|
|
Name: Nine Tail Dish Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,10;
|
|
- Id: 14164
|
|
AegisName: F_Vit_Dish_Box
|
|
Name: Stew Of Immortality Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,10;
|
|
- Id: 14165
|
|
AegisName: F_Kafra_Card_Box
|
|
Name: Kafra Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,10;
|
|
- Id: 14166
|
|
AegisName: F_Giant_Fly_Wing_Box
|
|
Name: Giant Fly Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,10;
|
|
- Id: 14167
|
|
AegisName: F_Neuralizer_Box
|
|
Name: Neuralizer Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12213,1;
|
|
- Id: 14168
|
|
AegisName: F_Convex_Mirror_Box
|
|
Name: Convex Mirror Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,10;
|
|
- Id: 14169
|
|
AegisName: F_Blessing_10_Scroll_Box
|
|
Name: Blessing 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,10;
|
|
- Id: 14170
|
|
AegisName: F_Inc_Agi_10_Scroll_Box
|
|
Name: Increase AGI 10 scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,10;
|
|
- Id: 14171
|
|
AegisName: F_Aspersio_5_Scroll_Box
|
|
Name: Aspersio 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12217,10;
|
|
getitem 523,10;
|
|
- Id: 14172
|
|
AegisName: F_Assumptio_5_Scroll_Box
|
|
Name: Assumptio 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,10;
|
|
- Id: 14173
|
|
AegisName: F_Wind_Walk_10_Scroll_Box
|
|
Name: Wind Walk 10 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,10;
|
|
- Id: 14174
|
|
AegisName: F_Adrenaline_Scroll_Box
|
|
Name: Adrenaline 5 Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,10;
|
|
- Id: 14175
|
|
AegisName: F_Megaphone_Box
|
|
Name: Megaphone 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,10;
|
|
- Id: 14176
|
|
AegisName: F_Enriched_Elunium_Box
|
|
Name: Enriched Elunium Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,10;
|
|
- Id: 14177
|
|
AegisName: F_Enriched_Oridecon_Box
|
|
Name: Enriched Oridecon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,10;
|
|
- Id: 14178
|
|
AegisName: F_Token_Of_Siegfried_Box
|
|
Name: Token of Siegfried Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,10;
|
|
- Id: 14179
|
|
AegisName: F_Giant_Fly_Wing_Box50
|
|
Name: Giant Fly Wing 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,50;
|
|
- Id: 14180
|
|
AegisName: F_Giant_Fly_Wing_Box100
|
|
Name: Giant Fly Wing 100 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12212,100;
|
|
- Id: 14181
|
|
AegisName: F_Dex_Dish_Box30
|
|
Name: Hwergelmir's Tonic 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,30;
|
|
- Id: 14182
|
|
AegisName: F_Dex_Dish_Box50
|
|
Name: Hwergelmir's Tonic 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,50;
|
|
- Id: 14183
|
|
AegisName: F_Luk_Dish_Box30
|
|
Name: Nine Tail Dish 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,30;
|
|
- Id: 14184
|
|
AegisName: F_Luk_Dish_Box50
|
|
Name: Nine Tail Dish 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,50;
|
|
- Id: 14185
|
|
AegisName: F_Inc_Agi_10_Box30
|
|
Name: Increase Agility Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,30;
|
|
- Id: 14186
|
|
AegisName: F_Inc_Agi_10_Box50
|
|
Name: Increase Agility Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12216,50;
|
|
- Id: 14187
|
|
AegisName: F_Vit_Dish_Box30
|
|
Name: Stew of Immortality 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,30;
|
|
- Id: 14188
|
|
AegisName: F_Vit_Dish_Box50
|
|
Name: Stew of Immortality 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,50;
|
|
- Id: 14189
|
|
AegisName: F_Insurance_Package30
|
|
Name: Life Insurrance 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,30;
|
|
- Id: 14190
|
|
AegisName: F_Insurance_Package50
|
|
Name: Life Insurrance 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12209,50;
|
|
- Id: 14191
|
|
AegisName: F_Convex_Mirror_Box5
|
|
Name: Convex Mirror 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,5;
|
|
- Id: 14192
|
|
AegisName: F_Convex_Mirror_Box30
|
|
Name: Convex Mirror 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12214,30;
|
|
- Id: 14193
|
|
AegisName: F_Blessing10_Box30
|
|
Name: Blessing Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,30;
|
|
- Id: 14194
|
|
AegisName: F_Blessing10_Box50
|
|
Name: Lv10 Blessing Scroll Box 50
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12215,50;
|
|
- Id: 14195
|
|
AegisName: F_Adrenaline10_Box30
|
|
Name: Adrenaline Rush Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,30;
|
|
- Id: 14196
|
|
AegisName: F_Adrenaline10_Box50
|
|
Name: Adrenaline Rush Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12220,50;
|
|
- Id: 14197
|
|
AegisName: F_Assumptio_5_Box30
|
|
Name: Assumptio Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,30;
|
|
- Id: 14198
|
|
AegisName: F_Assumptio_5_Box50
|
|
Name: Lv5 Assumptio Scroll Box 50
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12218,50;
|
|
- Id: 14199
|
|
AegisName: F_Aspersio_5_Box30
|
|
Name: Aspersio Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12217,30;
|
|
getitem 523,30;
|
|
- Id: 14200
|
|
AegisName: F_Aspersio_5_Box50
|
|
Name: Aspersio Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12217,50;
|
|
getitem 523,50;
|
|
- Id: 14201
|
|
AegisName: F_Agi_Dish_Box30
|
|
Name: Steamed Scorpion 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,30;
|
|
- Id: 14202
|
|
AegisName: F_Agi_Dish_Box50
|
|
Name: Steamed Scorpion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,50;
|
|
- Id: 14203
|
|
AegisName: F_Wind_Walk10_Box30
|
|
Name: Wind Walk Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,30;
|
|
- Id: 14204
|
|
AegisName: F_Wind_Walk10_Box50
|
|
Name: Wind Walk Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12219,50;
|
|
- Id: 14205
|
|
AegisName: F_Int_Dish_Box30
|
|
Name: Dragon Breath Cocktail 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,30;
|
|
- Id: 14206
|
|
AegisName: F_Int_Dish_Box50
|
|
Name: Dragon Breath Cocktail 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,50;
|
|
- Id: 14207
|
|
AegisName: F_Battle_Manual_Box1
|
|
Name: Field Manual Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,1;
|
|
- Id: 14208
|
|
AegisName: F_Battle_Manual_Box5
|
|
Name: Battle Manual 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,5;
|
|
- Id: 14209
|
|
AegisName: F_Siegfried_Box5
|
|
Name: Token of Siegfried 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,5;
|
|
- Id: 14210
|
|
AegisName: F_Siegfried_Box20
|
|
Name: Token of Siegfried 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7621,20;
|
|
- Id: 14211
|
|
AegisName: F_Kafra_Card_Box30
|
|
Name: Kafra Card 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,30;
|
|
- Id: 14212
|
|
AegisName: F_Kafra_Card_Box50
|
|
Name: Kafra Card 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12211,50;
|
|
- Id: 14213
|
|
AegisName: F_Str_Dish_Box30
|
|
Name: Steamed Tongue 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,30;
|
|
- Id: 14214
|
|
AegisName: F_Str_Dish_Box50
|
|
Name: Steamed Tongue 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,50;
|
|
- Id: 14215
|
|
AegisName: F_Bubble_Gum_Box1
|
|
Name: Bubble Gum Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,1;
|
|
- Id: 14216
|
|
AegisName: F_Bubble_Gum_Box5
|
|
Name: Bubble Gum 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,5;
|
|
- Id: 14217
|
|
AegisName: F_Megaphone_Box1
|
|
Name: Megaphone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,1;
|
|
- Id: 14218
|
|
AegisName: F_Megaphone_Box5
|
|
Name: Megaphone 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12221,5;
|
|
- Id: 14219
|
|
AegisName: F_Enriched_Elunium_Box5
|
|
Name: Enriched Elunium 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
- Id: 14220
|
|
AegisName: F_Enriched_Oridecon_Box5
|
|
Name: Enriched Oridecon 5 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7620,5;
|
|
- Id: 14221
|
|
AegisName: MP_Scroll_Box
|
|
Name: Mystical Amplification Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,10;
|
|
- Id: 14222
|
|
AegisName: MP_Scroll_Box30
|
|
Name: Mystical Amplification Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,30;
|
|
- Id: 14223
|
|
AegisName: MP_Scroll_Box50
|
|
Name: Mystical Amplification Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,50;
|
|
- Id: 14224
|
|
AegisName: Quagmire_Scroll_Box
|
|
Name: Quagmire Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,10;
|
|
- Id: 14225
|
|
AegisName: Quagmire_Scroll_Box30
|
|
Name: Quagmire Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,30;
|
|
- Id: 14226
|
|
AegisName: Quagmire_Scroll_Box50
|
|
Name: Quagmire Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,50;
|
|
- Id: 14227
|
|
AegisName: Healing_Staff_Box
|
|
Name: Healing Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1638,604800;
|
|
- Id: 14228
|
|
AegisName: Praxinus_Box
|
|
Name: Praccsinos Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2752,604800;
|
|
- Id: 14229
|
|
AegisName: Cherry_Blossom_Scroll
|
|
Name: Cherry Blossom Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Sakura_Scroll);
|
|
- Id: 14230
|
|
AegisName: Note_Headphones_Box
|
|
Name: Note Headphones Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5151,1;
|
|
- Id: 14231
|
|
AegisName: Novice_Breastplate_Boxes
|
|
Name: Novice Breastplate Boxes
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14232
|
|
AegisName: Yggdrasilberry_Box_
|
|
Name: Yggdrasil Berry 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 607,10;
|
|
- Id: 14233
|
|
AegisName: Dead_Tree_Branch_Box1
|
|
Name: Dead Branch 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 604,10;
|
|
- Id: 14234
|
|
AegisName: Dead_Tree_Branch_Box2
|
|
Name: Dead Branch 25 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 604,25;
|
|
- Id: 14235
|
|
AegisName: Field_Manual_Box_2
|
|
Name: Field Manual 2 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,2;
|
|
- Id: 14236
|
|
AegisName: Steamed_Tongue_Box_20
|
|
Name: Steamed Tongue 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12202,20;
|
|
- Id: 14237
|
|
AegisName: Steamed_Desert_Scorpions_Box_20
|
|
Name: Steamed Desert Scorpions Box(20)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12203,20;
|
|
- Id: 14238
|
|
AegisName: Stew_Of_Immortality_Box_20
|
|
Name: Immortal Stew 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12207,20;
|
|
- Id: 14239
|
|
AegisName: Dragon_Breath_Cocktail_Box_20
|
|
Name: Dragon Breath Cocktail 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12204,20;
|
|
- Id: 14240
|
|
AegisName: Hwergelmir's_Tonic_Box_20
|
|
Name: Hwergelmir's Tonic 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12205,20;
|
|
- Id: 14241
|
|
AegisName: Nine_Tail_Dish_Box_20
|
|
Name: Nine Tail Dish 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12206,20;
|
|
- Id: 14242
|
|
AegisName: Beholder_Ring_Box
|
|
Name: Beholder Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Beholder_Ring_Box);
|
|
/*rentitem 2753,604800;*/
|
|
- Id: 14243
|
|
AegisName: Hallow_Ring_Box
|
|
Name: Hallow Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Hallow_Ring_Box);
|
|
/*rentitem 2754,604800;*/
|
|
- Id: 14244
|
|
AegisName: Clamorous_Ring_Box
|
|
Name: Clamorous Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Clamorous_Ring_Box);
|
|
/*rentitem 2755,604800;*/
|
|
- Id: 14245
|
|
AegisName: Chemical_Ring_Box
|
|
Name: Chemical Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Chemical_Ring_Box);
|
|
/*rentitem 2756,604800;*/
|
|
- Id: 14246
|
|
AegisName: Insecticide_Ring_Box
|
|
Name: Insecticide Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Insecticide_Ring_Box);
|
|
/*rentitem 2757,604800;*/
|
|
- Id: 14247
|
|
AegisName: Fisher_Ring_Box
|
|
Name: Fisher Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Fisher_Ring_Box);
|
|
/*rentitem 2758,604800;*/
|
|
- Id: 14248
|
|
AegisName: Decussate_Ring_Box
|
|
Name: Decussate Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Decussate_Ring_Box);
|
|
/*rentitem 2759,604800;*/
|
|
- Id: 14249
|
|
AegisName: Bloody_Ring_Box
|
|
Name: Bloody Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Bloody_Ring_Box);
|
|
/*rentitem 2760,604800;*/
|
|
- Id: 14250
|
|
AegisName: Satanic_Ring_Box
|
|
Name: Satanic Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Satanic_Ring_Box);
|
|
/*rentitem 2761,604800;*/
|
|
- Id: 14251
|
|
AegisName: Dragoon_Ring_Box
|
|
Name: Dragon Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Dragoon_Ring_Box);
|
|
/*rentitem 2762,604800;*/
|
|
- Id: 14252
|
|
AegisName: Beholder_Ring_Box2
|
|
Name: Beholder Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2753,1;
|
|
- Id: 14253
|
|
AegisName: Hallow_Ring_Box2
|
|
Name: Hallow Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2754,1;
|
|
- Id: 14254
|
|
AegisName: Clamorous_Ring_Box2
|
|
Name: Clamorous Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2755,1;
|
|
- Id: 14255
|
|
AegisName: Chemical_Ring_Box2
|
|
Name: Chemical Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2756,1;
|
|
- Id: 14256
|
|
AegisName: Insecticide_Ring_Box2
|
|
Name: Insecticide Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2757,1;
|
|
- Id: 14257
|
|
AegisName: Fisher_Ring_Box2
|
|
Name: Fisher Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2758,1;
|
|
- Id: 14258
|
|
AegisName: Decussate_Ring_Box2
|
|
Name: Decussate Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2759,1;
|
|
- Id: 14259
|
|
AegisName: Bloody_Ring_Box2
|
|
Name: Bloody Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2760,1;
|
|
- Id: 14260
|
|
AegisName: Satanic_Ring_Box2
|
|
Name: Satanic Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2761,1;
|
|
- Id: 14261
|
|
AegisName: Dragoon_Ring_Box2
|
|
Name: Dragon Ring Box II
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2762,1;
|
|
- Id: 14262
|
|
AegisName: Diary_Magic_Powder_Box
|
|
Name: Diary Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12304,604800;
|
|
- Id: 14263
|
|
AegisName: Mini_Heart_Magic_Powder_Box
|
|
Name: Mini Heart Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12305,604800;
|
|
- Id: 14264
|
|
AegisName: Freshman_Magic_Powder_Box
|
|
Name: Freshman Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12306,604800;
|
|
- Id: 14265
|
|
AegisName: Kid_Magic_Powder_Box
|
|
Name: Kid Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12307,604800;
|
|
- Id: 14266
|
|
AegisName: Magic_Magic_Powder_Box
|
|
Name: Magic Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12308,604800;
|
|
- Id: 14267
|
|
AegisName: JJangu_Magic_Powder_Box
|
|
Name: JJangu Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12309,604800;
|
|
- Id: 14268
|
|
AegisName: Diary_Magic_Powder_Box4
|
|
Name: Diary Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14269
|
|
AegisName: Mini_Heart_Magic_Powder_Box4
|
|
Name: Mini Heart Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14270
|
|
AegisName: Freshman_Magic_Powder_Box4
|
|
Name: Freshman Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14271
|
|
AegisName: Kid_Magic_Powder_Box4
|
|
Name: Kid Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14272
|
|
AegisName: Magic_Magic_Powder_Box4
|
|
Name: Magic Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14273
|
|
AegisName: JJangu_Magic_Powder_Box4
|
|
Name: JJangu Magic Powder Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14274
|
|
AegisName: Amplification_10_Scroll_Box2
|
|
Name: Mystical Amplification Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,10;
|
|
- Id: 14275
|
|
AegisName: Amplification_30_Scroll_Box2
|
|
Name: Mystical Amplification Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,30;
|
|
- Id: 14276
|
|
AegisName: Amplification_50_Scroll_Box2
|
|
Name: Mystical Amplification Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14593,50;
|
|
- Id: 14277
|
|
AegisName: Quagmire_10_Scroll_Box2
|
|
Name: Quagmire Scroll 10 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,10;
|
|
- Id: 14278
|
|
AegisName: Quagmire_30_Scroll_Box2
|
|
Name: Quagmire Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,30;
|
|
- Id: 14279
|
|
AegisName: Quagmire_50_Scroll_Box2
|
|
Name: Quagmire Scroll 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14594,50;
|
|
- Id: 14280
|
|
AegisName: Healing_Staff_Box2
|
|
Name: Healing Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1638,1;
|
|
- Id: 14281
|
|
AegisName: Praccsinos_Box
|
|
Name: Praccsinos Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2752,1;
|
|
- Id: 14282
|
|
AegisName: Emperium_Box
|
|
Name: Emperium Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 714,1;
|
|
- Id: 14283
|
|
AegisName: Marriage_Certificate_Box
|
|
Name: Written Oath Of Marriage Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6026,1;
|
|
- Id: 14284
|
|
AegisName: Muffler_Box
|
|
Name: Muffler Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2548,1;
|
|
- Id: 14285
|
|
AegisName: Balkiriah_Shield_Box
|
|
Name: Balkiriah Shield Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2137,1;
|
|
- Id: 14286
|
|
AegisName: Skull_Ring_Box
|
|
Name: Skull Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2763,1;
|
|
- Id: 14287
|
|
AegisName: Baricade_Repair_Kit
|
|
Name: Barricade Repair Kit
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1019,30;
|
|
getitem 999,10;
|
|
getitem 1011,10;
|
|
getitem 984,5;
|
|
- Id: 14288
|
|
AegisName: Guardian_Stone_Repair_Kit
|
|
Name: Guardian Stone Repair Kit
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 984,1;
|
|
getitem 985,1;
|
|
getitem 7049,30;
|
|
getitem 717,5;
|
|
getitem 716,5;
|
|
getitem 715,5;
|
|
- Id: 14289
|
|
AegisName: Cloth_Dye_Coupon_Box
|
|
Name: New Clothing Dye Coupon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6046,1;
|
|
- Id: 14290
|
|
AegisName: Cloth_Dye_Coupon2_Box
|
|
Name: Original Clothing Dye Coupon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6047,1;
|
|
- Id: 14291
|
|
AegisName: Cloth_Dye_Coupon3_Box
|
|
Name: Clothing Dye Coupon Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6046,1;
|
|
- Id: 14292
|
|
AegisName: Cloth_Dye_Coupon4_Box
|
|
Name: Clothing Dye Coupon Box II
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6047,1;
|
|
- Id: 14293
|
|
AegisName: Mercenary_Contract_Box
|
|
Name: Mercenary Contract Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6050,1;
|
|
- Id: 14294
|
|
AegisName: Mercenary_Contract_Box5
|
|
Name: Mercenary Contract Box 5ea
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6050,5;
|
|
- Id: 14295
|
|
AegisName: Mercenary_Contract_Box10
|
|
Name: Mercenary Contract Box 10ea
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6050,10;
|
|
- Id: 14296
|
|
AegisName: Angel_Scroll
|
|
Name: Angel Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Angel_Scroll);
|
|
- Id: 14297
|
|
AegisName: Devil_Scroll
|
|
Name: Devil Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Devil_Scroll);
|
|
- Id: 14298
|
|
AegisName: Surprise_Scroll
|
|
Name: Surprise Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Surprise_Scroll);
|
|
- Id: 14300
|
|
AegisName: Mask_Of_Ifrit_Box
|
|
Name: Mask Of Ifrit Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5420,1;
|
|
- Id: 14301
|
|
AegisName: Ifrit's_Ear_Box
|
|
Name: Ears Of Ifrit Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5421,1;
|
|
- Id: 14304
|
|
AegisName: Scuba_Mask_Box
|
|
Name: Scuba Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5397,1;
|
|
- Id: 14306
|
|
AegisName: RWC_Special_Scroll
|
|
Name: RWC Special Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Special_Scroll);
|
|
- Id: 14307
|
|
AegisName: RWC_Limited_Scroll
|
|
Name: RWC Limited Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Limited_Scroll);
|
|
- Id: 14308
|
|
AegisName: Ardor_Scroll
|
|
Name: Ardor Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14314
|
|
AegisName: PhreeoniS_Box
|
|
Name: Phreeoni Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14597,10;
|
|
- Id: 14315
|
|
AegisName: GhostringS_Box
|
|
Name: Ghostring Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14598,10;
|
|
- Id: 14316
|
|
AegisName: July7_Scroll
|
|
Name: July7 Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_July7_Scroll);
|
|
- Id: 14317
|
|
AegisName: Bacsojin_Scroll
|
|
Name: Bacsojin Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Bacsojin_Scroll);
|
|
- Id: 14321
|
|
AegisName: Holy_Sabre_Box
|
|
Name: Holy Sabre Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13419,86400;
|
|
- Id: 14322
|
|
AegisName: Book_Of_Prayer_Box
|
|
Name: Book of Prayer Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1578,86400;
|
|
- Id: 14323
|
|
AegisName: Phenomena_Whip_Box
|
|
Name: Phenomena Whip Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1982,86400;
|
|
- Id: 14324
|
|
AegisName: Staff_Of_Darkness_Box
|
|
Name: Staff of Darkness Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1642,86400;
|
|
- Id: 14325
|
|
AegisName: Monk_Knuckle_Box
|
|
Name: Monk Knuckle Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1828,86400;
|
|
- Id: 14326
|
|
AegisName: Mace_Of_Madness_Box
|
|
Name: Mace of Madness Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1547,86400;
|
|
- Id: 14327
|
|
AegisName: Spear_Of_Excellent_Box
|
|
Name: Spear of Excellent Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1427,86400;
|
|
- Id: 14328
|
|
AegisName: Bow_Of_Evil_Box
|
|
Name: Bow of Evil Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1744,86400;
|
|
- Id: 14329
|
|
AegisName: Katar_Of_Speed_Box
|
|
Name: Katar of Speed Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1283,86400;
|
|
- Id: 14330
|
|
AegisName: Sharpshooter_Revolver_Box
|
|
Name: Sharpshooter Revolver Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13111,86400;
|
|
- Id: 14343
|
|
AegisName: Spiked_Scarf_Box
|
|
Name: Spiked Scarf Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5462,1;
|
|
- Id: 14344
|
|
AegisName: Rainbow_Scarf_Box
|
|
Name: Rainbow Scarf Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5463,1;
|
|
- Id: 14345
|
|
AegisName: Animal_Scroll
|
|
Name: Animal Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Animal_Scroll);
|
|
- Id: 14349
|
|
AegisName: Mental_Potion20_Box
|
|
Name: Mental Potion 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14600,20;
|
|
- Id: 14350
|
|
AegisName: Mental_Potion50_Box
|
|
Name: Mental Potion 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14600,50;
|
|
- Id: 14351
|
|
AegisName: Tyr's_Blessing20_Box
|
|
Name: Tyr's Blessing 20 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14601,20;
|
|
- Id: 14352
|
|
AegisName: Tyr's_Blessing50_Box
|
|
Name: Tyr's Blessing 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14601,50;
|
|
- Id: 14361
|
|
AegisName: Orc_HeroS_Box
|
|
Name: Orc HeroS Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14604,10;
|
|
- Id: 14362
|
|
AegisName: Orc_LoadS_Box
|
|
Name: Orc LoadS Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14605,10;
|
|
- Id: 14363
|
|
AegisName: Heart_Scroll
|
|
Name: Heart Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Heart_Scroll);
|
|
- Id: 14372
|
|
AegisName: Powder_Snow_Box
|
|
Name: Powder Snow Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12317,1;
|
|
- Id: 14375
|
|
AegisName: Holy_Celestial_Axe_Box
|
|
Name: Celestial Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 1383,1;
|
|
- Id: 14376
|
|
AegisName: Angeling_Pot_Box
|
|
Name: Angeling Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12350,1;
|
|
- Id: 14377
|
|
AegisName: Shout_Megaphone_Box
|
|
Name: Scream Megaphone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12351,1;
|
|
- Id: 14379
|
|
AegisName: Love_Daddy_Box
|
|
Name: Love Daddy Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5489,1;
|
|
- Id: 14380
|
|
AegisName: Anubis_Helm_Box
|
|
Name: Anubis Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5490,1;
|
|
- Id: 14381
|
|
AegisName: Piercing_Box_M
|
|
Name: Piercing Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1644,1;
|
|
- Id: 14382
|
|
AegisName: Lich_Bone_Box_M
|
|
Name: Lich Bone Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1645,1;
|
|
- Id: 14383
|
|
AegisName: Long_Horn_Box_M
|
|
Name: Long Horn Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1428,1;
|
|
- Id: 14384
|
|
AegisName: Hunting_Spear_Box_M
|
|
Name: Hunting Spear Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1429,1;
|
|
- Id: 14385
|
|
AegisName: Death_Note_Box_M
|
|
Name: Death Note Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1579,1;
|
|
- Id: 14386
|
|
AegisName: Destruction_Box_M
|
|
Name: Destruction Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2003,1;
|
|
- Id: 14387
|
|
AegisName: Rider_Insignia_Box_M
|
|
Name: Rider Insignia Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2551,1;
|
|
- Id: 14388
|
|
AegisName: Mithril_Cape_Box_M
|
|
Name: Mithril Cape Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2552,1;
|
|
- Id: 14389
|
|
AegisName: Sniping_Box_M
|
|
Name: Sniping Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2398,1;
|
|
- Id: 14390
|
|
AegisName: Orleans_Box_M
|
|
Name: Orleans Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2785,1;
|
|
- Id: 14391
|
|
AegisName: Spiritual_Box_M
|
|
Name: Spiritual Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2786,1;
|
|
- Id: 14392
|
|
AegisName: Variant_Box_M
|
|
Name: Variant Box M
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2449,1;
|
|
- Id: 14393
|
|
AegisName: Almighty_Charm_Box
|
|
Name: Universal Amulet Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7945,1;
|
|
- Id: 14407
|
|
AegisName: Xmas_Scroll
|
|
Name: Xmas Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14408
|
|
AegisName: New_Year_Scroll
|
|
Name: New Year Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_New_Year_Scroll);
|
|
- Id: 14426
|
|
AegisName: Fortune_Sword_Box
|
|
Name: Neo Fortune Sword Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13043,86400;
|
|
- Id: 14427
|
|
AegisName: House_Auger_Box
|
|
Name: Neo House Auger
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13044,86400;
|
|
- Id: 14428
|
|
AegisName: Kamaitachi_Box
|
|
Name: Neo Kamaitachi Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13045,86400;
|
|
- Id: 14429
|
|
AegisName: Berserk_Guitar_Box
|
|
Name: Neo Berserk Guitar Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1928,86400;
|
|
- Id: 14430
|
|
AegisName: Doom_Slayer_Box
|
|
Name: Neo Doom Slayer Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 1386,86400;
|
|
- Id: 14431
|
|
AegisName: Huuma_Blaze_Shuriken_Box
|
|
Name: Neo Huuma Blaze Shuriken Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13308,86400;
|
|
- Id: 14432
|
|
AegisName: Odin's_Blessing_Box
|
|
Name: Neo Odin's Blessing Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 15001,86400;
|
|
- Id: 14433
|
|
AegisName: Ring_Of_Flame_Lord_Box
|
|
Name: Neo Ring of Flame Lord Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2792,86400;
|
|
- Id: 14434
|
|
AegisName: Ring_Of_Resonance_Box
|
|
Name: Neo Ring of Resonance Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2793,86400;
|
|
- Id: 14435
|
|
AegisName: Boys_Cap_Box
|
|
Name: Neo Boys Cap Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5492,86400;
|
|
- Id: 14436
|
|
AegisName: Ulle's_Cap_Box
|
|
Name: Neo Ulle's Cap Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5493,86400;
|
|
- Id: 14437
|
|
AegisName: Sphinx_Helm_Box
|
|
Name: Neo Sphinx Helm Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 5494,86400;
|
|
- Id: 14438
|
|
AegisName: Honglyun's_Sword_Box
|
|
Name: Honglyun's Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13420,1;
|
|
- Id: 14439
|
|
AegisName: Power_Of_Thor_Box
|
|
Name: Power Of Thor Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5495,1;
|
|
- Id: 14440
|
|
AegisName: Dice_Hat_Box
|
|
Name: Dice Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5496,1;
|
|
- Id: 14441
|
|
AegisName: King_Tiger_Doll_Hat_Box
|
|
Name: King Tiger Doll Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5497,1;
|
|
- Id: 14442
|
|
AegisName: Wondering_Wolf_Helm_Box
|
|
Name: Wondering Wolf Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5498,1;
|
|
- Id: 14443
|
|
AegisName: Pizza_Hat_Box
|
|
Name: Pizza Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5499,1;
|
|
- Id: 14444
|
|
AegisName: Icecream_Hat_Box
|
|
Name: Icecream Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5500,1;
|
|
- Id: 14447
|
|
AegisName: Pirate's_Pride_Box
|
|
Name: Pirate's Pride Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5501,1;
|
|
- Id: 14448
|
|
AegisName: Necromencer's_Hood_Box
|
|
Name: Necromancer's Hood Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5502,1;
|
|
- Id: 14459
|
|
AegisName: Rabbit_Magic_Hat_Box
|
|
Name: Magic Rabbit Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5503,1;
|
|
- Id: 14460
|
|
AegisName: China_Wedding_Veil_Box
|
|
Name: RO 5th Wedding Anniversary Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5504,1;
|
|
- Id: 14461
|
|
AegisName: Asara_Fairy_Hat_Box
|
|
Name: Ashura Fairy Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5505,1;
|
|
- Id: 14466
|
|
AegisName: Valentine_Pledge_Box
|
|
Name: Valentine's Emblem Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Valentine_Pledge_Box);
|
|
/*rentitem 5817,525600;*/
|
|
- Id: 14469
|
|
AegisName: Ox_Tail_Scroll
|
|
Name: Ox Tail Egg
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Ox_Tail_Scroll);
|
|
- Id: 14485
|
|
AegisName: Academy_Badge_Box
|
|
Name: Academy Badge Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 2751,1;
|
|
- Id: 14486
|
|
AegisName: Academy_Fresh_Hat_Box
|
|
Name: Academy Fresh Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5406,1;
|
|
- Id: 14487
|
|
AegisName: Academy_Gradu_Cap_Box
|
|
Name: Academy Gradu Cap Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5407,1;
|
|
- Id: 14488
|
|
AegisName: Blue_Pajamas_Hat_Box
|
|
Name: Blue Pajamas Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5506,1;
|
|
- Id: 14489
|
|
AegisName: Pink_Pajamas_Hat_Box
|
|
Name: Pink Pajamas Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5507,1;
|
|
- Id: 14490
|
|
AegisName: Shark_Hat_Box
|
|
Name: Shark Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5508,1;
|
|
- Id: 14494
|
|
AegisName: Samambaia_Box
|
|
Name: Samambaia Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5511,1;
|
|
- Id: 14495
|
|
AegisName: Aquarius_Diadem_Box
|
|
Name: Aquarius Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5512,1;
|
|
- Id: 14496
|
|
AegisName: Aquarius_Crown_Box
|
|
Name: Aquarius Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5513,1;
|
|
- Id: 14497
|
|
AegisName: Pisces_Diadem_Box
|
|
Name: Pisces Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5514,1;
|
|
- Id: 14498
|
|
AegisName: Pisces_Crown_Box
|
|
Name: Pisces Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5515,1;
|
|
- Id: 14499
|
|
AegisName: Peacock_Feather_Box
|
|
Name: Peacock Feather Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5519,1;
|
|
- Id: 14500
|
|
AegisName: Insurance60
|
|
Name: Life Insurrance Certificate
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,3600000,0;
|
|
- Id: 14505
|
|
AegisName: Dun_1HR_Voucher
|
|
Name: Sky Fortress Ticket
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "dali02",117,69;
|
|
- Id: 14506
|
|
AegisName: Dun_Voucher
|
|
Name: Sky Fortress Ticket
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
select("Invasion of Air Stronghold - Lv. 145 or higher");
|
|
warp "dali02",117,69;
|
|
- Id: 14508
|
|
AegisName: Zeny_Scroll
|
|
Name: Zeny Pet Egg Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
Zeny += rand(1000,77777);
|
|
- Id: 14509
|
|
AegisName: Light_Center_Pot
|
|
Name: Light Concentration Potion
|
|
Type: Usable
|
|
Buy: 800
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,1800000,4;
|
|
- Id: 14510
|
|
AegisName: Light_Awakening_Pot
|
|
Name: Light Awakening Potion
|
|
Type: Usable
|
|
Buy: 1500
|
|
Weight: 20
|
|
Jobs:
|
|
Alchemist: true
|
|
Archer: true
|
|
Assassin: true
|
|
Blacksmith: true
|
|
Crusader: true
|
|
Gunslinger: true
|
|
Hunter: true
|
|
KagerouOboro: true
|
|
Knight: true
|
|
Mage: true
|
|
Merchant: true
|
|
Monk: true
|
|
Ninja: true
|
|
Novice: true
|
|
Rebellion: true
|
|
Rogue: true
|
|
Sage: true
|
|
SoulLinker: true
|
|
StarGladiator: true
|
|
Summoner: true
|
|
SuperNovice: true
|
|
Swordman: true
|
|
Taekwon: true
|
|
Thief: true
|
|
Wizard: true
|
|
EquipLevelMin: 40
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION1,1800000,6;
|
|
- Id: 14511
|
|
AegisName: Light_Berserk_Pot
|
|
Name: Light Berserk Potion
|
|
Type: Usable
|
|
Buy: 3000
|
|
Weight: 20
|
|
Jobs:
|
|
Alchemist: true
|
|
Blacksmith: true
|
|
Crusader: true
|
|
Gunslinger: true
|
|
Knight: true
|
|
Mage: true
|
|
Merchant: true
|
|
Rebellion: true
|
|
Rogue: true
|
|
SoulLinker: true
|
|
StarGladiator: true
|
|
Swordman: true
|
|
Taekwon: true
|
|
Wizard: true
|
|
EquipLevelMin: 85
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION2,1800000,9;
|
|
- Id: 14512
|
|
AegisName: Meteor_10_Scroll
|
|
Name: Meteor Storm Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "WZ_METEOR",10;
|
|
- Id: 14513
|
|
AegisName: Storm_10_Scroll
|
|
Name: Storm Gust Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "WZ_STORMGUST",10;
|
|
- Id: 14514
|
|
AegisName: Vermilion_10_Scroll
|
|
Name: Lord of Vermilion Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "WZ_VERMILION",10;
|
|
- Id: 14515
|
|
AegisName: Lex_Aeterna_Scroll
|
|
Name: Lex Aeterna Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "PR_LEXAETERNA",1;
|
|
- Id: 14516
|
|
AegisName: Magnificat_5_Scroll
|
|
Name: Magnificat Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "PR_MAGNIFICAT",5;
|
|
- Id: 14517
|
|
AegisName: CP_Helm_Scroll
|
|
Name: Chemical Protection Helm Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"AM_CP_HELM",5;
|
|
- Id: 14518
|
|
AegisName: CP_Shield_Scroll
|
|
Name: Chemical Protection Shield Scrol
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"AM_CP_SHIELD",5;
|
|
- Id: 14519
|
|
AegisName: CP_Armor_Scroll
|
|
Name: Chemical Protection Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"AM_CP_ARMOR",5;
|
|
- Id: 14520
|
|
AegisName: CP_Weapon_Scroll
|
|
Name: Chemical Protection Weapon Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"AM_CP_WEAPON",5;
|
|
- Id: 14521
|
|
AegisName: Repair_Scroll
|
|
Name: Repair Weapon Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
unitskilluseid getcharid(3),"BS_REPAIRWEAPON",1;
|
|
- Id: 14522
|
|
AegisName: Big_Bun
|
|
Name: Big Bun
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 100,0;
|
|
- Id: 14523
|
|
AegisName: Pill_
|
|
Name: Pill
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 0,100;
|
|
- Id: 14524
|
|
AegisName: Superb_Fish_Slice
|
|
Name: Superb Fish Slice
|
|
Type: Healing
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 100,100;
|
|
- Id: 14525
|
|
AegisName: Chewy_Ricecake
|
|
Name: Chewy Ricecake
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATKPOTION,1800000,10;
|
|
- Id: 14526
|
|
AegisName: Oriental_Pastry
|
|
Name: Oriental Pastry
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_MATKPOTION,1800000,10;
|
|
- Id: 14527
|
|
AegisName: Dun_Tele_Scroll1
|
|
Name: Dungeon Teleport Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashDungeon",1;
|
|
- Id: 14528
|
|
AegisName: PVP_Tele_Scroll
|
|
Name: PVP Teleport Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "pvp_n_room",52,25;
|
|
- Id: 14529
|
|
AegisName: Greed_Scroll
|
|
Name: Greed Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "BS_GREED",1;
|
|
- Id: 14530
|
|
AegisName: Flee_30_Scroll
|
|
Name: Evasion Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,1800000,30;
|
|
- Id: 14531
|
|
AegisName: Accuracy_30_Scroll
|
|
Name: Concentration Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_HITFOOD,1800000,30;
|
|
- Id: 14532
|
|
AegisName: Battle_Manual25
|
|
Name: Field Manual 25%
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,25;
|
|
- Id: 14533
|
|
AegisName: Battle_Manual100
|
|
Name: Field Manual 100%
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,3600000,100;
|
|
- Id: 14534
|
|
AegisName: Small_Life_Potion
|
|
Name: Small Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_LIFEPOTION,600000,-5,5;
|
|
- Id: 14535
|
|
AegisName: Med_Life_Potion
|
|
Name: Medium Life Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_L_LIFEPOTION,600000,-7,4;
|
|
- Id: 14536
|
|
AegisName: Abrasive
|
|
Name: Abrasive
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_MAGICALATTHIT;
|
|
sc_start SC_INCCRI,300000,30;
|
|
- Id: 14537
|
|
AegisName: Regeneration_Potion
|
|
Name: Regeneration Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_LIGHTSPHERE;
|
|
sc_start SC_INCHEALRATE,1800000,20;
|
|
- Id: 14538
|
|
AegisName: Glass_Of_Illusion
|
|
Name: Glass of Illusion
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 300000
|
|
Status: Reuse_Limit_A
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
sc_start SC_INCFLEE2,60000,20;
|
|
- Id: 14539
|
|
AegisName: Shadow_Armor_S
|
|
Name: Shadow Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_CLOAKING;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Dark,1,0;
|
|
- Id: 14540
|
|
AegisName: Holy_Armor_S
|
|
Name: Holy Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_BENEDICTIO;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;
|
|
- Id: 14541
|
|
AegisName: S_Def_Potion
|
|
Name: Small Defense Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_DEF_RATE,60000,3;
|
|
- Id: 14542
|
|
AegisName: B_Def_Potion
|
|
Name: Big Defense Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_DEF_RATE,180000,3;
|
|
- Id: 14543
|
|
AegisName: S_Mdef_Potion
|
|
Name: Small Magic Defense Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
sc_start SC_MDEF_RATE,60000,3;
|
|
- Id: 14544
|
|
AegisName: B_Mdef_Potion
|
|
Name: Big Magic Defense Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
sc_start SC_MDEF_RATE,180000,3;
|
|
- Id: 14545
|
|
AegisName: Battle_Manual_X3
|
|
Name: Field Manual 300%
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,300;
|
|
- Id: 14546
|
|
AegisName: Fire_Cracker_Love
|
|
Name: I Love You Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14547
|
|
AegisName: Fire_Cracker_Wday
|
|
Name: Whiteday Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14548
|
|
AegisName: Fire_Cracker_Vday
|
|
Name: Valentine's Day Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14549
|
|
AegisName: Fire_Cracker_Bday
|
|
Name: Birthday Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14550
|
|
AegisName: Fire_Cracker_Xmas
|
|
Name: Xmas Firecracker
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14551
|
|
AegisName: Str_Dish01_
|
|
Name: Fried Grasshopper Legs
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,1;
|
|
percentheal 5,0;
|
|
- Id: 14552
|
|
AegisName: Str_Dish02_
|
|
Name: Seasoned Sticky Webfoot
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,2;
|
|
percentheal 5,0;
|
|
- Id: 14553
|
|
AegisName: Str_Dish03_
|
|
Name: Bomber Steak
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,3;
|
|
percentheal 5,0;
|
|
- Id: 14554
|
|
AegisName: Int_Dish01_
|
|
Name: Grape Juice Herbal Tea
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,1;
|
|
percentheal 0,5;
|
|
- Id: 14555
|
|
AegisName: Int_Dish02_
|
|
Name: Autumn Red Tea
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,2;
|
|
percentheal 0,5;
|
|
- Id: 14556
|
|
AegisName: Int_Dish03_
|
|
Name: Honey Herbal Tea
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,3;
|
|
percentheal 0,5;
|
|
- Id: 14557
|
|
AegisName: Vit_Dish01_
|
|
Name: Steamed Crab Nippers
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,1;
|
|
percentheal 5,0;
|
|
- Id: 14558
|
|
AegisName: Vit_Dish02_
|
|
Name: Assorted Seafood
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,2;
|
|
percentheal 5,0;
|
|
- Id: 14559
|
|
AegisName: Vit_Dish03_
|
|
Name: Clam Soup
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,3;
|
|
percentheal 5,0;
|
|
- Id: 14560
|
|
AegisName: Agi_Dish01_
|
|
Name: Frog Egg Squid Ink Soup
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,1;
|
|
percentheal 3,1;
|
|
- Id: 14561
|
|
AegisName: Agi_Dish02_
|
|
Name: Smooth Noodle
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,2;
|
|
percentheal 3,1;
|
|
- Id: 14562
|
|
AegisName: Agi_Dish03_
|
|
Name: Tentacle Cheese Gratin
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,3;
|
|
percentheal 3,1;
|
|
- Id: 14563
|
|
AegisName: Dex_Dish01_
|
|
Name: Honey Grape Juice
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,1;
|
|
percentheal 2,2;
|
|
- Id: 14564
|
|
AegisName: Dex_Dish02_
|
|
Name: Chocolate Mousse Cake
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,2;
|
|
percentheal 2,2;
|
|
- Id: 14565
|
|
AegisName: Dex_Dish03_
|
|
Name: Fruit Mix
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,3;
|
|
percentheal 2,2;
|
|
- Id: 14566
|
|
AegisName: Luk_Dish01_
|
|
Name: Fried Monkey Tails
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,1;
|
|
percentheal 3,2;
|
|
- Id: 14567
|
|
AegisName: Luk_Dish02_
|
|
Name: Mixed Juice
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,2;
|
|
percentheal 3,2;
|
|
- Id: 14568
|
|
AegisName: Luk_Dish03_
|
|
Name: Fried Sweet Potato
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,3;
|
|
percentheal 4,2;
|
|
- Id: 14569
|
|
AegisName: Knife_Goblin_Ring
|
|
Name: Knife Goblin Ring
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1122;
|
|
- Id: 14570
|
|
AegisName: Flail_Goblin_Ring
|
|
Name: Flail Goblin Ring
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1123;
|
|
- Id: 14571
|
|
AegisName: Hammer_Goblin_Ring
|
|
Name: Hammer Goblin Ring
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1125;
|
|
- Id: 14572
|
|
AegisName: Holy_Marble
|
|
Name: Holy Marble
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1385;
|
|
- Id: 14573
|
|
AegisName: Red_Burning_Stone
|
|
Name: Red Burning Stone
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
pet 1382;
|
|
- Id: 14574
|
|
AegisName: Skull_Of_Vagabond
|
|
Name: Vagabond's Skull
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
Script: |
|
|
pet 1208;
|
|
- Id: 14575
|
|
AegisName: Str_Dish05_
|
|
Name: Lutie Lady's Pancake
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1200000,5;
|
|
percentheal 10,0;
|
|
- Id: 14576
|
|
AegisName: Int_Dish05_
|
|
Name: Mastela Fruit Wine
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1200000,5;
|
|
percentheal 0,10;
|
|
- Id: 14577
|
|
AegisName: Vit_Dish05_
|
|
Name: Spicy Fried Bao
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1200000,5;
|
|
percentheal 10,0;
|
|
- Id: 14578
|
|
AegisName: Agi_Dish05_
|
|
Name: Steamed Bat Wing in Pumpkin
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1200000,5;
|
|
percentheal 6,2;
|
|
- Id: 14579
|
|
AegisName: Dex_Dish05_
|
|
Name: Green Salad
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1200000,5;
|
|
percentheal 5,5;
|
|
- Id: 14580
|
|
AegisName: Luk_Dish05_
|
|
Name: Fried Scorpion Tails
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1200000,5;
|
|
percentheal 5,2;
|
|
- Id: 14581
|
|
AegisName: Dun_Tele_Scroll2
|
|
Name: Dungeon Teleport Scroll II
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashDungeon",2;
|
|
- Id: 14582
|
|
AegisName: WOB_Rune
|
|
Name: Yellow Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",1;
|
|
- Id: 14583
|
|
AegisName: WOB_Schwaltz
|
|
Name: Green Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",2;
|
|
- Id: 14584
|
|
AegisName: WOB_Rachel
|
|
Name: Red Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",3;
|
|
- Id: 14585
|
|
AegisName: WOB_Local
|
|
Name: Blue Butterfly Wing
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashCity",4;
|
|
- Id: 14586
|
|
AegisName: Spark_Candy
|
|
Name: Jumping Candy
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 180000
|
|
Status: Reuse_Limit_B
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HASTEUP;
|
|
bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK;
|
|
- Id: 14587
|
|
AegisName: Repair_Scroll_
|
|
Name: Equipment Repair Spell Book
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "BS_REPAIRWEAPON",1;
|
|
- Id: 14588
|
|
AegisName: Pty_Blessing_Scroll
|
|
Name: Party Blessing 10 Scroll
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "CASH_BLESSING",10;
|
|
- Id: 14589
|
|
AegisName: Pty_Inc_Agi_Scroll
|
|
Name: Party Increase Agi 10 Scroll
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "CASH_INCAGI",10;
|
|
- Id: 14590
|
|
AegisName: Pty_Assumptio_Scroll
|
|
Name: Party Assumptio 5 Scroll
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "CASH_ASSUMPTIO",5;
|
|
- Id: 14591
|
|
AegisName: Siege_Teleport_Scroll
|
|
Name: WoE Teleport Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashSiegeTele";
|
|
- Id: 14592
|
|
AegisName: Job_Manual50
|
|
Name: JOB Battle Manual
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_JEXPBOOST,1800000,50;
|
|
- Id: 14593
|
|
AegisName: Magic_Power_Scroll
|
|
Name: Mystical Amplification Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "HW_MAGICPOWER",10;
|
|
- Id: 14594
|
|
AegisName: Quagmire_Scroll
|
|
Name: Quagmire Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "WZ_QUAGMIRE",5;
|
|
- Id: 14595
|
|
AegisName: Unsealed_Magic_Spell
|
|
Name: Unsealed Magic Spell
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "yuno_fild09",255,127;
|
|
- Id: 14596
|
|
AegisName: Pierre_Treasurebox
|
|
Name: Pierre's Treasure Box
|
|
Type: Usable
|
|
Weight: 100
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
getrandgroupitem(IG_Pierre_Treasurebox,1);
|
|
- Id: 14597
|
|
AegisName: PhreeoniS
|
|
Name: Phreeoni Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start2 SC_ITEMSCRIPT,180000,4121,EFST_FOOD_BASICHIT;
|
|
- Id: 14598
|
|
AegisName: GhostringS
|
|
Name: Ghostring Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;
|
|
- Id: 14599
|
|
AegisName: Greed_Scroll_C
|
|
Name: Greed Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "BS_GREED",1;
|
|
- Id: 14600
|
|
AegisName: Mental_Potion
|
|
Name: Mental Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",1800,1,1,EFST_TARGET_ASPD;
|
|
- Id: 14601
|
|
AegisName: Tyr's_Blessing
|
|
Name: Tyr's Blessing
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,20; bonus bMatk,20; bonus bHit,30; bonus bFlee,30; }",300,3,1;
|
|
- Id: 14602
|
|
AegisName: TaogunkaS
|
|
Name: Tao Gunka Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_LIGHTSPHERE;
|
|
bonus_script "{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; }",180,0,0,EFST_MVPCARD_TAOGUNKA;
|
|
- Id: 14603
|
|
AegisName: MistressS
|
|
Name: Mistress Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
bonus_script "{ bonus bNoGemStone; bonus bUseSPrate,25; }",180,0,0,EFST_MVPCARD_MISTRESS;
|
|
- Id: 14604
|
|
AegisName: Orc_HeroS
|
|
Name: Orc Hero Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_LIGHTSPHERE;
|
|
bonus_script "{ bonus2 bResEff,Eff_Stun,10000; }",180,0,0,EFST_MVPCARD_ORCHERO;
|
|
- Id: 14605
|
|
AegisName: Orc_LoadS
|
|
Name: Orc Lord Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_LIGHTSPHERE;
|
|
bonus_script "{ bonus bShortWeaponDamageReturn,30; }",180,0,0,EFST_MVPCARD_ORCLORD;
|
|
- Id: 14606
|
|
AegisName: Job_Manual25
|
|
Name: JOB Battle Manual
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_JEXPBOOST,1800000,25;
|
|
- Id: 14607
|
|
AegisName: Luxurious_Dinner_W
|
|
Name: Luxurious Western Food
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 600
|
|
Script: |
|
|
sc_start SC_INCALLSTATUS,3600000,3;
|
|
- Id: 14608
|
|
AegisName: Luxurious_Dinner_E
|
|
Name: Manchu-Han Imperial Feast
|
|
Type: Usable
|
|
Buy: 20000
|
|
Weight: 1200
|
|
Script: |
|
|
sc_start SC_INCALLSTATUS,3600000,6;
|
|
- Id: 14609
|
|
AegisName: Spoiled_Cuisine
|
|
Name: Spoiled Cuisine
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 300
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 14611
|
|
AegisName: M_Def_Potion
|
|
Name: M Def Potion
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_DEF_RATE,120000,3;
|
|
- Id: 14612
|
|
AegisName: M_Mdef_Potion
|
|
Name: M Mdef Potion
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
sc_start SC_MDEF_RATE,120000,3;
|
|
- Id: 14613
|
|
AegisName: RWC_Scroll_2012
|
|
Name: RWC Scroll 2012
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Scroll_2012);
|
|
- Id: 14614
|
|
AegisName: Ex_Def_Potion
|
|
Name: Ex Def Potion
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_GUARD;
|
|
sc_start SC_DEF_RATE,1800000,3;
|
|
sc_start SC_MDEF_RATE,1800000,3;
|
|
- Id: 14616
|
|
AegisName: STR_Biscuit_Stick
|
|
Name: Bar Cookie Of Strength
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_STR_CASH,1800000,15;
|
|
sc_start SC_ATKPOTION,600000,rand(11,111);
|
|
- Id: 14617
|
|
AegisName: VIT_Biscuit_Stick
|
|
Name: Bar Cookie Of Vitality
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_VIT_CASH,1800000,15;
|
|
bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1;
|
|
- Id: 14618
|
|
AegisName: AGI_Biscuit_Stick
|
|
Name: Bar Cookie Of Agility
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_AGI_CASH,1800000,15;
|
|
sc_start SC_FLEEFOOD,600000,rand(11,33);
|
|
- Id: 14619
|
|
AegisName: INT_Biscuit_Stick
|
|
Name: Bar Cookie Of Intelligence
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_INT_CASH,1800000,15;
|
|
sc_start SC_MATKPOTION,600000,rand(11,111);
|
|
- Id: 14620
|
|
AegisName: DEX_Biscuit_Stick
|
|
Name: Bar Cookie Of Dexterity
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_DEX_CASH,1800000,15;
|
|
sc_start SC_HITFOOD,600000,rand(11,33);
|
|
- Id: 14621
|
|
AegisName: LUK_Biscuit_Stick
|
|
Name: Bar Cookie Of Lucky
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FOOD_LUK_CASH,1800000,15;
|
|
sc_start SC_CRIFOOD,600000,rand(11,33);
|
|
- Id: 14623
|
|
AegisName: Golden_Treasure_Box_
|
|
Name: Golden Treasure Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getitem callfunc("F_Rand",Devilring card, Angeling card, 11 weapons smelting ticket, armor smelting 11 ticket , horns of the buffalo, ring of recovery, pink bunny costume hair band)*/
|
|
- Id: 14624
|
|
AegisName: Blue_Scroll
|
|
Name: Blue Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Blue_Scroll);
|
|
- Id: 14626
|
|
AegisName: Indigo_Scroll
|
|
Name: Indigo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Indigo_Scroll);
|
|
- Id: 14627
|
|
AegisName: Christmas_Scroll
|
|
Name: Christmas Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14628
|
|
AegisName: Costume_Festival_Box
|
|
Name: Costume Festival Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14629
|
|
AegisName: Enchant_Stone_Box
|
|
Name: Costume Enchant Stone Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box);
|
|
- Id: 14643
|
|
AegisName: Violet_Scroll
|
|
Name: Violet Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Violet_Scroll);
|
|
- Id: 14645
|
|
AegisName: Wing_Of_Baalzebub
|
|
Name: Beelzebub Wing
|
|
Type: Delayconsume
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
if (getmapflag(strcharinfo(3), mf_noteleport) == 0) {
|
|
warp strcharinfo(3),0,0;
|
|
}
|
|
- Id: 14663
|
|
AegisName: Scroll_Sealed_Dark_Lord
|
|
Name: Scroll Sealed Dark Lord
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",6228,6232,4488,4169,19739,24032,24033,24031,24030,24028,24029,24028,24027),1;
|
|
- Id: 14664
|
|
AegisName: Bi_Hwang_Scroll
|
|
Name: Bi Hwang Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Bi_Hwang_Scroll);
|
|
- Id: 14665
|
|
AegisName: Jung_Bi_Scroll
|
|
Name: Jung Bi Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Jung_Bi_Scroll);
|
|
- Id: 14666
|
|
AegisName: Je_Un_Scroll
|
|
Name: Je Un Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Je_Un_Scroll);
|
|
- Id: 14667
|
|
AegisName: Yong_Kwang_Scroll
|
|
Name: Yong Kwang Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Yong_Kwang_Scroll);
|
|
- Id: 14672
|
|
AegisName: Steel_Fighter_Scroll_Lv20
|
|
Name: Steel Fighter Scroll (Lv20)
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14673
|
|
AegisName: Steel_Fighter_Scroll_Lv25
|
|
Name: Steel Fighter Scroll (Lv25)
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14674
|
|
AegisName: Cup_Of_Boza
|
|
Name: Cup Of Boza
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
bonus_script "{ bonus bVit,10; bonus2 bSubEle,Ele_Fire,5; }",120;
|
|
/*EFST_CUP_OF_BOZA 120000*/
|
|
- Id: 14675
|
|
AegisName: Shadow_Box_II
|
|
Name: Shadow Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14679
|
|
AegisName: Article_Sealed_Storm_Scroll
|
|
Name: Article Sealed Storm Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14681
|
|
AegisName: Enchant_Stone_Box2
|
|
Name: Costume Enchant Stone Box 2
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box2);
|
|
- Id: 14682
|
|
AegisName: Sealed_Beelzebub_Scroll
|
|
Name: Sealed Beelzebub Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14689
|
|
AegisName: Sealed_Kiel-D-01_Scroll
|
|
Name: Sealed Kiel-D-01 Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14695
|
|
AegisName: Enchant_Stone_Box3
|
|
Name: Costume Enchant Stone Box 3
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box3);
|
|
- Id: 14696
|
|
AegisName: Sealed_Gloom_Under_Night_Gachapon
|
|
Name: Sealed Gloom Under Night Gachapon
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* getitem callfunc("F_Rand",Sealed Cards Gloom Under Night, 9 weapons smelting ticket, Armor 9 smelting ticket, medium armor Shadow, Shadow Weapon Medium, costume Wings of the Kirin, costume enchant stone box);*/
|
|
- Id: 14699
|
|
AegisName: Garuda_Scroll
|
|
Name: Memorial Garuda Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Garuda_Scroll);
|
|
- Id: 14701
|
|
AegisName: TW_13y_Lucky_Egg_06
|
|
Name: Midgard Immortal Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_TW_13y_Lucky_Egg_06);
|
|
- Id: 14704
|
|
AegisName: Gemstone_Shadow_Box
|
|
Name: Gemstone Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24084,1;
|
|
getitem 24085,1;
|
|
getitem 24086,1;
|
|
getitem 24087,1;
|
|
getitem 24088,1;
|
|
getitem 24089,1;
|
|
- Id: 14705
|
|
AegisName: Sealed_Fallen_Bishop_Hibram_Scroll
|
|
Name: Sealed Fallen Bishop Hibram Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: COnfirm the rates*/
|
|
getitem callfunc("F_Rand",6228,6232,14704,19884,14695,6697),1;
|
|
- Id: 14713
|
|
AegisName: Sealed_Ifrit_Scroll
|
|
Name: Sealed Ifrit Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* getitem callfunc("F_Rand",Sealed ifrit card, 9 weapons smelting ticket, Armor 9 smelting ticket, costume Noah's hats, costumes Enchantment Stone Box); */
|
|
- Id: 14717
|
|
AegisName: 2013_RWC_Scroll
|
|
Name: 2013 RWC Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_2013_RWC_Scroll);
|
|
- Id: 14718
|
|
AegisName: Scroll_Turtle_General_Sealed
|
|
Name: Scroll Turtle General Sealed
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",6228,6232,19751,14695),1;
|
|
- Id: 14723
|
|
AegisName: Limited_Neuralizer_I
|
|
Name: (Limited)Neuralizer I
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashReset";
|
|
- Id: 14724
|
|
AegisName: Limited_Neuralizer_II
|
|
Name: (Limited)Neuralizer II
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashReset";
|
|
- Id: 14725
|
|
AegisName: Sealed_Bacsojin_Scroll
|
|
Name: Sealed Bacsojin Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",4372,6228,6232,19750,14730,17474),1;
|
|
- Id: 14726
|
|
AegisName: Grid_Shadow_Box
|
|
Name: Grid Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24114,1;
|
|
getitem 24115,1;
|
|
getitem 24116,1;
|
|
getitem 24117,1;
|
|
getitem 24118,1;
|
|
getitem 24119,1;
|
|
- Id: 14727
|
|
AegisName: Heal_Shadow_Box
|
|
Name: Heal Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24120,1;
|
|
getitem 24121,1;
|
|
getitem 24122,1;
|
|
getitem 24123,1;
|
|
getitem 24124,1;
|
|
getitem 24125,1;
|
|
- Id: 14728
|
|
AegisName: Hiding_Shadow_Box
|
|
Name: Hiding Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24126,1;
|
|
getitem 24127,1;
|
|
getitem 24128,1;
|
|
getitem 24129,1;
|
|
getitem 24130,1;
|
|
getitem 24131,1;
|
|
- Id: 14729
|
|
AegisName: Cloaking_Shadow_Box
|
|
Name: Cloaking Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24132,1;
|
|
getitem 24133,1;
|
|
getitem 24134,1;
|
|
getitem 24135,1;
|
|
getitem 24136,1;
|
|
getitem 24137,1;
|
|
- Id: 14730
|
|
AegisName: Costume_Festival_Box_II
|
|
Name: Costume Festival Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: No clue yet*/
|
|
- Id: 14731
|
|
AegisName: Teleport_Shadow_Box
|
|
Name: Teleport Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24138,1;
|
|
getitem 24139,1;
|
|
getitem 24140,1;
|
|
getitem 24141,1;
|
|
getitem 24142,1;
|
|
getitem 24143,1;
|
|
- Id: 14732
|
|
AegisName: Steal_Shadow_Box
|
|
Name: Steal Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24144,1;
|
|
getitem 24145,1;
|
|
getitem 24146,1;
|
|
getitem 24147,1;
|
|
getitem 24148,1;
|
|
getitem 24149,1;
|
|
- Id: 14733
|
|
AegisName: Sealed_Pharaoh_Scroll
|
|
Name: Sealed Pharaoh Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",6228,6232,14726,20034,17474),1;
|
|
- Id: 14735
|
|
AegisName: Costama_Egg22
|
|
Name: Shapeshifter Costume
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Shapeshifter_Costume);
|
|
- Id: 14739
|
|
AegisName: Sealed_General_Egnigem_Cenia_Scroll
|
|
Name: Sealed General Egnigem Cenia Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",4482,6228,6232,24156,19935),1;
|
|
- Id: 14740
|
|
AegisName: Sealed_Vesper_Scroll
|
|
Name: Sealed Vesper Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 14741
|
|
AegisName: Imortal_Midgard_Scroll
|
|
Name: Midgard Celebration Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Imortal_Midgard_Scroll);
|
|
- Id: 14753
|
|
AegisName: Hero_Midgard_Egg
|
|
Name: Hero Midgard Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Hero_Midgard_Egg);
|
|
- Id: 14758
|
|
AegisName: Safe_To_Smelting_Scroll
|
|
Name: Safe To Smelting Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",6238,6239,6228,6232,24216,17474,969),1;
|
|
- Id: 14765
|
|
AegisName: Limited_Edition_JOB_Battle_Manual
|
|
Name: Limited Edition JOB Battle Manual
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_JEXPBOOST,3600000,35;
|
|
- Id: 14766
|
|
AegisName: Limited_Power_Booster
|
|
Name: Limited Power Booster
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1,EFST_LIMIT_POWER_BOOSTER;
|
|
- Id: 14805
|
|
AegisName: July_Lucky_Scroll
|
|
Name: Almighty Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_July_Lucky_Scroll);
|
|
- Id: 14840
|
|
AegisName: DF_Megaphone
|
|
Name: "[Sale] Megaphone"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
input .@megaphone$;
|
|
announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;
|
|
- Id: 14841
|
|
AegisName: DF_Songpyun
|
|
Name: "[Scroll] Korean Rice Cake"
|
|
Type: Healing
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 10,0;
|
|
- Id: 14843
|
|
AegisName: DF_Insurance
|
|
Name: "[Scroll] Life Insurance"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LIFEINSURANCE,1800000,0;
|
|
- Id: 14844
|
|
AegisName: DF_Kafra_Card
|
|
Name: "[Scroll] Kafra Card"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 14845
|
|
AegisName: DF_Blessing_10_Scroll
|
|
Name: "[Scroll] Blessing Lv.10 Scroll"
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_BLESSING",10;
|
|
- Id: 14846
|
|
AegisName: DF_Inc_Agi_10_Scroll
|
|
Name: "[Scroll] Increase Agility Lv.10 Scroll"
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_INCAGI",10;
|
|
- Id: 14847
|
|
AegisName: DF_Small_Life_Potion
|
|
Name: "[Scroll] Small Life Potion"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_LIFEPOTION,600000,-5,5;
|
|
- Id: 14849
|
|
AegisName: DF_Vit_Dish10
|
|
Name: "[Scroll] Vit Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_VITFOOD,1800000,10;
|
|
- Id: 14850
|
|
AegisName: DF_Luk_Dish10
|
|
Name: "[Scroll] Luk Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_LUKFOOD,1800000,10;
|
|
- Id: 14851
|
|
AegisName: DF_Dex_Dish10
|
|
Name: "[Scroll] Dex Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_DEXFOOD,1800000,10;
|
|
- Id: 14852
|
|
AegisName: DF_Int_Dish10
|
|
Name: "[Scroll] Int Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INTFOOD,1800000,10;
|
|
- Id: 14853
|
|
AegisName: DF_Agi_Dish10
|
|
Name: "[Scroll] Agi Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_AGIFOOD,1800000,10;
|
|
- Id: 14854
|
|
AegisName: DF_Str_Dish10
|
|
Name: "[Scroll] Str Dish10"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,1800000,10;
|
|
- Id: 14861
|
|
AegisName: DF_GhostringS
|
|
Name: "[Scroll] Ghostring Scroll"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start2 SC_ITEMSCRIPT,60000,4047,EFST_ARMOR_PROPERTY;
|
|
- Id: 14862
|
|
AegisName: DF_Tyr's_Blessing
|
|
Name: "[Scroll] Tyr's Blessing"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,300000,30;
|
|
sc_start SC_HITFOOD,300000,30;
|
|
sc_start SC_ATKPOTION,300000,20;
|
|
sc_start SC_MATKPOTION,300000,20;
|
|
- Id: 14866
|
|
AegisName: DF_Holy_Armor_S
|
|
Name: "[Scroll] Holy Armor Scroll"
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_BENEDICTIO;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Holy,1,0;
|
|
- Id: 14869
|
|
AegisName: DF_Red_Booster
|
|
Name: "[Scroll] Red Booster"
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus5 bAutoSpell,\"AC_CONCENTRATION\",max(getskilllv(\"AC_CONCENTRATION\"),3),10,BF_WEAPON|BF_MAGIC,0; }",600,1,1,EFST_2011RWC_SCROLL;
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
showscript "Oh My GOODNESS!!! I FEEL AWESOMELY STRONG!!! WOWOW";
|
|
- Id: 14875
|
|
AegisName: DF_Med_Life_Potion
|
|
Name: "[Scroll] Medium Life potion"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_L_LIFEPOTION,600000,-7,4;
|
|
- Id: 14886
|
|
AegisName: UltimateCook_S
|
|
Name: "[Scroll] Ultimate Cook"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_2011RWC_SCROLL,1800000,10;
|
|
- Id: 14887
|
|
AegisName: EF_UltimateCook
|
|
Name: "[Not For Sale] Ultimate Cook"
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_2011RWC_SCROLL,1800000,10;
|
|
- Id: 16131
|
|
AegisName: Lady_Tanee_Doll_Box
|
|
Name: Lady Tanee Doll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5526,1;
|
|
- Id: 16132
|
|
AegisName: Lunatic_Hat_Box
|
|
Name: Lunatic Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5527,1;
|
|
- Id: 16133
|
|
AegisName: G_Staff_Of_Light_Box
|
|
Name: Staff Of Light Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2006,1;
|
|
- Id: 16134
|
|
AegisName: King_Frog_Hat_Box
|
|
Name: Frog King Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5528,1;
|
|
- Id: 16135
|
|
AegisName: Evil's_Bone_Hat_Box
|
|
Name: Satanic Bone Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5529,1;
|
|
- Id: 16185
|
|
AegisName: Raven_Cap_Box
|
|
Name: Raven Cap Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5530,1;
|
|
- Id: 16186
|
|
AegisName: B_Dragon_Hat_Box
|
|
Name: Baby Dragon Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5531,1;
|
|
- Id: 16192
|
|
AegisName: Quati_Hat_Box
|
|
Name: Kwati Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5537,1;
|
|
- Id: 16193
|
|
AegisName: Tucan_Hat_Box
|
|
Name: Tucan Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5538,1;
|
|
- Id: 16194
|
|
AegisName: Jaguar_Hat_Box
|
|
Name: Jaguar Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5539,1;
|
|
- Id: 16195
|
|
AegisName: Tw_March_Scroll
|
|
Name: Tw March Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16226
|
|
AegisName: Aries_Diadem_Box
|
|
Name: Aries Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5545,1;
|
|
- Id: 16227
|
|
AegisName: Aries_Crown_Box
|
|
Name: Aries Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5546,1;
|
|
- Id: 16228
|
|
AegisName: RJC_Katusa_Box
|
|
Name: RJC Katusa Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5547,1;
|
|
- Id: 16229
|
|
AegisName: Scarlet_Rose_Box
|
|
Name: Scarlet Rose Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5548,1;
|
|
- Id: 16230
|
|
AegisName: Taurus_Diadem_Box
|
|
Name: Taurus Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5549,1;
|
|
- Id: 16231
|
|
AegisName: Taurus_Crown_Box
|
|
Name: Taurus Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5550,1;
|
|
- Id: 16232
|
|
AegisName: Reginleif_Box
|
|
Name: Reginleif Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoSell: true
|
|
NoCart: true
|
|
Script: |
|
|
getitem 5471,1;
|
|
- Id: 16235
|
|
AegisName: Octopus_Hat_Box
|
|
Name: Octopus Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5554,1;
|
|
- Id: 16236
|
|
AegisName: Leaf_Cat_Hat_Box
|
|
Name: Leaf Cat Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5555,1;
|
|
- Id: 16237
|
|
AegisName: Fur_Seal_Hat_Box
|
|
Name: Fur Seal Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5556,1;
|
|
- Id: 16238
|
|
AegisName: Wild_Rose_Hat_Box
|
|
Name: Wild Rose Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5557,1;
|
|
- Id: 16239
|
|
AegisName: Saci_Hat_Box
|
|
Name: Saci Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5558,1;
|
|
- Id: 16244
|
|
AegisName: Dolor_Hat_Box
|
|
Name: Dolor Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5563,1;
|
|
- Id: 16245
|
|
AegisName: Tw_April_Scroll
|
|
Name: Tw April Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_April_Scroll);
|
|
- Id: 16246
|
|
AegisName: Crown_Of_Deceit_Box
|
|
Name: Crown Of Deceit Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5564,1;
|
|
- Id: 16247
|
|
AegisName: Dragon_Arhat_Mask_Box
|
|
Name: Dragon Arhat Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5565,1;
|
|
- Id: 16248
|
|
AegisName: Tiger_Arhat_Mask_Box
|
|
Name: Tiger Arhat Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5566,1;
|
|
- Id: 16249
|
|
AegisName: Knight_Gift_Box
|
|
Name: Knight Gift Box
|
|
Type: Usable
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16250
|
|
AegisName: Valkyrie's_Gift_Box
|
|
Name: Valkyrie's Gift Box
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getitem 5826,1;
|
|
- Id: 16251
|
|
AegisName: Gemini_Diadem_Box
|
|
Name: Gemini Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5569,1;
|
|
- Id: 16252
|
|
AegisName: Gemini_Crown_Box
|
|
Name: Gemini Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5570,1;
|
|
- Id: 16253
|
|
AegisName: Rabbit_Scroll
|
|
Name: Rabbit Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16254
|
|
AegisName: Energizing_Potion_Box
|
|
Name: Energizing Potion Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16257
|
|
AegisName: Buddah_Scroll
|
|
Name: Buddah Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Buddah_Scroll);
|
|
- Id: 16258
|
|
AegisName: HD_Bradium_Box5
|
|
Name: HD Bradium 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6226,5;
|
|
- Id: 16259
|
|
AegisName: HD_Carnium_Box5
|
|
Name: HD Carnium 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6225,5;
|
|
- Id: 16260
|
|
AegisName: HD_Bradium_Box10
|
|
Name: HD Bradium 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6226,10;
|
|
- Id: 16261
|
|
AegisName: HD_Carnium_Box10
|
|
Name: HD Carnium 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6225,10;
|
|
- Id: 16262
|
|
AegisName: F_HD_Bradium_Box5
|
|
Name: HD Bradium 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6226,5;
|
|
- Id: 16263
|
|
AegisName: F_HD_Carnium_Box5
|
|
Name: HD Carnium 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6225,5;
|
|
- Id: 16264
|
|
AegisName: HD_Bradium_10_Box2
|
|
Name: HD Bradium 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6226,10;
|
|
- Id: 16265
|
|
AegisName: HD_Carnium_10_Box2
|
|
Name: HD Carnium 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6225,10;
|
|
- Id: 16266
|
|
AegisName: Indonesia_Beret_Box
|
|
Name: Indonesia Beret Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getitem 5580,1;
|
|
- Id: 16267
|
|
AegisName: HE_Battle_Manual_Box
|
|
Name: HE Battle Manual Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 12411,10;
|
|
- Id: 16268
|
|
AegisName: HE_Bubble_Gum_Box
|
|
Name: HE Bubble Gum Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 12412,10;
|
|
- Id: 16269
|
|
AegisName: Cancer_Diadem_Box
|
|
Name: Cancer Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5581,1;
|
|
- Id: 16270
|
|
AegisName: Cancer_Crown_Box
|
|
Name: Cancer Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5582,1;
|
|
- Id: 16304
|
|
AegisName: Evil_Incarnation_Disable
|
|
Name: Evil Incarnation
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Evil_Incarnation);
|
|
- Id: 16305
|
|
AegisName: Upg_Guard_Box
|
|
Name: Upg Guard Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2149,1;
|
|
- Id: 16306
|
|
AegisName: F_Upg_Guard_Box
|
|
Name: F Upg Guard Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2149,1;
|
|
- Id: 16307
|
|
AegisName: Upg_Buckler_Box
|
|
Name: Upg Buckler Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2150,1;
|
|
- Id: 16308
|
|
AegisName: F_Upg_Buckler_Box
|
|
Name: F Upg Buckler Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2150,1;
|
|
- Id: 16309
|
|
AegisName: Upg_Shield_Box
|
|
Name: Upg Shield Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2151,1;
|
|
- Id: 16310
|
|
AegisName: F_Upg_Shield_Box
|
|
Name: F Upg Shield Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2151,1;
|
|
- Id: 16311
|
|
AegisName: Upg_Shoes_Box
|
|
Name: Upg Shoes Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2459,1;
|
|
- Id: 16312
|
|
AegisName: F_Upg_Shoes_Box
|
|
Name: F Upg Shoes Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2459,1;
|
|
- Id: 16313
|
|
AegisName: Upg_Boots_Box
|
|
Name: Upg Boots Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2460,1;
|
|
- Id: 16314
|
|
AegisName: F_Upg_Boots_Box
|
|
Name: F Upg Boots Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2460,1;
|
|
- Id: 16315
|
|
AegisName: Upg_Greave_Box
|
|
Name: Upg Greave Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2461,1;
|
|
- Id: 16316
|
|
AegisName: F_Upg_Greave_Box
|
|
Name: F Upg Greave Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2461,1;
|
|
- Id: 16317
|
|
AegisName: Upg_Hood_Box
|
|
Name: Upg Hood Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2561,1;
|
|
- Id: 16318
|
|
AegisName: F_Upg_Hood_Box
|
|
Name: F Upg Hood Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2561,1;
|
|
- Id: 16319
|
|
AegisName: Upg_Muffler_Box
|
|
Name: Upg Muffler Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2562,1;
|
|
- Id: 16320
|
|
AegisName: F_Upg_Muffler_Box
|
|
Name: F Upg Muffler Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2562,1;
|
|
- Id: 16321
|
|
AegisName: Upg_Manteau_Box
|
|
Name: Upg Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2563,1;
|
|
- Id: 16322
|
|
AegisName: F_Upg_Manteau_Box
|
|
Name: F Upg Manteau Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2563,1;
|
|
- Id: 16323
|
|
AegisName: Upg_Clip_Box
|
|
Name: Upg Clip Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2828,1;
|
|
- Id: 16324
|
|
AegisName: F_Upg_Clip_Box
|
|
Name: F Upg Clip Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2828,1;
|
|
- Id: 16327
|
|
AegisName: Upg_Adv_Suit_Box
|
|
Name: Upg Adv Suit Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15015,1;
|
|
- Id: 16328
|
|
AegisName: F_Upg_Adv_Suit_Box
|
|
Name: F Upg Adv Suit Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15015,1;
|
|
- Id: 16329
|
|
AegisName: Upg_Coat_Box
|
|
Name: Upg Coat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15016,1;
|
|
- Id: 16330
|
|
AegisName: F_Upg_Coat_Box
|
|
Name: F Upg Coat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15016,1;
|
|
- Id: 16331
|
|
AegisName: Upg_Saint_Robe_Box
|
|
Name: Upg Saint Robe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15017,1;
|
|
- Id: 16332
|
|
AegisName: F_Upg_Saint_Robe_Box
|
|
Name: F Upg Saint Robe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15017,1;
|
|
- Id: 16333
|
|
AegisName: Upg_Tights_Box
|
|
Name: Upg Tights Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15018,1;
|
|
- Id: 16334
|
|
AegisName: F_Upg_Tights_Box
|
|
Name: F Upg Tights Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15018,1;
|
|
- Id: 16335
|
|
AegisName: Upg_Thief_Cloth_Box
|
|
Name: Upg Thief Cloth Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15019,1;
|
|
- Id: 16336
|
|
AegisName: F_Upg_Thief_Cloth_Box
|
|
Name: F Upg Thief Cloth Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15019,1;
|
|
- Id: 16337
|
|
AegisName: Upg_Mail_Box
|
|
Name: Upg Mail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15020,1;
|
|
- Id: 16338
|
|
AegisName: F_Upg_Mail_Box
|
|
Name: F Upg Mail Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15020,1;
|
|
- Id: 16339
|
|
AegisName: Upg_Formal_Dress_Box
|
|
Name: Upg Formal Dress Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15021,1;
|
|
- Id: 16340
|
|
AegisName: F_Upg_Formal_Dress_Box
|
|
Name: F Upg Formal Dress Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 15021,1;
|
|
- Id: 16341
|
|
AegisName: Greed_Clip_Box
|
|
Name: Greed Clip Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 2829,1;
|
|
- Id: 16342
|
|
AegisName: F_Greed_Clip_Box
|
|
Name: F Greed Clip Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 2829,1;
|
|
- Id: 16343
|
|
AegisName: Leo_Crown_Box
|
|
Name: Leo Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5588,1;
|
|
- Id: 16344
|
|
AegisName: Leo_Diadem_Box
|
|
Name: Leo Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5589,1;
|
|
- Id: 16345
|
|
AegisName: F_Leo_Crown_Box
|
|
Name: F Leo Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5588,1;
|
|
- Id: 16346
|
|
AegisName: F_Leo_Diadem_Box
|
|
Name: F Leo Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5589,1;
|
|
- Id: 16360
|
|
AegisName: Desert_Prince_Box
|
|
Name: Desert Prince Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5591,1;
|
|
- Id: 16361
|
|
AegisName: FDesert_Prince_Box
|
|
Name: FDesert Prince Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5591,1;
|
|
- Id: 16362
|
|
AegisName: Sigrun's_Wing_Box
|
|
Name: Sigrun's Wing Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5592,1;
|
|
- Id: 16363
|
|
AegisName: FSigrun's_Wing_Box
|
|
Name: FSigrun's Wing Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5592,1;
|
|
- Id: 16368
|
|
AegisName: Virgo_Crown_Box
|
|
Name: Virgo Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5598,1;
|
|
- Id: 16371
|
|
AegisName: Tw_Aug_Scroll
|
|
Name: Tw Aug Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Aug_Scroll);
|
|
- Id: 16372
|
|
AegisName: F_Clover_Box_Mouth
|
|
Name: F Clover Box Mouth
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_F_Clover_Box_Mouth);
|
|
/*rentitem 4Leaf_Clover_In_Mouth,3600;*/
|
|
- Id: 16374
|
|
AegisName: Mouth_Bubble_Gum_Box
|
|
Name: Mouth Bubble Gum Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Mouth_Bubble_Gum_Box);
|
|
/*rentitem Bubble_Gum_In_Mouth,3600;*/
|
|
- Id: 16378
|
|
AegisName: Siege_Tele_Scroll_Box_30
|
|
Name: Siege Teleport Scroll 30 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,30;
|
|
- Id: 16379
|
|
AegisName: Siege_Teleport_Scroll_Silver_10Box
|
|
Name: Siege Teleport Scroll Silver 10Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12415,10;
|
|
- Id: 16380
|
|
AegisName: Siege_Teleport_Scroll_Silver_30Box
|
|
Name: Siege Teleport Scroll Silver 30Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12415,30;
|
|
- Id: 16381
|
|
AegisName: WoE_Teleport_Scroll_100_Box
|
|
Name: WoE Teleport Scroll 100 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12444,100;
|
|
- Id: 16382
|
|
AegisName: WoE_Teleport_Scroll_30_Box
|
|
Name: WoE Teleport Scroll 30 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12444,30;
|
|
- Id: 16385
|
|
AegisName: F_Clover_Box_Mouth2
|
|
Name: F Clover Box Mouth2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_F_Clover_Box_Mouth2);
|
|
/*rentitem 4Leaf_Clover_In_Mouth,7200;*/
|
|
- Id: 16386
|
|
AegisName: F_Clover_Box_Mouth4
|
|
Name: F Clover Box Mouth4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_F_Clover_Box_Mouth4);
|
|
/*rentitem 4Leaf_Clover_In_Mouth,14400;*/
|
|
- Id: 16389
|
|
AegisName: BGum_Box_In_Mouth2
|
|
Name: BGum Box In Mouth2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_BGum_Box_In_Mouth2);
|
|
/*rentitem Bubble_Gum_In_Mouth,7200;*/
|
|
- Id: 16390
|
|
AegisName: BGum_Box_In_Mouth4
|
|
Name: BGum Box In Mouth4
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_BGum_Box_In_Mouth4);
|
|
/*rentitem Bubble_Gum_In_Mouth,14400;*/
|
|
- Id: 16393
|
|
AegisName: HD_Ori_Box5
|
|
Name: HD Oridecon 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6240,5;
|
|
- Id: 16394
|
|
AegisName: HD_Ori_Box10
|
|
Name: HD Oridecon 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6240,10;
|
|
- Id: 16395
|
|
AegisName: HD_Elu_Box5
|
|
Name: HD Elunium 5 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6241,5;
|
|
- Id: 16396
|
|
AegisName: HD_Elu_Box10
|
|
Name: HD Elunium 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6241,10;
|
|
- Id: 16397
|
|
AegisName: Virgo_Diadem_Box
|
|
Name: Virgo Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5599,1;
|
|
- Id: 16398
|
|
AegisName: Virgo_Crown_Box_
|
|
Name: Virgo Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5598,1;
|
|
- Id: 16399
|
|
AegisName: Virgo_Diadem_Box_
|
|
Name: Virgo Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5599,1;
|
|
- Id: 16405
|
|
AegisName: Midgard_Coin_Box_
|
|
Name: Midgard Coin Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6242,1;
|
|
- Id: 16406
|
|
AegisName: FMidgard_Coin_Box
|
|
Name: FMidgard Coin Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6242,1;
|
|
- Id: 16409
|
|
AegisName: Tw_Sep_Scroll
|
|
Name: Tw Sep Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Sep_Scroll);
|
|
- Id: 16410
|
|
AegisName: Chung_Hairband_Box
|
|
Name: Chung Hairband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5609,1;
|
|
- Id: 16411
|
|
AegisName: FChung_Hairband_Box
|
|
Name: FChung Hairband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5609,1;
|
|
- Id: 16412
|
|
AegisName: Ice_Wing_Ear_Box
|
|
Name: Ice Wing Ear Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5610,1;
|
|
- Id: 16413
|
|
AegisName: FIce_Wing_Ear_Box
|
|
Name: FIce Wing Ear Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5610,1;
|
|
- Id: 16414
|
|
AegisName: Turtle_Hat_Box
|
|
Name: Turtle Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5611,1;
|
|
- Id: 16415
|
|
AegisName: FTurtle_Hat_Box
|
|
Name: FTurtle Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5611,1;
|
|
- Id: 16418
|
|
AegisName: Giant_Fly_Wing_Box_500
|
|
Name: Giant Fly Wing Box 500
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 12212,500;
|
|
- Id: 16419
|
|
AegisName: Greed_Scroll_Box_30
|
|
Name: Greed Scroll Box 30
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 14529,30;
|
|
- Id: 16420
|
|
AegisName: Adventurer_Pack
|
|
Name: Adventurer Pack
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 12208,10;
|
|
getitem 12210,10;
|
|
getitem 12216,20;
|
|
getitem 12215,20;
|
|
getitem 7621,10;
|
|
getitem 12209,10;
|
|
getitem 12211,5;
|
|
getitem 12445,10;
|
|
getitem 12446,10;
|
|
getitem 12447,10;
|
|
getitem 12448,10;
|
|
getitem 12449,10;
|
|
getitem 12450,10;
|
|
- Id: 16421
|
|
AegisName: Written_Oath_Of_Marriage_Box
|
|
Name: Written Oath Of Marriage Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 6026,1;
|
|
- Id: 16422
|
|
AegisName: Magestic_Goat_Box_
|
|
Name: Magestic Goat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 5280,604800;
|
|
- Id: 16423
|
|
AegisName: Episode_13.1_Key_Package
|
|
Name: Episode 13.1 Key Package
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 7782,1;
|
|
getitem 12208,2;
|
|
getitem 14582,10;
|
|
- Id: 16424
|
|
AegisName: Executioner_Box_
|
|
Name: Executioner Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 1174,604800;
|
|
- Id: 16425
|
|
AegisName: Cutlus_Box
|
|
Name: Cutlus Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 13402,604800;
|
|
- Id: 16426
|
|
AegisName: Moonlight_Dagger_Box
|
|
Name: Moonlight Dagger Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 13026,604800;
|
|
- Id: 16427
|
|
AegisName: Wrench_Box
|
|
Name: Wrench Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 1534,604800;
|
|
- Id: 16428
|
|
AegisName: Solar_Sword_Box_
|
|
Name: Solar Sword Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 13403,604800;
|
|
- Id: 16429
|
|
AegisName: Tomahawk_Box_
|
|
Name: Tomahawk Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 1374,604800;
|
|
- Id: 16430
|
|
AegisName: Rudra_Bow_Box
|
|
Name: Rudra Bow Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 1729,604800;
|
|
- Id: 16431
|
|
AegisName: Pole_Axe_Box_
|
|
Name: Pole Axe Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
rentitem 1419,604800;
|
|
- Id: 16436
|
|
AegisName: Libra_Crown_Box
|
|
Name: Libra Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5662,1;
|
|
- Id: 16437
|
|
AegisName: Libra_Crown_Box_
|
|
Name: Libra Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5662,1;
|
|
- Id: 16438
|
|
AegisName: Libra_Diadem_Box
|
|
Name: Libra Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5663,1;
|
|
- Id: 16439
|
|
AegisName: Libra_Diadem_Box_
|
|
Name: Libra Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5663,1;
|
|
- Id: 16440
|
|
AegisName: Filir_Wing_Box
|
|
Name: Filir Wing Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5664,1;
|
|
- Id: 16446
|
|
AegisName: Tw_October_Scroll
|
|
Name: Tw October Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_October_Scroll);
|
|
- Id: 16447
|
|
AegisName: Scorpio_Crown_Box
|
|
Name: Scorpio Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5676,1;
|
|
- Id: 16448
|
|
AegisName: Scorpio_Diadem_Box
|
|
Name: Scorpio Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5677,1;
|
|
- Id: 16449
|
|
AegisName: Scorpio_Crown_Box_
|
|
Name: Scorpio Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5676,1;
|
|
- Id: 16450
|
|
AegisName: FScorpio_Diadem_Box
|
|
Name: FScorpio Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5677,1;
|
|
- Id: 16456
|
|
AegisName: My_Scroll1
|
|
Name: My Scroll1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_My_Scroll1);
|
|
- Id: 16457
|
|
AegisName: Tw_Nov_Scroll
|
|
Name: Tw Nov Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Nov_Scroll);
|
|
- Id: 16461
|
|
AegisName: Red_Wing_Hat_Box
|
|
Name: Red Wing Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5690,1;
|
|
- Id: 16462
|
|
AegisName: FRed_Wing_Hat_Box
|
|
Name: FRed Wing Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5690,1;
|
|
- Id: 16466
|
|
AegisName: My_Scroll2
|
|
Name: My Scroll2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_My_Scroll2);
|
|
- Id: 16481
|
|
AegisName: Small_Life_Potion_Box_10
|
|
Name: Small Life Potion Box (10)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12516,10;
|
|
- Id: 16483
|
|
AegisName: Abrasive_Box_10
|
|
Name: Abrasive Box (10)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12514,10;
|
|
- Id: 16503
|
|
AegisName: E_Insurance_Package
|
|
Name: E Insurance Package
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12209,10;
|
|
- Id: 16504
|
|
AegisName: Bubble_Gum_Box_10
|
|
Name: Bubble Gum Box(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12210,10;
|
|
- Id: 16505
|
|
AegisName: Steamed_Tongue_Box_10
|
|
Name: Steamed Tongue Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12501,10;
|
|
- Id: 16506
|
|
AegisName: Steamed_Desert_Scorpions_Box_10
|
|
Name: Steamed Desert Scorpions Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12502,10;
|
|
- Id: 16507
|
|
AegisName: Dragon_Breath_Cocktail_Box_10
|
|
Name: Dragon Breath Cocktail Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12503,10;
|
|
- Id: 16508
|
|
AegisName: Hwergelmir's_Tonic_Box_10
|
|
Name: Hwergelmir's Tonic Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12504,10;
|
|
- Id: 16509
|
|
AegisName: Cooked_Nine_Tail_Box_10
|
|
Name: Cooked Nine Tail Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12505,10;
|
|
- Id: 16510
|
|
AegisName: Immortal_Stew_Box_10
|
|
Name: Immortal Stew Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12506,10;
|
|
- Id: 16514
|
|
AegisName: Blessing_Scroll_Box_10
|
|
Name: Blessing Scroll Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12522,10;
|
|
- Id: 16515
|
|
AegisName: Increase_Agility_Scroll_Box_10
|
|
Name: Increase Agility Scroll Box (10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12523,10;
|
|
- Id: 16542
|
|
AegisName: Xmas_Bless
|
|
Name: Xmas Bless
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Xmas_Bless);
|
|
- Id: 16543
|
|
AegisName: Snowman_Hat_Box
|
|
Name: Snowman Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5738,1;
|
|
- Id: 16544
|
|
AegisName: FSnowman_Hat_Box
|
|
Name: FSnowman Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5738,1;
|
|
- Id: 16548
|
|
AegisName: Sagittarius_Crown_Box
|
|
Name: Sagittarius Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5739,1;
|
|
- Id: 16549
|
|
AegisName: Sagittarius_Diadem_Box
|
|
Name: Sagittarius Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5740,1;
|
|
- Id: 16550
|
|
AegisName: Sagittarius_Crown_Box_
|
|
Name: Sagittarius Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5739,1;
|
|
- Id: 16551
|
|
AegisName: Sagittarius_Diadem_Box_
|
|
Name: Sagittarius Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5740,1;
|
|
- Id: 16554
|
|
AegisName: Elven_Sunglasses_Box
|
|
Name: Elven Sunglasses Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem 5245,1;
|
|
- Id: 16555
|
|
AegisName: Pr_Reset_Stone_Box
|
|
Name: Pr Reset Stone Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Pr_Reset_Stone_Box);*/
|
|
getitem 6320,1;
|
|
- Id: 16556
|
|
AegisName: FPremium_Reset_Stone_Box
|
|
Name: Reset Stone Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/*getgroupitem(IG_FPr_Reset_Stone_Box);*/
|
|
getitem 6320,1;
|
|
- Id: 16557
|
|
AegisName: CP_Helm_Scroll10
|
|
Name: CP Helm Scroll10
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14517,10;
|
|
- Id: 16558
|
|
AegisName: CP_Shield_Scroll10
|
|
Name: CP Shield Scroll10
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14518,10;
|
|
- Id: 16559
|
|
AegisName: CP_Armor_Scroll10
|
|
Name: CP Armor Scroll10
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14519,10;
|
|
- Id: 16560
|
|
AegisName: CP_Weapon_Scroll10
|
|
Name: CP Weapon Scroll10
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14520,10;
|
|
- Id: 16561
|
|
AegisName: CP_Scroll_Package
|
|
Name: CP Scroll Package
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16562
|
|
AegisName: Majestic_Devil_Scroll
|
|
Name: Majestic Devil Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Majestic_Devil_Scroll);
|
|
- Id: 16563
|
|
AegisName: BM100_Box_5
|
|
Name: BM100 Box 5
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14533,5;
|
|
- Id: 16565
|
|
AegisName: Capricorn_Crown_Box
|
|
Name: Capricorn Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5744,1;
|
|
- Id: 16566
|
|
AegisName: Capricorn_Crown_Box_
|
|
Name: Capricorn Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5744,1;
|
|
- Id: 16567
|
|
AegisName: Capricorn_Diadem_Box
|
|
Name: Capricorn Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5745,1;
|
|
- Id: 16568
|
|
AegisName: FCapricorn_Diadem_Box
|
|
Name: FCapricorn Diadem Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5745,1;
|
|
- Id: 16569
|
|
AegisName: Summer_Scroll
|
|
Name: Summer Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16571
|
|
AegisName: Rice_Ball_Hat_Box
|
|
Name: Rice Ball Hat Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getitem 5575,1;
|
|
- Id: 16576
|
|
AegisName: Illusion_Nothing
|
|
Name: Illusion Nothing
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Illusion_Nothing);
|
|
- Id: 16577
|
|
AegisName: Dragon_Captain
|
|
Name: Dragon Captain
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16582
|
|
AegisName: Red_Bunny_Band_Box
|
|
Name: Red Bunny Band Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5763,1;
|
|
- Id: 16584
|
|
AegisName: Sloth_Hat_Box
|
|
Name: Sloth Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5761,1;
|
|
- Id: 16585
|
|
AegisName: F_Sloth_Hat_Box
|
|
Name: F Sloth Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5761,1;
|
|
- Id: 16586
|
|
AegisName: Duneyrr_Helm_Box
|
|
Name: Duneyrr Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5762,1;
|
|
- Id: 16587
|
|
AegisName: F_Duneyrr_Helm_Box
|
|
Name: F Duneyrr Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5762,1;
|
|
- Id: 16588
|
|
AegisName: Thoughtful_Hat_Box
|
|
Name: Thoughtful Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
|
|
- Id: 16589
|
|
AegisName: Thoughtful_Hat_Box_
|
|
Name: Thoughtful Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
|
|
- Id: 16590
|
|
AegisName: Thoughtful_Hat_Box__
|
|
Name: Thoughtful Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem callfunc("F_Rand",5336,5337,5338,5346,5339,5474),1;
|
|
- Id: 16598
|
|
AegisName: Activation_Potion_Box_II
|
|
Name: Activation Potion Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16600
|
|
AegisName: Spring_Flower_Scr_Tw
|
|
Name: Spring Flower Scr Tw
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16601
|
|
AegisName: Blue_Arara_Hat_Box
|
|
Name: Blue Arara Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5778,1;
|
|
- Id: 16602
|
|
AegisName: F_Blue_Arara_Hat_Box
|
|
Name: F Blue Arara Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5778,1;
|
|
- Id: 16603
|
|
AegisName: Drooping_Votto_Box
|
|
Name: Drooping Votto Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Script: |
|
|
/* getitem drooping votto hat,1; */
|
|
- Id: 16604
|
|
AegisName: Drooping_Votto_Box_
|
|
Name: Drooping Votto Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Script: |
|
|
/* getitem drooping votto hat[1],1; */
|
|
- Id: 16606
|
|
AegisName: Tendrilrion_Hat_Box
|
|
Name: Tendrilrion Hat Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5780,1;
|
|
- Id: 16619
|
|
AegisName: Yellow_Bunnyband_Box
|
|
Name: Yellow Bunnyband Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 5783,1;
|
|
- Id: 16620
|
|
AegisName: Yellow_Bunny_Headband_Box
|
|
Name: Yellow Bunny Headband Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5783,1;
|
|
- Id: 16622
|
|
AegisName: Pink_Bunny_Band_Box
|
|
Name: Pink Bunny Band Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5784,1;
|
|
- Id: 16623
|
|
AegisName: Green_Bunny_Band_Box
|
|
Name: Green Bunny Band Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Script: |
|
|
getitem 5785,1;
|
|
- Id: 16625
|
|
AegisName: Half_Asprika_box7
|
|
Name: Half Asprika Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 2566,604800;
|
|
- Id: 16628
|
|
AegisName: Brynhild_Box
|
|
Name: Half Brynhild Box
|
|
Type: Usable
|
|
Buy: 20
|
|
EquipLevelMin: 47
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 15023,604800;
|
|
- Id: 16631
|
|
AegisName: Aributa_Scroll
|
|
Name: Aributa Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16638
|
|
AegisName: Ribbon_Of_Life_Box
|
|
Name: Life Ribbon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Life_Ribbon_Box);
|
|
- Id: 16639
|
|
AegisName: Ribbon_Of_Life_Box2
|
|
Name: Life Ribbon Box2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Life_Ribbon_Box2);
|
|
- Id: 16640
|
|
AegisName: Ribbon_Of_Life_Box3
|
|
Name: Life Ribbon Box3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Life_Ribbon_Box3);
|
|
- Id: 16652
|
|
AegisName: Flame_Light
|
|
Name: Flame Light
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Flame_Light);
|
|
- Id: 16653
|
|
AegisName: BM75_10Box
|
|
Name: BM75 10Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12563,10;
|
|
- Id: 16654
|
|
AegisName: Valiant_Will
|
|
Name: Valiant Will
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16655
|
|
AegisName: Rapid_Life_Potion_10_Box
|
|
Name: Rapid Life Potion 10 Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12578,10;
|
|
- Id: 16658
|
|
AegisName: Rapid_Water_Box_10
|
|
Name: Rapid Water Box(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12578,10;
|
|
- Id: 16659
|
|
AegisName: Zodiac_Diadem_Pack
|
|
Name: Zodiac Diadem Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 1
|
|
Script: |
|
|
getitem callfunc("F_Rand",5545,5549,5569,5581,5589,5599,5663,5677,5740,5745,5512,5514),1;
|
|
- Id: 16664
|
|
AegisName: Leo_Scroll
|
|
Name: Leo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16665
|
|
AegisName: Virgo_Scroll
|
|
Name: Virgo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16666
|
|
AegisName: Magic_Candy_Box10
|
|
Name: Magic Candy Box10
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Magic_Candy_Box10);
|
|
/*getitem Magic_Candy,10;*/
|
|
- Id: 16668
|
|
AegisName: Kotak_Ketupat_Warna_Warni
|
|
Name: Kotak Ketupat Warna Warni
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
rentitem 2869,20160000;
|
|
- Id: 16670
|
|
AegisName: Field_Manual_Box_A
|
|
Name: Field Manual Box A
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 14532,10;
|
|
if (!rand(10))
|
|
getitem callfunc("F_Rand",603,617),1;
|
|
- Id: 16673
|
|
AegisName: Libra_Scroll
|
|
Name: Libra Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Libra_Scroll);
|
|
- Id: 16675
|
|
AegisName: Splash_Scroll
|
|
Name: Splash Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Splash_Scroll);
|
|
- Id: 16676
|
|
AegisName: Zodiac_Crown_Pack
|
|
Name: Zodiac Crown Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem callfunc("F_Rand",5546,5550,5570,5582,5588,5598,5662,5676,5739,5744,5513,5515),1;
|
|
- Id: 16677
|
|
AegisName: Universal_Catalog_Gold_Box10
|
|
Name: Universal Catalog Gold 10 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,10;
|
|
- Id: 16678
|
|
AegisName: Universal_Catalog_Gold_Box50
|
|
Name: Universal Catalog Gold 50 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,50;
|
|
- Id: 16679
|
|
AegisName: Universal_Catalog_Gold_Box10_
|
|
Name: Universal Catalog Gold 10 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,10;
|
|
- Id: 16680
|
|
AegisName: Universal_Catalog_Gold_Box50_
|
|
Name: Universal Catalog Gold 50 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,50;
|
|
- Id: 16681
|
|
AegisName: BR_Independence_Scroll
|
|
Name: BR Independence Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_BR_Independence_Scroll);
|
|
- Id: 16682
|
|
AegisName: Boarding_Halter_Box
|
|
Name: Boarding Halter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Boarding_Halter_Box);
|
|
/*rentitem 12622,604800;*/
|
|
- Id: 16683
|
|
AegisName: B_Halter_Box_30Days
|
|
Name: B Halter Box 30Days
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12622,2592000;
|
|
- Id: 16684
|
|
AegisName: Wing_Of_Fly_Box10
|
|
Name: Wing Of Fly Box10
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 601,10;
|
|
- Id: 16685
|
|
AegisName: Wing_Of_Fly_Box50
|
|
Name: Wing Of Fly Box50
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 601,50;
|
|
- Id: 16686
|
|
AegisName: Wing_Of_Fly_Box100
|
|
Name: Wing Of Fly Box100
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 601,100;
|
|
- Id: 16687
|
|
AegisName: RWC2010_SuitcaseA
|
|
Name: RWC2010 SuitcaseA
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_RWC2010_SuitcaseA);
|
|
- Id: 16688
|
|
AegisName: RWC2010_SuitcaseB
|
|
Name: RWC2010 SuitcaseB
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_RWC2010_SuitcaseB);
|
|
- Id: 16691
|
|
AegisName: Scorpius_Scroll
|
|
Name: Scorpius Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 16692
|
|
AegisName: Alice_Hat_Box
|
|
Name: Alice Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5137,1;
|
|
- Id: 16693
|
|
AegisName: Crescent_Helm_Box
|
|
Name: Crescent Helm Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5142,1;
|
|
- Id: 16694
|
|
AegisName: Crescent_Helm_Box_
|
|
Name: Crescent Helm Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5142,1;
|
|
- Id: 16695
|
|
AegisName: Dragon_Skull_Box
|
|
Name: Dragon Skull Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5292,1;
|
|
- Id: 16696
|
|
AegisName: Dragon_Skull_Box_
|
|
Name: Dragon Skull Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5292,1;
|
|
- Id: 16697
|
|
AegisName: Drooping_Bunny_Box
|
|
Name: Drooping Bunny Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5290,1;
|
|
- Id: 16698
|
|
AegisName: Drooping_Bunny_Box_
|
|
Name: Drooping Bunny Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5290,1;
|
|
- Id: 16699
|
|
AegisName: Evolved_Blue_Fish_Box
|
|
Name: Evolved Blue Fish Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5222,1;
|
|
- Id: 16701
|
|
AegisName: Evolved_Pair_of_Red_Ribbon_Box
|
|
Name: Evolved Pair of Red Ribbon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5221,1;
|
|
- Id: 16702
|
|
AegisName: Evolved_Pair_of_Red_Ribbon_Box_
|
|
Name: Evolved Pair of Red Ribbon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5221,1;
|
|
- Id: 16703
|
|
AegisName: Evolved_Pipe_Box
|
|
Name: Evolved Pipe Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5220,1;
|
|
- Id: 16704
|
|
AegisName: Evolved_Pipe_Box_
|
|
Name: Evolved Pipe Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5220,1;
|
|
- Id: 16705
|
|
AegisName: Hibiscus_Box
|
|
Name: Hibiscus Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5139,1;
|
|
- Id: 16706
|
|
AegisName: Hibiscus_Box_
|
|
Name: Hibiscus Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5139,1;
|
|
- Id: 16707
|
|
AegisName: Jumping_Poring_Box
|
|
Name: Jumping Poring Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5335,1;
|
|
- Id: 16708
|
|
AegisName: Jumping_Poring_Box_
|
|
Name: Jumping Poring Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5335,1;
|
|
- Id: 16709
|
|
AegisName: Kettle_Hat_Box
|
|
Name: Kettle Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5291,1;
|
|
- Id: 16710
|
|
AegisName: Kettle_Hat_Box_
|
|
Name: Kettle Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5291,1;
|
|
- Id: 16711
|
|
AegisName: Magic_Eyes_Box
|
|
Name: Magic Eyes Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5138,1;
|
|
- Id: 16712
|
|
AegisName: Magic_Eyes_Box_
|
|
Name: Magic Eyes Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5138,1;
|
|
- Id: 16713
|
|
AegisName: Mini_Propeller_Box
|
|
Name: Mini Propeller Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5226,1;
|
|
- Id: 16714
|
|
AegisName: Mini_Propeller_Box_
|
|
Name: Mini Propeller Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5226,1;
|
|
- Id: 16715
|
|
AegisName: Puppy_Hat_Box
|
|
Name: Puppy Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5182,1;
|
|
- Id: 16716
|
|
AegisName: Puppy_Hat_Box_
|
|
Name: Puppy Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5182,1;
|
|
- Id: 16717
|
|
AegisName: Sheep_Hat_Box
|
|
Name: Sheep Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5133,1;
|
|
- Id: 16718
|
|
AegisName: Sheep_Hat_Box_
|
|
Name: Sheep Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5133,1;
|
|
- Id: 16719
|
|
AegisName: Tiger_Mask_Box_
|
|
Name: Tiger Mask Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5098,1;
|
|
- Id: 16720
|
|
AegisName: Tiger_Mask_Box__
|
|
Name: Tiger Mask Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5098,1;
|
|
- Id: 16721
|
|
AegisName: Vaccation_Hat_Box
|
|
Name: Vacation Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5629,1;
|
|
- Id: 16722
|
|
AegisName: Vane_Hairpin_Box
|
|
Name: Vane Hairpin Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5285,1;
|
|
- Id: 16723
|
|
AegisName: Vane_Hairpin_Box_
|
|
Name: Vane Hairpin Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5285,1;
|
|
- Id: 16724
|
|
AegisName: Vanilmirth_Hat_Box
|
|
Name: Vanilmirth Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5289,1;
|
|
- Id: 16725
|
|
AegisName: Vanilmirth_Hat_Box_
|
|
Name: Vanilmirth Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5289,1;
|
|
- Id: 16726
|
|
AegisName: Water_Lily_Crown_Box
|
|
Name: Water Lily Crown Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5284,1;
|
|
- Id: 16727
|
|
AegisName: Water_Lily_Crown_Box_
|
|
Name: Water Lily Crown Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5284,1;
|
|
- Id: 16728
|
|
AegisName: Pink_Beanie_Hat_Box
|
|
Name: Pink Beanie Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5237,1;
|
|
- Id: 16729
|
|
AegisName: Pink_Beanie_Hat_Box_
|
|
Name: Pink Beanie Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5237,1;
|
|
- Id: 16730
|
|
AegisName: Green_Ribbon_Box
|
|
Name: Green Ribbon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5193,1;
|
|
- Id: 16731
|
|
AegisName: Green_Ribbon_Box_
|
|
Name: Green Ribbon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5193,1;
|
|
- Id: 16732
|
|
AegisName: Gray_Deviruchi_Hat_Box
|
|
Name: Gray Deviruchi Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5229,1;
|
|
- Id: 16733
|
|
AegisName: Gray_Deviruchi_Hat_Box_
|
|
Name: Gray Deviruchi Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5229,1;
|
|
- Id: 16734
|
|
AegisName: Blue_Drooping_Cat_Box
|
|
Name: Blue Drooping Cat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5233,1;
|
|
- Id: 16735
|
|
AegisName: Blue_Drooping_Cat_Box_
|
|
Name: Blue Drooping Cat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5233,1;
|
|
- Id: 16736
|
|
AegisName: Fantastic_Wig_Box
|
|
Name: Fantastic Wig Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5276,1;
|
|
- Id: 16737
|
|
AegisName: Fantastic_Wig_Box_
|
|
Name: Fantastic Wig Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5276,1;
|
|
- Id: 16738
|
|
AegisName: Yellow_Mage_Hat_Box
|
|
Name: Yellow Mage Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5242,1;
|
|
- Id: 16739
|
|
AegisName: Yellow_Mage_Hat_Box_
|
|
Name: Yellow Mage Hat Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
getitem 5242,1;
|
|
- Id: 16740
|
|
AegisName: Ptotection_Seagod_Box
|
|
Name: The Sea God's Call 23 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 6436,86400;
|
|
- Id: 16741
|
|
AegisName: Hairtail_Box1
|
|
Name: Cutlass 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Hairtail_Box1);*/
|
|
rentitem 1198,3600;
|
|
- Id: 16742
|
|
AegisName: Hairtail_Box2
|
|
Name: Cutlass 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Hairtail_Box2);*/
|
|
rentitem 1198,604800;
|
|
- Id: 16743
|
|
AegisName: Spearfish_Box1
|
|
Name: Marlin 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Spearfish_Box1);*/
|
|
rentitem 1489,3600;
|
|
- Id: 16744
|
|
AegisName: Spearfish_Box2
|
|
Name: Marlin 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Spearfish_Box2);*/
|
|
rentitem 1489,604800;
|
|
- Id: 16745
|
|
AegisName: Saurel_Box1
|
|
Name: Pompano 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Saurel_Box1);*/
|
|
rentitem 13068,3600;
|
|
- Id: 16746
|
|
AegisName: Saurel_Box2
|
|
Name: Pompano 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Saurel_Box2);*/
|
|
rentitem 13068,604800;
|
|
- Id: 16747
|
|
AegisName: Tuna_Box1
|
|
Name: Tuna 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Tuna_Box1);*/
|
|
rentitem 16016,3600;
|
|
- Id: 16748
|
|
AegisName: Tuna_Box2
|
|
Name: Tuna 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Tuna_Box2);*/
|
|
rentitem 16016,604800;
|
|
- Id: 16749
|
|
AegisName: Malang_Crab_Box1
|
|
Name: Malangdo Crab 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Malang_Crab_Box1);*/
|
|
rentitem 18107,3600;
|
|
- Id: 16750
|
|
AegisName: Malang_Crab_Box2
|
|
Name: Malangdo Crab 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Malang_Crab_Box2);*/
|
|
rentitem 18107,604800;
|
|
- Id: 16751
|
|
AegisName: Brindle_Eel_Box1
|
|
Name: Zebra Eel 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Brindle_Eel_Box1);*/
|
|
rentitem 18108,3600;
|
|
- Id: 16752
|
|
AegisName: Brindle_Eel_Box2
|
|
Name: Zebra Eel 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Brindle_Eel_Box2);*/
|
|
rentitem 18108,604800;
|
|
- Id: 16753
|
|
AegisName: Unbreak_Weap_Box
|
|
Name: Unbreakable Weapon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6438,1;
|
|
- Id: 16754
|
|
AegisName: F_Unbreak_Weap_Box
|
|
Name: Unbreakable Weapon Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6438,1;
|
|
- Id: 16755
|
|
AegisName: Unbreak_Def_Box
|
|
Name: Unbreakable Armor Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6439,1;
|
|
- Id: 16756
|
|
AegisName: F_Unbreak_Def_Box
|
|
Name: Unbreakable Armor Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6439,1;
|
|
- Id: 16757
|
|
AegisName: Hallo_Scroll
|
|
Name: Hallo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Hallo_Scroll);
|
|
- Id: 16760
|
|
AegisName: Umbala_Spirit_Box2
|
|
Name: Umbala Spirit Box2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Umbala_Spirit_Box2);
|
|
/*rentitem Umbala_Spirit,604800;*/
|
|
- Id: 16761
|
|
AegisName: F_Umbala_Spirit_Box2
|
|
Name: F Umbala Spirit Box2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_F_Umbala_Spirit_Box2);
|
|
/*rentitem Umbala_Spirit,604800;*/
|
|
- Id: 16763
|
|
AegisName: Ptotection_Seagod_Box2
|
|
Name: The Sea God's Call 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Ptotection_Seagod_Box2);*/
|
|
rentitem 6436,604800;
|
|
- Id: 16764
|
|
AegisName: Ptotection_Seagod_Box3
|
|
Name: The Sea God's Call 15 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Ptotection_Seagod_Box3);*/
|
|
rentitem 6436,1209600;
|
|
- Id: 16765
|
|
AegisName: Octo_Hstick_Box
|
|
Name: Octopus Hunting Skewer 23 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Octo_Hstick_Box);*/
|
|
rentitem 6442,86400;
|
|
- Id: 16766
|
|
AegisName: Octo_Hstick_Box2
|
|
Name: Octopus Hunting Skewer 3 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Octo_Hstick_Box2);*/
|
|
rentitem 6442,259200;
|
|
- Id: 16767
|
|
AegisName: Octo_Hstick_Box3
|
|
Name: Octopus Hunting Skewer 7 Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Octo_Hstick_Box3);*/
|
|
rentitem 6442,604800;
|
|
- Id: 16770
|
|
AegisName: Silvervine_Fruit_Box10
|
|
Name: Silvervine 10 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Silvervine_Fruit_Box10);*/
|
|
getitem 6417,10;
|
|
getitem 12636,30;
|
|
- Id: 16771
|
|
AegisName: Silvervine_Fruit_Box40
|
|
Name: Silvervine 40 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Silvervine_Fruit_Box40);*/
|
|
getitem 6417,40;
|
|
getitem 12636,120;
|
|
- Id: 16774
|
|
AegisName: Asgard_Scroll
|
|
Name: Asgard Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Asgard_Scroll);
|
|
- Id: 16775
|
|
AegisName: Sagittarius_Scroll
|
|
Name: Sagittarius Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sagittarius_Scroll);
|
|
- Id: 16776
|
|
AegisName: Universal_Catalog_Gold_Box10__
|
|
Name: Universal Catalog Gold 10 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,10;
|
|
- Id: 16777
|
|
AegisName: Universal_Catalog_Gold_Box50__
|
|
Name: Universal Catalog Gold 50 Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12581,50;
|
|
- Id: 16794
|
|
AegisName: C_Giant_Fly_Wing_Box
|
|
Name: Giant Flywing 500 Box
|
|
Type: Cash
|
|
Sell: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 12212,500,Bound_Account;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 16821
|
|
AegisName: Dungeon_Teleport_Scroll_Box_5
|
|
Name: Dungeon Teleport Scroll Box(5)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16822
|
|
AegisName: Dungeon_Teleport_Scroll_Box_10
|
|
Name: Dungeon Teleport Scroll Box(10)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16826
|
|
AegisName: Sagittarius_Scr_Box
|
|
Name: Sagittarius Scr Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sagittarius_Scr_Box);
|
|
- Id: 16837
|
|
AegisName: Dungeon_Teleport_Scroll_II_Box_5
|
|
Name: Dungeon Teleport Scroll II Box(5)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16838
|
|
AegisName: Dungeon_Teleport_Scroll_II_Box_10
|
|
Name: Dungeon Teleport Scroll II Box(10)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16843
|
|
AegisName: C_New_Style_Box
|
|
Name: Beauty Gift Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7622,1;
|
|
- Id: 16854
|
|
AegisName: CCloth_Dye_Coupon_Box
|
|
Name: Clothing Dye Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6046,1;
|
|
- Id: 16855
|
|
AegisName: CCloth_Dye_Coupon2_Box
|
|
Name: Clothing Dye Orig Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6047,1;
|
|
- Id: 16864
|
|
AegisName: Siege_Map_Teleport_Scroll_Box_10
|
|
Name: Siege Map Teleport Scroll Box(10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,10;
|
|
- Id: 16865
|
|
AegisName: Siege_Map_Teleport_Scroll_Box_30
|
|
Name: Siege Map Teleport Scroll Box(30)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,30;
|
|
- Id: 16866
|
|
AegisName: Siege_Map_Teleport_Scroll_II_Box_10
|
|
Name: Siege Map Teleport Scroll II Box(10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,10;
|
|
- Id: 16867
|
|
AegisName: Siege_Map_Teleport_Scroll_II_Box_30
|
|
Name: Siege Map Teleport Scroll II Box(30)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14591,30;
|
|
- Id: 16972
|
|
AegisName: Weather_Report_Box
|
|
Name: Weather Report Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Weather_Report_Box);*/
|
|
getitem 19507,1;
|
|
getitem 19518,1;
|
|
getitem 19520,1;
|
|
getitem 19519,1;
|
|
- Id: 16973
|
|
AegisName: Yellow_Hat_Box
|
|
Name: Yellow Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19515,1;
|
|
- Id: 16974
|
|
AegisName: Comin_Actor_Box
|
|
Name: Comin Actor Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Comin_Actor_Box);*/
|
|
getitem 19514,1;
|
|
getitem 19521,1;
|
|
- Id: 16975
|
|
AegisName: Singing_Bird_Box
|
|
Name: Singing Bird Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19516,1;
|
|
- Id: 16976
|
|
AegisName: Hen_Set_Box
|
|
Name: Hen Set Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Hen_Set_Box);*/
|
|
getitem 19513,1;
|
|
getitem 19517,1;
|
|
- Id: 16977
|
|
AegisName: Red_Minicrown_Box
|
|
Name: Red Minicrown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19522,1;
|
|
- Id: 16979
|
|
AegisName: Silvervine_Fruit_Box4
|
|
Name: Silvervine 4 Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Silvervine_Fruit_Box4);*/
|
|
getitem 6417,4;
|
|
getitem 12636,12;
|
|
- Id: 16990
|
|
AegisName: Sagittar_Diadem_Scroll
|
|
Name: Sagittar Diadem Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sagittar_Diadem_Scroll);
|
|
- Id: 16991
|
|
AegisName: Sagittar_Di_Scroll_Box
|
|
Name: Sagittar Di Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sagittar_Di_Scroll_Box);
|
|
- Id: 16992
|
|
AegisName: Butterfly_Wing_Box20
|
|
Name: Butterfly Wing Box20
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 602,20;
|
|
- Id: 16993
|
|
AegisName: Butterfly_Wing_Box50
|
|
Name: Butterfly Wing Box50
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 602,50;
|
|
- Id: 16995
|
|
AegisName: Old_Hat_Box
|
|
Name: Old Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 16996
|
|
AegisName: Capri_Crown_Scroll
|
|
Name: Capri Crown Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Capri_Crown_Scroll);
|
|
- Id: 16997
|
|
AegisName: Capri_Crown_Scroll_Box
|
|
Name: Capri Crown Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Capri_Crown_Scroll_Box);
|
|
- Id: 16998
|
|
AegisName: Archangel_Wing_Box
|
|
Name: Archangel Wings Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2573,1;
|
|
- Id: 16999
|
|
AegisName: Bravery_Bag_Box
|
|
Name: Bravery Bag Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2576,1;
|
|
- Id: 17000
|
|
AegisName: Wander_Man_Box5
|
|
Name: Wander Man Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12626,5;
|
|
- Id: 17001
|
|
AegisName: Wander_Man_Box10
|
|
Name: Wander Man Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12626,10;
|
|
- Id: 17002
|
|
AegisName: Wicked_Nymph_Box5
|
|
Name: Wicked Nymph Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12627,5;
|
|
- Id: 17003
|
|
AegisName: Wicked_Nymph_Box10
|
|
Name: Wicked Nymph Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12627,10;
|
|
- Id: 17004
|
|
AegisName: Kasa_Scroll_Box5
|
|
Name: Kasa Scroll Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12628,5;
|
|
- Id: 17005
|
|
AegisName: Kasa_Scroll_Box10
|
|
Name: Kasa Scroll Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12628,10;
|
|
- Id: 17006
|
|
AegisName: Salamander_Box5
|
|
Name: Salamander Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12629,5;
|
|
- Id: 17007
|
|
AegisName: Salamander_Box10
|
|
Name: Salamander Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12629,10;
|
|
- Id: 17008
|
|
AegisName: Teddy_Bear_Box5
|
|
Name: Teddy Bear Box5
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12630,5;
|
|
- Id: 17009
|
|
AegisName: Teddy_Bear_Box10
|
|
Name: Teddy Bear Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 12630,10;
|
|
- Id: 17011
|
|
AegisName: Capricon_Di_Scroll
|
|
Name: Capricon Di Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Capricon_Di_Scroll);
|
|
- Id: 17012
|
|
AegisName: Capricon_Di_Scroll_Box
|
|
Name: Capricon Di Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Capricon_Di_Scroll_Box);
|
|
- Id: 17013
|
|
AegisName: Malang_Woe_Encard_Box
|
|
Name: Malang Woe Encard Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(IG_Malang_Woe_Encard_Box);*/
|
|
getitem 16740,1;
|
|
getitem 16765,1;
|
|
- Id: 17014
|
|
AegisName: Butterfly_ear_Box
|
|
Name: Butterfly ear Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19509,1;
|
|
- Id: 17015
|
|
AegisName: Stuckhead_Screw_Box
|
|
Name: Stuckhead Screw Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19510,1;
|
|
- Id: 17016
|
|
AegisName: Aquarius_Diadem_Scroll
|
|
Name: Aquarius Diadem Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Aquarius_Diadem_Scroll);
|
|
- Id: 17017
|
|
AegisName: Aquarius_Di_Scroll_Box
|
|
Name: Aquarius Di Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Aquarius_Di_Scroll_Box);
|
|
- Id: 17018
|
|
AegisName: Libra_Scroll2
|
|
Name: Libra Scroll2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17019
|
|
AegisName: Scorpio_Scroll2
|
|
Name: Scorpio Scroll2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17020
|
|
AegisName: Tw_Nov_Scroll2
|
|
Name: Tw Nov Scroll2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Nov_Scroll2);
|
|
- Id: 17021
|
|
AegisName: Summer_Scroll3
|
|
Name: Summer Scroll3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Summer_Scroll3);
|
|
- Id: 17022
|
|
AegisName: Super_Pet_Egg1_2
|
|
Name: Super Pet Egg1 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg1_2);
|
|
- Id: 17023
|
|
AegisName: Super_Pet_Egg4_2
|
|
Name: Super Pet Egg4 2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Super_Pet_Egg4_2);
|
|
- Id: 17024
|
|
AegisName: Lovely_Aquarius_Scroll
|
|
Name: Lovely Aquarius Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Lovely_Aquarius_Scroll);
|
|
- Id: 17025
|
|
AegisName: Lovely_Aquarius_Box
|
|
Name: Lovely Aquarius Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Lovely_Aquarius_Box);
|
|
- Id: 17026
|
|
AegisName: Boitata_Scroll
|
|
Name: Boitata Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Boitata_Scroll);
|
|
- Id: 17028
|
|
AegisName: Pisces_Diadem_Scroll
|
|
Name: Pisces Diadem Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Pisces_Diadem_Scroll);
|
|
- Id: 17029
|
|
AegisName: Pisces_Diadem_Box_
|
|
Name: Pisces Diadem Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Pisces_Diadem_Box);
|
|
- Id: 17030
|
|
AegisName: St_Pat_Hat_box
|
|
Name: St Pat Hat box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 100
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18565,1;
|
|
- Id: 17035
|
|
AegisName: Energetic_Pisces_Scroll
|
|
Name: Energetic Pisces Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Energetic_Pisces_Scroll);
|
|
- Id: 17036
|
|
AegisName: Energetic_Pisces_Box
|
|
Name: Energetic Pisces Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Energetic_Pisces_Box);
|
|
- Id: 17037
|
|
AegisName: Trans_Box_Devi
|
|
Name: Trans Box Devi
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12658,10;
|
|
- Id: 17038
|
|
AegisName: Trans_Box_Ray_Arch
|
|
Name: Trans Box Ray Arch
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12659,10;
|
|
- Id: 17039
|
|
AegisName: Trans_Box_Mavka
|
|
Name: Trans Box Mavka
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12660,10;
|
|
- Id: 17040
|
|
AegisName: Trans_Box_Marduk
|
|
Name: Trans Box Marduk
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12661,10;
|
|
- Id: 17041
|
|
AegisName: Trans_Box_Banshee
|
|
Name: Trans Box Banshee
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12662,10;
|
|
- Id: 17042
|
|
AegisName: Trans_Box_Poring
|
|
Name: Trans Box Poring
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12663,10;
|
|
- Id: 17043
|
|
AegisName: Trans_Box_Golem
|
|
Name: Trans Box Golem
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12664,10;
|
|
- Id: 17050
|
|
AegisName: Aries_Scroll_
|
|
Name: Aries Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Aries_Scroll);
|
|
- Id: 17051
|
|
AegisName: Aries_Scroll_Box
|
|
Name: Aries Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Aries_Scroll_Box);
|
|
- Id: 17052
|
|
AegisName: Holy_Mom_Blaze_Box
|
|
Name: Holy Mom Blaze Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6472,1;
|
|
- Id: 17056
|
|
AegisName: Wiz_Card_Album
|
|
Name: Wiz Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17057
|
|
AegisName: Swordman_Card_Album
|
|
Name: Swordman Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17058
|
|
AegisName: Thief_Card_Album
|
|
Name: Thief Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17059
|
|
AegisName: Acolyte_Card_Album
|
|
Name: Acolyte Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17060
|
|
AegisName: Merchant_Card_Album
|
|
Name: Merchant Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17061
|
|
AegisName: Archer_Card_Album
|
|
Name: Archer Card Album
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17062
|
|
AegisName: Taurus_Diadem_Scroll
|
|
Name: Taurus Diadem Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Taurus_Diadem_Scroll);
|
|
- Id: 17063
|
|
AegisName: Taurus_Di_Scroll_Box
|
|
Name: Taurus Di Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Taurus_Di_Scroll_Box);
|
|
- Id: 17064
|
|
AegisName: Tw_Sagitt_Scroll
|
|
Name: Tw Sagitt Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17066
|
|
AegisName: Poison_Bottle_Box50
|
|
Name: Poison Bottle Box50
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 678,50;
|
|
- Id: 17067
|
|
AegisName: Poison_Bottle_Box100
|
|
Name: Poison Bottle Box100
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 678,100;
|
|
- Id: 17068
|
|
AegisName: Acidbomb_Box50
|
|
Name: Acidbomb Box50
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 7135,50;
|
|
getitem 7136,50;
|
|
- Id: 17069
|
|
AegisName: Acidbomb_Box100
|
|
Name: Acidbomb Box100
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 7135,100;
|
|
getitem 7136,100;
|
|
- Id: 17070
|
|
AegisName: Acidbomb_Box500
|
|
Name: Acidbomb Box500
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 7135,500;
|
|
getitem 7136,500;
|
|
- Id: 17071
|
|
AegisName: Superb_Fish_Box50
|
|
Name: Superb Fish Box50
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14524,50;
|
|
- Id: 17072
|
|
AegisName: Superb_Fish_Box100
|
|
Name: Superb Fish Box100
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14524,100;
|
|
- Id: 17073
|
|
AegisName: Superb_Fish_Box500
|
|
Name: Superb Fish Box500
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 14524,500;
|
|
- Id: 17074
|
|
AegisName: Empty_Bottle_Box10
|
|
Name: Empty Bottle Box10
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 713,10;
|
|
- Id: 17075
|
|
AegisName: Empty_Bottle_Box100
|
|
Name: Empty Bottle Box100
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 713,100;
|
|
- Id: 17076
|
|
AegisName: Empty_Bottle_Box500
|
|
Name: Empty Bottle Box500
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 713,500;
|
|
- Id: 17077
|
|
AegisName: Taurus_Crown_Scroll
|
|
Name: Taurus Crown Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Taurus_Crown_Scroll);
|
|
- Id: 17078
|
|
AegisName: Taurus_Crown_Scroll_Box
|
|
Name: Taurus Crown Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Taurus_Crown_Scroll_Box);
|
|
- Id: 17079
|
|
AegisName: Indonesia_Box2
|
|
Name: Indonesia Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 602,5;
|
|
getitem 601,50;
|
|
getitem 12118,3;
|
|
getitem 12119,3;
|
|
getitem 12120,3;
|
|
getitem 12121,3;
|
|
- Id: 17080
|
|
AegisName: Scorpio_Scroll3
|
|
Name: Scorpio Scroll3
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17081
|
|
AegisName: Yggdrasil_Crown_Box
|
|
Name: Yggdrasil Crown Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 18580,1;
|
|
- Id: 17082
|
|
AegisName: Gemi_Diadem_Scroll
|
|
Name: Gemi Diadem Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Gemi_Diadem_Scroll);
|
|
- Id: 17083
|
|
AegisName: Gemi_Diadem_Scroll_Box
|
|
Name: Gemi Diadem Scroll Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Gemi_Diadem_Scroll_Box);
|
|
- Id: 17084
|
|
AegisName: Upg_Katar_Box
|
|
Name: Upg Katar Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1292,1;
|
|
- Id: 17085
|
|
AegisName: Upg_Two_Handed_Axe_Box
|
|
Name: Upg Two Handed Axe Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1394,1;
|
|
- Id: 17086
|
|
AegisName: Upg_Lance_Box
|
|
Name: Upg Lance Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1491,1;
|
|
- Id: 17087
|
|
AegisName: Upg_Book_Box
|
|
Name: Upg Book Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1585,1;
|
|
- Id: 17088
|
|
AegisName: Upg_Staff_Box
|
|
Name: Upg Staff Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2015,1;
|
|
- Id: 17089
|
|
AegisName: Upg_Dagger_Box
|
|
Name: Upg Dagger Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13071,1;
|
|
- Id: 17090
|
|
AegisName: Upg_Revolver_Box
|
|
Name: Upg Revolver
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 13115,1;
|
|
- Id: 17091
|
|
AegisName: Upg_Mace_Box
|
|
Name: Upg Mace Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 16019,1;
|
|
- Id: 17092
|
|
AegisName: Upg_Bow_Box
|
|
Name: Upg Bow Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 18112,1;
|
|
- Id: 17093
|
|
AegisName: Upg_Twohand_Sword_Box
|
|
Name: Upg Two-Handed Sword Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 21000,1;
|
|
- Id: 17094
|
|
AegisName: Upg_Katar_Box2
|
|
Name: Upg Katar Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17095
|
|
AegisName: Upg_Two_Handed_Axe_Box2
|
|
Name: Upg Two-Hand Axe Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17096
|
|
AegisName: Upg_Lance_Box2
|
|
Name: Upg Lance Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17097
|
|
AegisName: Upg_Book_Box2
|
|
Name: Upg_Book_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17098
|
|
AegisName: Upg_Staff_Box2
|
|
Name: Upg_Staff_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17099
|
|
AegisName: Upg_Dagger_Box2
|
|
Name: Upg_Dagger_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17100
|
|
AegisName: Upg_Revolver_Box2
|
|
Name: Upg_Revolver_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17101
|
|
AegisName: Upg_Mace_Box2
|
|
Name: Upg_Mace_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17102
|
|
AegisName: Upg_Bow_Box2
|
|
Name: Upg_Bow_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17103
|
|
AegisName: Upg_Twohand_Sword_Box2
|
|
Name: Upg_Twohand_Sword_Box2
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17104
|
|
AegisName: HD_Oridecon_50Box
|
|
Name: HD Oridecon 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6240,50;
|
|
- Id: 17105
|
|
AegisName: HD_Elunium_50Box
|
|
Name: HD Elunium 50 Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6241,50;
|
|
- Id: 17106
|
|
AegisName: Max_Weight_Up_10Box
|
|
Name: Heavy Lifter Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7776,10;
|
|
- Id: 17107
|
|
AegisName: Gemi_Crown_Scroll
|
|
Name: Gemi Crown Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Gemi_Crown_Scroll);
|
|
- Id: 17108
|
|
AegisName: Gemi_Crown_Scroll_Box
|
|
Name: Gemi Crown Scroll Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Gemi_Crown_Scroll_Box);
|
|
- Id: 17109
|
|
AegisName: Capri_Scroll
|
|
Name: Capri Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17110
|
|
AegisName: Aquarius_Scroll
|
|
Name: Aquarius Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17113
|
|
AegisName: Pisces_Scroll
|
|
Name: Pisces Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17114
|
|
AegisName: Horn_Of_Ancient_Box
|
|
Name: Horn Of Ancient Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18595,1;
|
|
- Id: 17115
|
|
AegisName: Sprout_Hat_Box
|
|
Name: Sprout Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18596,1;
|
|
- Id: 17116
|
|
AegisName: Mercury_Helm_Box
|
|
Name: Mercury Helm Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18597,1;
|
|
- Id: 17117
|
|
AegisName: Aries_Scroll
|
|
Name: Aries Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17118
|
|
AegisName: ASPD_Potion_Box10
|
|
Name: ASPD Enhanced Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12684,10;
|
|
- Id: 17120
|
|
AegisName: Taurus_Scroll
|
|
Name: Taurus Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17121
|
|
AegisName: Starry_Scroll
|
|
Name: Starry Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17122
|
|
AegisName: Immuned_Shield_Box
|
|
Name: Immuned Shield Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2168,1;
|
|
- Id: 17123
|
|
AegisName: Black_Devil_Mask_Box
|
|
Name: Black Devil Mask Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 18599,1;
|
|
- Id: 17124
|
|
AegisName: Cat_Ears_Beret_Box
|
|
Name: Cat Ears Beret Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18600,1;
|
|
- Id: 17125
|
|
AegisName: Red_Bread_Hat_Box
|
|
Name: Red Bread Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18601,1;
|
|
- Id: 17126
|
|
AegisName: ASPD_Potion_Box10_2
|
|
Name: ASPD Enhanced Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12684,10;
|
|
- Id: 17127
|
|
AegisName: Leo_Scroll2
|
|
Name: Leo Scroll2
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17134
|
|
AegisName: RWC_Scroll
|
|
Name: RWC Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17138
|
|
AegisName: Ms_Cancer_Scroll
|
|
Name: Ms Cancer Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Ms_Cancer_Scroll);
|
|
- Id: 17139
|
|
AegisName: RWC_Super_Scroll
|
|
Name: RWC Super Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_Super_Scroll);
|
|
- Id: 17140
|
|
AegisName: Leo_Scroll_
|
|
Name: Leo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Leo_Scroll);
|
|
- Id: 17141
|
|
AegisName: Ms_Virgo_Scroll
|
|
Name: Ms Virgo Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Ms_Virgo_Scroll);
|
|
- Id: 17143
|
|
AegisName: Ms_Scorpio_Scroll
|
|
Name: Ms Scorpio Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Ms_Scorpio_Scroll);
|
|
- Id: 17146
|
|
AegisName: Dep_Alice_Hat_Box
|
|
Name: Dep Alice Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18630,1;
|
|
- Id: 17147
|
|
AegisName: Ribbon_Chef_Hat_Box
|
|
Name: Ribbon Chef Hat Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18631,1;
|
|
- Id: 17152
|
|
AegisName: Bridal_Ribbon_Box
|
|
Name: Bridal Ribbon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 18636,1;
|
|
- Id: 17155
|
|
AegisName: Upg_Huuma_Shuriken_Box
|
|
Name: Upg Huuma Shuriken Box
|
|
Type: Usable
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 13316,86400;
|
|
- Id: 17156
|
|
AegisName: TCG_Card_Scroll
|
|
Name: Bossnia Ticket Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_TCG_Card_Scroll);
|
|
- Id: 17157
|
|
AegisName: Vital_Flower_Box
|
|
Name: Vital Flower Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6113,10;
|
|
- Id: 17158
|
|
AegisName: Flame_Gemstone_Box
|
|
Name: Flame Gemstone Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6114,10;
|
|
- Id: 17159
|
|
AegisName: Change_Name_Card_Box
|
|
Name: Name Change Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17160
|
|
AegisName: Character_Name_Change_Card_Box
|
|
Name: Character Name Change Card Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17162
|
|
AegisName: Boarding_Halter_Box7
|
|
Name: Boarding Halter Box7
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12622,604800;
|
|
- Id: 17165
|
|
AegisName: Challenge_Kit
|
|
Name: Challenge Kit
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Challenge_Kit);
|
|
/*getitem Blessing_10_Scroll,20; getitem Inc_Agi_10_Scroll,20;*/
|
|
- Id: 17176
|
|
AegisName: Boarding_Halter_Box3
|
|
Name: Halter Lead Box[Trial]
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12622,259200;
|
|
- Id: 17181
|
|
AegisName: Jan_Groove_Box
|
|
Name: Jan Groove Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17184
|
|
AegisName: 3rd_Test_Pass_Box
|
|
Name: 3rd Test Pass Box
|
|
Type: Cash
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getitem 6583,1;
|
|
- Id: 17203
|
|
AegisName: Free_Pass_Box
|
|
Name: Free Pass Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17204
|
|
AegisName: Shining_Egg
|
|
Name: Shining Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Shining_Egg);
|
|
- Id: 17207
|
|
AegisName: Idn_Heart_Scroll
|
|
Name: Idn Heart Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Script: |
|
|
getgroupitem(IG_Idn_Heart_Scroll);
|
|
- Id: 17209
|
|
AegisName: Tw_Rainbow_Scroll
|
|
Name: Tw Rainbow Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Rainbow_Scroll);
|
|
- Id: 17210
|
|
AegisName: Tw_Red_Scroll
|
|
Name: Tw Red Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Red_Scroll);
|
|
- Id: 17211
|
|
AegisName: Tw_Orange_Scroll
|
|
Name: Tw Orange Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Orange_Scroll);
|
|
- Id: 17212
|
|
AegisName: Tw_Yellow_Scroll
|
|
Name: Tw Yellow Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Tw_Yellow_Scroll);
|
|
- Id: 17226
|
|
AegisName: Infinite_Concentration_Potion_
|
|
Name: Infinite Concentration Potion
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12884,604800;
|
|
- Id: 17227
|
|
AegisName: Infinite_Awakening_Potion_
|
|
Name: Infinite Awakening Potion
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12885,604800;
|
|
- Id: 17228
|
|
AegisName: Infinite_Berserk_Potion_
|
|
Name: Infinite Berserk Potion
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12886,604800;
|
|
- Id: 17229
|
|
AegisName: Infinite_Flywing_Box
|
|
Name: Infinite Flywing Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12887,604800;
|
|
- Id: 17230
|
|
AegisName: Valerian_Scroll
|
|
Name: Valerian Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Valerian_Scroll);
|
|
- Id: 17231
|
|
AegisName: Refinement_Ore_Box
|
|
Name: Refinement Ore Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,1;
|
|
getitem 7620,1;
|
|
- Id: 17232
|
|
AegisName: Refinement_Box_7
|
|
Name: Refinement box(7)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6230,1;
|
|
getitem 6234,1;
|
|
- Id: 17233
|
|
AegisName: Scroll_Of_Death
|
|
Name: Scroll Of Death
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Death);
|
|
- Id: 17234
|
|
AegisName: Scroll_Of_Life
|
|
Name: Scroll Of Life
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Life);
|
|
- Id: 17235
|
|
AegisName: Scroll_Of_Magic
|
|
Name: Scroll Of Magic
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Magic);
|
|
- Id: 17236
|
|
AegisName: Scroll_Of_Thews
|
|
Name: Scroll Of Thews
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Thews);
|
|
- Id: 17237
|
|
AegisName: Scroll_Of_Darkness
|
|
Name: Scroll Of Darkness
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Darkness);
|
|
- Id: 17238
|
|
AegisName: Scroll_Of_Holiness
|
|
Name: Scroll Of Holiness
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Scroll_Of_Holiness);
|
|
- Id: 17239
|
|
AegisName: Horned_Scroll
|
|
Name: Horned Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Horned_Scroll);
|
|
- Id: 17240
|
|
AegisName: Mercury_Scroll
|
|
Name: Mercury Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Mercury_Scroll);
|
|
- Id: 17241
|
|
AegisName: Amistr_Cap_Box
|
|
Name: Amistir Cap Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Defense: 4
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 5766,1;
|
|
- Id: 17242
|
|
AegisName: Immortal_Egg
|
|
Name: Immortal Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Immortal_Egg);
|
|
- Id: 17244
|
|
AegisName: Event_Almighty_Box
|
|
Name: Event Almighty Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12883,10;
|
|
- Id: 17245
|
|
AegisName: Idn_Independ_Scroll
|
|
Name: Idn Independ Scroll
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
UniqueId: true
|
|
- Id: 17246
|
|
AegisName: HD_Elunium_Box_30
|
|
Name: HD Elunium Box(30)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6241,30;
|
|
- Id: 17247
|
|
AegisName: HD_Oridecon_Box_30
|
|
Name: HD Oridecon Box(30)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6240,30;
|
|
- Id: 17251
|
|
AegisName: C_Wing_Of_Fly_3Day_Box
|
|
Name: C Wing Of Fly 3Day Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_C_Wing_Of_Fly_3Day_Box);
|
|
- Id: 17252
|
|
AegisName: RWC_2012_Set_Box
|
|
Name: RWC 2012 Set Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_RWC_2012_Set_Box);
|
|
- Id: 17253
|
|
AegisName: RWC_2012_Ring_Box
|
|
Name: RWC 2012 Ring Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2966,1;
|
|
- Id: 17254
|
|
AegisName: RWC_2012_Pendant_Box
|
|
Name: RWC 2012 Pendant Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2968,1;
|
|
- Id: 17255
|
|
AegisName: Sapphire_Egg
|
|
Name: Sapphire Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Sapphire_Egg);
|
|
- Id: 17256
|
|
AegisName: Good_Student_Gift_Box
|
|
Name: Good Student Gift Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Good_Student_Gift_Box);
|
|
- Id: 17257
|
|
AegisName: Bad_Student_Gift_Box
|
|
Name: Bad Student Gift Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Bad_Student_Gift_Box);
|
|
- Id: 17262
|
|
AegisName: Ex_Def_Potion_Box
|
|
Name: Special Defense Potion Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Ex_Def_Potion_Box);
|
|
/*getitem Ex_Def_Potion,5; getitem RWC_Scroll_2012,1;*/
|
|
- Id: 17263
|
|
AegisName: Infinite_Concentration_Potion_3rd_Box
|
|
Name: Infinite Concentration Potion 3rd Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12884,259200;
|
|
- Id: 17264
|
|
AegisName: Infinite_Awakening_Potion_3rd_Box
|
|
Name: Infinite Awakening Potion 3rd Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12885,259200;
|
|
- Id: 17265
|
|
AegisName: Infinite_Berserk_Potion_3rd_Box
|
|
Name: Infinite Berserk Potion 3rd Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12886,259200;
|
|
- Id: 17266
|
|
AegisName: Limited_Battle_Manual_Package
|
|
Name: Limited Battle Manual Package
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 17263,1;
|
|
getitem 17264,1;
|
|
getitem 17265,1;
|
|
- Id: 17270
|
|
AegisName: STR_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Strength Box
|
|
Type: Cash
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14616,20;
|
|
- Id: 17271
|
|
AegisName: VIT_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Vitality Box
|
|
Type: Cash
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14617,20;
|
|
- Id: 17272
|
|
AegisName: AGI_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Agility Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14618,20;
|
|
- Id: 17273
|
|
AegisName: INT_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Intellgence Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14619,20;
|
|
- Id: 17274
|
|
AegisName: DEX_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Dexterity Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14620,20;
|
|
- Id: 17275
|
|
AegisName: LUK_Biscuit_Stick_Box
|
|
Name: Bar Cookie Of Luck Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14621,20;
|
|
- Id: 17277
|
|
AegisName: Unlimited_Box
|
|
Name: Unlimited Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Unlimited_Box);
|
|
- Id: 17278
|
|
AegisName: Unlimited_Box_10
|
|
Name: Unlimited Box(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Unlimited_Box_10);
|
|
- Id: 17281
|
|
AegisName: Refinement_Ore_Box_IV
|
|
Name: Refinement Ore Box IV
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 14627,1;
|
|
- Id: 17282
|
|
AegisName: Refinement_Ore_Box_IV_10
|
|
Name: Refinement Ore Box IV(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 14627,11;
|
|
- Id: 17283
|
|
AegisName: Refinement_Ore_Box_IV_20
|
|
Name: Refinement Ore Box IV(20)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,100;
|
|
getitem 7620,100;
|
|
getitem 14627,23;
|
|
- Id: 17285
|
|
AegisName: Events_Beauty_Gift_Box
|
|
Name: Events Beauty Gift Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO*/
|
|
- Id: 17289
|
|
AegisName: Wing_Of_Baalzebub_Box
|
|
Name: Beelzebub Wing Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
UniqueId: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 14645,2592000;
|
|
- Id: 17292
|
|
AegisName: Shadow_Box
|
|
Name: Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24018,24019,24020,24021,24022,24023,24024,24025,24026),1;
|
|
- Id: 17293
|
|
AegisName: Shadow_Physical_Package
|
|
Name: Shadow Physical Package
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24018,24019,24020,24024,24025,24026),1;
|
|
- Id: 17294
|
|
AegisName: Shadow_Magical_Package
|
|
Name: Shadow Magical Package
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24021,24022,24023,24024,24025,24026),1;
|
|
- Id: 17298
|
|
AegisName: Support_Package
|
|
Name: Support Package
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package);
|
|
- Id: 17299
|
|
AegisName: Support_Package_10
|
|
Name: Support Package(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package_10);
|
|
- Id: 17302
|
|
AegisName: Shadow_Box_II_
|
|
Name: Shadow Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17303
|
|
AegisName: Shadow_Set_Box_II
|
|
Name: Shadow Set Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 17304
|
|
AegisName: Neuralizer_Box_3
|
|
Name: Neuralizer Box 3
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12213,3;
|
|
- Id: 17306
|
|
AegisName: Status_Reset_Coupon_Box
|
|
Name: Status Reset Coupon Box
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",6720,6721),1;
|
|
- Id: 17307
|
|
AegisName: Midgard_Scroll
|
|
Name: Midgard Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Midgard_Scroll);
|
|
- Id: 17308
|
|
AegisName: Half_Asprika_box1
|
|
Name: Half Asprika box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 2566,86400;
|
|
- Id: 17311
|
|
AegisName: Half_Brynhild_box1
|
|
Name: Half Brynhild box1
|
|
Type: Usable
|
|
Buy: 20
|
|
EquipLevelMin: 47
|
|
Script: |
|
|
rentitem 15023,86400;
|
|
- Id: 17314
|
|
AegisName: C_Wing_Of_Fly_1Day_Box
|
|
Name: Infinite Giant Fly Wing Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12212,86400;
|
|
- Id: 17315
|
|
AegisName: Lucky_Silvervine_Fruit_Box_10
|
|
Name: Lucky Silvervine Fruit Box(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6417,10;
|
|
- Id: 17316
|
|
AegisName: Lucky_Silvervine_Fruit_Box_110
|
|
Name: Lucky Silvervine Fruit Box(110)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6417,110;
|
|
- Id: 17317
|
|
AegisName: Sweet_Midgard_Scroll
|
|
Name: Sweet Midgard Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sweet_Midgard_Scroll);
|
|
- Id: 17320
|
|
AegisName: IdRO10th_Scroll
|
|
Name: Birthday IdRO10th Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_IdRO10th_Scroll);
|
|
- Id: 17321
|
|
AegisName: Three_Master_Package
|
|
Name: Three Master Package
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the items and rates*/
|
|
getitem 14534,20;
|
|
getitem 14535,20;
|
|
- Id: 17322
|
|
AegisName: Three_Master_Package_10
|
|
Name: Three Master Package(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the items and rates*/
|
|
getitem 14534,200;
|
|
getitem 14535,200;
|
|
- Id: 17326
|
|
AegisName: Requiem_Scroll
|
|
Name: Requiem Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Requiem_Scroll);
|
|
- Id: 17331
|
|
AegisName: Event_Almighty_Box_
|
|
Name: Event Almighty Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Event_Almighty_Box);
|
|
- Id: 17332
|
|
AegisName: Event_Almighty_Box_100
|
|
Name: Event Almighty Box(100)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Event_Almighty_Box_100);
|
|
- Id: 17336
|
|
AegisName: J_Shop_Coupon_Box
|
|
Name: Cash Hair Coupon Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6707,1;
|
|
- Id: 17337
|
|
AegisName: Holy_Spirit_Scroll
|
|
Name: Holy Spirit Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Holy_Spirit_Scroll);
|
|
- Id: 17338
|
|
AegisName: Ore_Box_V
|
|
Name: Ore Box V
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 14696,1;
|
|
- Id: 17339
|
|
AegisName: Ore_Box_V_10
|
|
Name: Ore Box V(10)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 14696,11;
|
|
- Id: 17394
|
|
AegisName: Event_Old_Headgear_Box
|
|
Name: Event Old Headgear Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 17396
|
|
AegisName: Half_L_Magestic_Goat_Box1
|
|
Name: Half L Magestic Goat Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 5887,86400;
|
|
- Id: 17397
|
|
AegisName: Half_L_Magestic_Goat_Box7
|
|
Name: Half L Magestic Goat Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 5887,604800;
|
|
- Id: 17398
|
|
AegisName: Half_BF_Spear1_Box1
|
|
Name: Half BF Spear1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1439,86400;
|
|
- Id: 17399
|
|
AegisName: Half_BF_Spear1_Box7
|
|
Name: Half BF Spear1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1439,604800;
|
|
- Id: 17400
|
|
AegisName: Half_BF_Book2_Box1
|
|
Name: Half BF Book2 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1597,86400;
|
|
- Id: 17401
|
|
AegisName: Half_BF_Book2_Box7
|
|
Name: Half BF Book2 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1597,604800;
|
|
- Id: 17402
|
|
AegisName: Half_BF_Staff4_Box1
|
|
Name: Half BF Staff4 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1673,86400;
|
|
- Id: 17403
|
|
AegisName: Half_BF_Staff4_Box7
|
|
Name: Half BF Staff4 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1673,604800;
|
|
- Id: 17404
|
|
AegisName: Half_BF_Staff2_Box1
|
|
Name: Half BF Staff2 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1674,86400;
|
|
- Id: 17405
|
|
AegisName: Half_BF_Staff2_Box7
|
|
Name: Half BF Staff2 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1674,604800;
|
|
- Id: 17406
|
|
AegisName: Half_BF_Knuckle1_Box1
|
|
Name: Half BF Knuckle1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1838,86400;
|
|
- Id: 17407
|
|
AegisName: Half_BF_Knuckle1_Box7
|
|
Name: Half BF Knuckle1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 1838,604800;
|
|
- Id: 17408
|
|
AegisName: Half_BF_Dagger2_Box1
|
|
Name: Half BF Dagger2 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13096,86400;
|
|
- Id: 17409
|
|
AegisName: Half_BF_Dagger2_Box7
|
|
Name: Half BF Dagger2 Box1s
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13096,604800;
|
|
- Id: 17410
|
|
AegisName: Half_BF_Huuma_Shuriken2_Box1
|
|
Name: Half BF Huuma Shuriken2 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13321,86400;
|
|
- Id: 17411
|
|
AegisName: Half_BF_Huuma_Shuriken2_Box7
|
|
Name: Half BF Huuma Shuriken2 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13321,604800;
|
|
- Id: 17412
|
|
AegisName: Half_BF_Sword1_Box1
|
|
Name: Half BF Sword1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13445,86400;
|
|
- Id: 17413
|
|
AegisName: Half_BF_Sword1_Box7
|
|
Name: Half BF Sword1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 13445,604800;
|
|
- Id: 17414
|
|
AegisName: Half_Mjolnir_Box1
|
|
Name: Half Mjolnir Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 16034,86400;
|
|
- Id: 17415
|
|
AegisName: Half_Mjolnir_Box7
|
|
Name: Half Mjolnir Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 16034,604800;
|
|
- Id: 17416
|
|
AegisName: Half_BF_Morning_Star1_Box1
|
|
Name: Half BF Morning Star1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 16035,86400;
|
|
- Id: 17417
|
|
AegisName: Half_BF_Morning_Star1_Box7
|
|
Name: Half BF Morning Star1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 16035,604800;
|
|
- Id: 17418
|
|
AegisName: Half_BF_Bow1_Box1
|
|
Name: Half BF Bow1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 18124,86400;
|
|
- Id: 17419
|
|
AegisName: Half_BF_Bow1_Box7
|
|
Name: Half BF Bow1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 18124,604800;
|
|
- Id: 17420
|
|
AegisName: Half_BF_Katar2_Box1
|
|
Name: Half BF Katar2 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28002,86400;
|
|
- Id: 17421
|
|
AegisName: Half_BF_Katar2_Box7
|
|
Name: Half BF Katar2 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28002,604800;
|
|
- Id: 17422
|
|
AegisName: Half_BF_Two_Handed_Axe1Box1
|
|
Name: Half BF Two Handed Axe1Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28102,86400;
|
|
- Id: 17423
|
|
AegisName: Half_BF_Two_Handed_Axe1Box7
|
|
Name: Half BF Two Handed Axe1Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28102,604800;
|
|
- Id: 17424
|
|
AegisName: Half_BF_Rifle1_Box1
|
|
Name: Half BF Rifle1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28203,86400;
|
|
- Id: 17425
|
|
AegisName: Half_BF_Rifle1_Box7
|
|
Name: Half BF Rifle1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28203,604800;
|
|
- Id: 17426
|
|
AegisName: Half_BF_Shotgun1_Box1
|
|
Name: Half BF Shotgun1 Box1
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28204,86400;
|
|
- Id: 17427
|
|
AegisName: Half_BF_Shotgun1_Box7
|
|
Name: Half BF Shotgun1 Box7
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
rentitem 28204,604800;
|
|
- Id: 17429
|
|
AegisName: 11_Anniversary_Shadow_Box
|
|
Name: 11 Anniversary Shadow Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* getitem callfunc("F_Rand",Ritual's Flute (weapon, earrings, pendants), every risyeo's (shields, armor, shoes)),1; */
|
|
- Id: 17430
|
|
AegisName: 11_Anniversary_Shadow_Package
|
|
Name: 11 Anniversary Shadow Package
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* getitem Ritual's Flute (weapon, earrings, pendants),1; getitem every risyeo's (shields, armor, shoes)),1; */
|
|
- Id: 17431
|
|
AegisName: Thanks_Giving_Scroll
|
|
Name: Miracle Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Thanks_Giving_Scroll);
|
|
- Id: 17432
|
|
AegisName: Lucky_Silvervine_Fruit_Box_II_10
|
|
Name: Lucky Silvervine Fruit Box II(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(Lucky_Silvervine_Fruit_Box_II10);*/
|
|
getitem 6417,10;
|
|
getitem 14705,1;
|
|
- Id: 17433
|
|
AegisName: Lucky_Silvervine_Fruit_Box_II_110
|
|
Name: Lucky Silvervine Fruit Box II(110)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getgroupitem(Lucky_Silvervine_Fruit_Box_II110);*/
|
|
getitem 6417,110;
|
|
getitem 14705,11;
|
|
- Id: 17435
|
|
AegisName: Idn_Legend_Hero_Scroll
|
|
Name: Legend Hero Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Idn_Legend_Hero_Scroll);
|
|
- Id: 17440
|
|
AegisName: Name_Change_Card_Box
|
|
Name: Name Change Card Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12790,1;
|
|
- Id: 17441
|
|
AegisName: Halter_Lead_Box
|
|
Name: Halter Lead Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12622,1;
|
|
- Id: 17442
|
|
AegisName: Emperium_G_Box
|
|
Name: Emperium G Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6444,1;
|
|
- Id: 17443
|
|
AegisName: Reinforcement_Buckler_Box
|
|
Name: Reinforcement Buckler Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2150,1;
|
|
- Id: 17447
|
|
AegisName: Blessing_Midgard_Scroll
|
|
Name: Blessing Midgard Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Blessing_Midgard_Scroll);
|
|
- Id: 17449
|
|
AegisName: Cookies_Bar_Set
|
|
Name: Set Bar Cookies
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
for (.@i = 14616;
|
|
.@i <= 14621;
|
|
.@i++) getitem .@i,1;
|
|
- Id: 17455
|
|
AegisName: Premium_Battle_Manual_Box
|
|
Name: Premium Battle Manual Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22614,1;
|
|
- Id: 17456
|
|
AegisName: Support_Package_II
|
|
Name: Support Package II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package_II);
|
|
- Id: 17457
|
|
AegisName: Support_Package_II_10
|
|
Name: Support Package II(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package_II_10);
|
|
- Id: 17461
|
|
AegisName: Costama_Egg18
|
|
Name: Frozen Egg Costume
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg18);
|
|
- Id: 17464
|
|
AegisName: Winter_Midgard_Scroll
|
|
Name: Winter Midgard Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Winter_Midgard_Scroll);
|
|
- Id: 17465
|
|
AegisName: Refinement_Ore_Box_VI
|
|
Name: Refinement Ore Box VI
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 14718,1;
|
|
- Id: 17466
|
|
AegisName: Refinement_Ore_Box_VI_10
|
|
Name: Refinement Ore Box VI(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 14718,11;
|
|
- Id: 17467
|
|
AegisName: Limited_Token_of_Ziegfried_Box_50
|
|
Name: (Limited) Token of Ziegfried Box(50)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6833,50;
|
|
- Id: 17468
|
|
AegisName: Neuralizer_II_Box_3
|
|
Name: Neuralizer II Box (3)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14724,3;
|
|
- Id: 17469
|
|
AegisName: Neuralizer_I_Box
|
|
Name: Neuralizer I Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14723,1;
|
|
- Id: 17470
|
|
AegisName: Costama_Egg19
|
|
Name: Headgear Costume Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg19);
|
|
- Id: 17471
|
|
AegisName: Spring_Festival_Scroll
|
|
Name: Spring Festival Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Spring_Festival_Scroll);
|
|
- Id: 17472
|
|
AegisName: Support_Package_III
|
|
Name: Support Package III
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package_III);
|
|
- Id: 17473
|
|
AegisName: Support_Package_III_10
|
|
Name: Support Package III(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Support_Package_III_10);
|
|
- Id: 17474
|
|
AegisName: C_Wing_Of_Fly_5Day_Box
|
|
Name: Infinite Giant Fly Wing Box V
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12212,432000;
|
|
- Id: 17475
|
|
AegisName: Limited_Gym_Membership_Card_Box_10
|
|
Name: (Limited)Gym Membership Card Box(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 17475,10;
|
|
- Id: 17477
|
|
AegisName: Unlimited_Box_II
|
|
Name: Unlimited Box II
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Unlimited_Box_II);
|
|
- Id: 17478
|
|
AegisName: Unlimited_Box_II_10
|
|
Name: Unlimited Box II(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Unlimited_Box_II_10);
|
|
- Id: 17479
|
|
AegisName: Midgard_Fes_Scroll
|
|
Name: Midgard Festival Egg
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Midgard_Fes_Scroll);
|
|
- Id: 17481
|
|
AegisName: Costama_Egg21
|
|
Name: Flower Blossom Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg21);
|
|
- Id: 17482
|
|
AegisName: Solaris_Festival_Scroll
|
|
Name: Solaris Festival Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Solaris_Festival_Scroll);
|
|
- Id: 17483
|
|
AegisName: Three_Master_Package_III
|
|
Name: Three Master Package III
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Three_Master_Package_III);
|
|
- Id: 17484
|
|
AegisName: Three_Master_Package_III_10
|
|
Name: Three Master Package III(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Three_Master_Package_III_10);
|
|
- Id: 17490
|
|
AegisName: Time_Travel_Scroll
|
|
Name: Time Travel Lucky Egg
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Time_Travel_Scroll);
|
|
- Id: 17491
|
|
AegisName: Refinement_Ore_Box_VII
|
|
Name: Refinement Ore Box VII
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 4482,1;
|
|
- Id: 17492
|
|
AegisName: Refinement_Ore_Box_VII_10
|
|
Name: Refinement Ore Box VII(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 4482,11;
|
|
- Id: 17493
|
|
AegisName: Costama_Egg23
|
|
Name: Burning Feather Costume Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg23);
|
|
- Id: 17494
|
|
AegisName: Happy_Time_Scroll
|
|
Name: Rise Midgard Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Happy_Time_Scroll);
|
|
- Id: 17495
|
|
AegisName: Lucky_Silvervine_Fruit_Box_III10
|
|
Name: Lucky Silvervine Fruit Box III(10)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III10);
|
|
- Id: 17496
|
|
AegisName: Lucky_Silvervine_Fruit_Box_III110
|
|
Name: Lucky Silvervine Fruit Box III(110)
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Lucky_Silvervine_Fruit_Box_III110);
|
|
- Id: 17497
|
|
AegisName: Costama_Egg24
|
|
Name: Seaside Costume Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg24);
|
|
- Id: 17498
|
|
AegisName: Three_Master_Package_IV
|
|
Name: Three Master Package IV
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,20;
|
|
getitem 14535,20;
|
|
getitem 12578,20;
|
|
getitem 22812,1;
|
|
- Id: 17499
|
|
AegisName: Three_Master_Package_IV_10
|
|
Name: Three Master Package IV(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,200;
|
|
getitem 14535,200;
|
|
getitem 12578,200;
|
|
getitem 22812,11;
|
|
- Id: 17501
|
|
AegisName: Support_Package_IV
|
|
Name: Support Package IV
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,2;
|
|
getitem 12210,2;
|
|
getitem 12883,2;
|
|
getitem 14600,2;
|
|
/*getitem Mysterious Water of Life,6;*/
|
|
if (!rand(100))
|
|
getitem 22823,1;
|
|
- Id: 17502
|
|
AegisName: Support_Package_IV_10
|
|
Name: Support Package IV(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12208,20;
|
|
getitem 12210,20;
|
|
getitem 12883,20;
|
|
getitem 14600,20;
|
|
/*getitem Mysterious Water of Life,60;*/
|
|
if (!rand(100))
|
|
getitem 22823,11;
|
|
- Id: 17507
|
|
AegisName: Nyangvine_Box4
|
|
Name: Actinidia Cat Fruit Box(4)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6909,4;
|
|
- Id: 17508
|
|
AegisName: Nyangvine_Box10
|
|
Name: Actinidia Cat Fruit Box(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6909,10;
|
|
- Id: 17509
|
|
AegisName: Nyangvine_Box40
|
|
Name: Actinidia Cat Fruit Box(40)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6909,40;
|
|
- Id: 17510
|
|
AegisName: Smelting_Ore_Box_VIII
|
|
Name: Smelting Ore Box VIII
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 22828,1;
|
|
- Id: 17511
|
|
AegisName: Smelting_Ore_Box_VIII_10
|
|
Name: Smelting Ore Box VIII(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 22828,11;
|
|
- Id: 17512
|
|
AegisName: Limited_Purified_Eluminium_Box_30
|
|
Name: (Limited) Purified Eluminium Box(30)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6911,30;
|
|
getitem 6635,1;
|
|
- Id: 17513
|
|
AegisName: Limited_Purified_Oridecon_Box_30
|
|
Name: (Limited) Purified Oridecon Box(30)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6910,30;
|
|
getitem 6635,1;
|
|
- Id: 17515
|
|
AegisName: Unlimited_Box_III
|
|
Name: Unlimited Box III
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12684,5;
|
|
getitem 12796,10;
|
|
if (!rand(30))
|
|
getitem 14758,1;
|
|
- Id: 17516
|
|
AegisName: Unlimited_Box_III_10
|
|
Name: Unlimited Box III(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12684,50;
|
|
getitem 12796,100;
|
|
if (!rand(30))
|
|
getitem 14758,11;
|
|
- Id: 17517
|
|
AegisName: Costama_Egg28
|
|
Name: Animal Costume Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg28);
|
|
- Id: 17519
|
|
AegisName: Epic_Heroes_Scroll
|
|
Name: Epic Heroes Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Epic_Heroes_Lucky_Egg);
|
|
- Id: 17520
|
|
AegisName: Limited_Edition_Manual_Box
|
|
Name: Limited Edition Manual Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14765,3;
|
|
/*getitem (limited edition battle manual),2;*/
|
|
- Id: 17521
|
|
AegisName: Three_Master_Package_V
|
|
Name: Three Master Package V
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,20;
|
|
getitem 14535,20;
|
|
/*getitem Mysterious Water of Life,20;*/
|
|
getitem 22842,1;
|
|
- Id: 17522
|
|
AegisName: Three_Master_Package_V_10
|
|
Name: Three Master Package V(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14534,200;
|
|
getitem 14535,200;
|
|
/*getitem Mysterious Water of Life,200;*/
|
|
getitem 22842,11;
|
|
- Id: 17523
|
|
AegisName: Costama_Egg29
|
|
Name: Mystical Costume Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Costama_Egg29);
|
|
- Id: 17524
|
|
AegisName: Limited_Power_Booster_Box
|
|
Name: Limited Power Booster Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14766,1;
|
|
getitem 22873,1;
|
|
- Id: 17525
|
|
AegisName: Limited_Power_Booster_Box_100
|
|
Name: Limited Power Booster Box(100)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 14766,100;
|
|
getitem 22873,11;
|
|
- Id: 17526
|
|
AegisName: Majestic_Lucky_Scroll
|
|
Name: Majestic Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Majestic_Lucky_Scroll);
|
|
- Id: 17527
|
|
AegisName: Nyangvine_Box200
|
|
Name: Actinidia Cat Fruit Box(200)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6909,200;
|
|
getitem 12636,rand(1,5);
|
|
/*TODO: Fix the 12636 amount*/
|
|
- Id: 17532
|
|
AegisName: Blessing_Lucky_Scroll
|
|
Name: Blessing Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Blessing_Lucky_Scroll);
|
|
- Id: 17544
|
|
AegisName: Smelting_Ore_Box_IX
|
|
Name: Smelting Ore Box IX
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,5;
|
|
getitem 7620,5;
|
|
getitem 22888,1;
|
|
- Id: 17545
|
|
AegisName: Smelting_Ore_Box_IX_10
|
|
Name: Smelting Ore Box IX(10)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7619,50;
|
|
getitem 7620,50;
|
|
getitem 22888,11;
|
|
- Id: 17547
|
|
AegisName: Limited_2015_Neuralizer_Box
|
|
Name: (Limited)2015 Neuralizer Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22894,1;
|
|
- Id: 17548
|
|
AegisName: Limited_2015_Status_Initialization_Volume_Box
|
|
Name: (Limited)2015 Status Initialization Volume Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22895,1;
|
|
- Id: 17549
|
|
AegisName: Limited_High_Density_Bradium_Box_30
|
|
Name: (Limited)High Density Bradium Box(30)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6327,30;
|
|
- Id: 17550
|
|
AegisName: Limited_High_Density_Kalunium_Box_30
|
|
Name: (Limited)High Density Kalunium Box(30)
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6906,30;
|
|
- Id: 17552
|
|
AegisName: Garnet_Lucky_Scroll
|
|
Name: Garnet Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Garnet_Lucky_Scroll);
|
|
- Id: 17567
|
|
AegisName: Event_Almighty_Box__
|
|
Name: Event Almighty Box
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22902,1;
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;
|
|
- Id: 17568
|
|
AegisName: Event_Almighty_Box_100_
|
|
Name: Event Almighty Box(100)
|
|
Type: Cash
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22902,11;
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;
|
|
- Id: 17569
|
|
AegisName: Dun_Voucher_Box1
|
|
Name: Sky Fortress Ticket 1 Hour Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 14506,3600;
|
|
- Id: 17570
|
|
AegisName: Dun_Voucher_Box2
|
|
Name: Sky Fortress Ticket 3 Hours Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 14506,10800;
|
|
- Id: 17572
|
|
AegisName: Erzulie_Lucky_Scroll
|
|
Name: Erzulie Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Erzulie_Lucky_Scroll);
|
|
- Id: 17584
|
|
AegisName: Venus_Lucky_Scroll
|
|
Name: Venus Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Venus_Lucky_Scroll);
|
|
- Id: 17588
|
|
AegisName: Amora_Lucky_Scroll
|
|
Name: Amora Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Amora_Lucky_Scroll);
|
|
- Id: 17598
|
|
AegisName: Sograt_Lucky_Scroll
|
|
Name: Sograt Lucky Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sograt_Lucky_Scroll);
|
|
- Id: 17607
|
|
AegisName: Sanctuary_Lucky_Scroll
|
|
Name: Sanctuary Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Sanctuary_Lucky_Scroll);
|
|
- Id: 17613
|
|
AegisName: Chronosian_Lucky_Scroll
|
|
Name: Chronosian Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Chronosian_Lucky_Scroll);
|
|
- Id: 17628
|
|
AegisName: Cyborg_Lucky_Scroll
|
|
Name: Cyborg Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Cyborg_Lucky_Scroll);
|
|
- Id: 17633
|
|
AegisName: Undine_Lucky_Scroll
|
|
Name: Undine Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Undine_Lucky_Scroll);
|
|
- Id: 17648
|
|
AegisName: Smithy_Lucky_Scroll
|
|
Name: Smithy Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Smithy_Lucky_Scroll);
|
|
- Id: 17659
|
|
AegisName: Ganymede_Lucky_Scroll
|
|
Name: Ganymede Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Ganymede_Lucky_Scroll);
|
|
- Id: 17665
|
|
AegisName: LastAngel_LuckyScroll
|
|
Name: LastAngel LuckyScroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_LastAngel_LuckyScroll);
|
|
- Id: 17671
|
|
AegisName: Valkyrie_Lucky_Scroll
|
|
Name: Valkyrie Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Valkyrie_Lucky_Scroll);
|
|
- Id: 17674
|
|
AegisName: Rainbow_Lucky_Scroll
|
|
Name: Splash Rainbow Lucky Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Splash_Rainbow_Lucky_Scroll);
|
|
- Id: 17681
|
|
AegisName: Midgard_Lucky_Scroll
|
|
Name: Midgard Lucky Scroll
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Midgard_Lucky_Scroll);
|
|
- Id: 17692
|
|
AegisName: June_Lucky_Scroll
|
|
Name: Blessing Scarlet Egg
|
|
Type: Cash
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Blessing_Scarlet_Scroll);
|
|
- Id: 17971
|
|
AegisName: A_3_Life_Potion_10pack
|
|
Name: Life Potion Sampler 10 Crate
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 12832,100,Bound_Account;
|
|
getitem 14534,100;
|
|
getitem 14535,100;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 17972
|
|
AegisName: A_3_Life_Potion_pack
|
|
Name: Life Potion Sampler Crate
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 12832,10,Bound_Account;
|
|
getitem 14534,10;
|
|
getitem 14535,10;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 17981
|
|
AegisName: A_Infinity_10_Box
|
|
Name: Infinity Drink 200 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23475,200;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 17982
|
|
AegisName: A_Infinity_Box
|
|
Name: Infinity Drink 20 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23475,20;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 22507
|
|
AegisName: ShabbyOldScroll
|
|
Name: Old Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
callfunc "F_22507";
|
|
- Id: 22508
|
|
AegisName: Para_Team_Mark_
|
|
Name: Eden Group Mark
|
|
Type: Usable
|
|
Flags:
|
|
NoConsume: true
|
|
Delay:
|
|
Duration: 1200000
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "moc_para01",171,115;
|
|
- Id: 22510
|
|
AegisName: King_Wolf_Scroll
|
|
Name: King Wolf Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO, confirm the rates*/
|
|
getitem callfunc("F_Rand",6635,19598,5658,6238,6239),1;
|
|
- Id: 22511
|
|
AegisName: Fenrir_Card__
|
|
Name: Fenrir's Power Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bMatk,25; bonus bFixedCastRate,-50; }",300,1025;
|
|
- Id: 22513
|
|
AegisName: King_of_Gift_Box
|
|
Name: King of Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO, confirm the rates*/
|
|
getitem callfunc("F_Rand",12817,4403,14512),1;
|
|
- Id: 22514
|
|
AegisName: Candy_Holder
|
|
Name: Candy Holder
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Candy_Holder,1);
|
|
getrandgroupitem(IG_Candy_Holder,1);
|
|
getrandgroupitem(IG_Candy_Holder,1);
|
|
- Id: 22515
|
|
AegisName: Key_Of_Twisted_Time
|
|
Name: Twisted Key of Time
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 300
|
|
Script: |
|
|
itemskill "NPC_WIDECURSE",2;
|
|
- Id: 22516
|
|
AegisName: Dark_Red_Clot
|
|
Name: Black As Night Piece
|
|
Type: Usable
|
|
Buy: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_CURSE,4000,0,1500,0;
|
|
- Id: 22517
|
|
AegisName: Loki_Summon_Scroll
|
|
Name: Rocker Summoning Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
mercenary_create 2937,1800000;
|
|
- Id: 22518
|
|
AegisName: Idn_Wisdom_Egg
|
|
Name: Egg Of Wisdom
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Idn_Wisdom_Egg);
|
|
- Id: 22521
|
|
AegisName: Level_Up_Box_
|
|
Name: Level Up Box
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 80
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO*/
|
|
- Id: 22522
|
|
AegisName: Level_Up_Box100
|
|
Name: Level Up Box(100)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box100);
|
|
- Id: 22523
|
|
AegisName: Level_Up_Box120
|
|
Name: Level Up Box(120)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 120
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box120);
|
|
- Id: 22524
|
|
AegisName: Level_Up_Box130
|
|
Name: Level Up Box(130)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 130
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box130);
|
|
- Id: 22525
|
|
AegisName: Level_Up_Box140
|
|
Name: Level Up Box(140)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 140
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box140);
|
|
- Id: 22526
|
|
AegisName: Level_Up_Box150
|
|
Name: Level Up Box(150)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box150);
|
|
- Id: 22527
|
|
AegisName: Level_Up_Box160
|
|
Name: Level Up Box(160)
|
|
Type: Cash
|
|
Buy: 10
|
|
EquipLevelMin: 160
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Level_Up_Box160);
|
|
- Id: 22528
|
|
AegisName: Pet_Exchange_Ticket_Box
|
|
Name: Pet Exchange Ticket Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 20
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO*/
|
|
- Id: 22529
|
|
AegisName: Shadow_Exchange_Box
|
|
Name: Shadow Exchange SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 22530
|
|
AegisName: Christmas_Box
|
|
Name: Christmas Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Christmas_Box);
|
|
- Id: 22531
|
|
AegisName: Special_Christmas_Box
|
|
Name: Special Christmas Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Special_Christmas_Box);
|
|
- Id: 22532
|
|
AegisName: Santa_Gift
|
|
Name: Santa Gift
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Santa_Gift);
|
|
- Id: 22533
|
|
AegisName: New_Year_Gift_Box
|
|
Name: New Year Gift Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO*/
|
|
- Id: 22534
|
|
AegisName: Closedmind_Box
|
|
Name: Closed Mind Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 1000
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getgroupitem(IG_Sealed_Mind_Box);
|
|
- Id: 22535
|
|
AegisName: WorkerScroll_A
|
|
Name: Scroll Summoning Workers(Male)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
# Script: |
|
|
# mercenary_create 3024,1800000;
|
|
- Id: 22536
|
|
AegisName: WorkerScroll_B
|
|
Name: Scroll Summoning Workers(Female)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
# Script: |
|
|
# mercenary_create 3025,1800000;
|
|
- Id: 22537
|
|
AegisName: PrizeOfHero
|
|
Name: Prize Of Hero
|
|
Type: Usable
|
|
Weight: 100
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_PrizeOfHero,1);
|
|
- Id: 22538
|
|
AegisName: Hanbok_bag
|
|
Name: Hanbok bag
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_HANBOK,600000,0;
|
|
- Id: 22540
|
|
AegisName: Runstone_Lux
|
|
Name: Lux Anima Runestone
|
|
Type: Delayconsume
|
|
Buy: 2
|
|
Weight: 10
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_Luxanima
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "RK_LUXANIMA",1;
|
|
- Id: 22541
|
|
AegisName: PC_Room_Coupon_Box_VI
|
|
Name: PC Room Coupon Box VI
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22542
|
|
AegisName: Center_Potion_B
|
|
Name: Concentration Potion
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,1800000,4;
|
|
- Id: 22543
|
|
AegisName: Berserk_Potion_B
|
|
Name: Berserk Potion
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
Jobs:
|
|
Mage: true
|
|
Swordman: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION2,1800000,9;
|
|
- Id: 22544
|
|
AegisName: Awakening_Potion_B
|
|
Name: Awakening Potion
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION1,1800000,6;
|
|
- Id: 22545
|
|
AegisName: Speed_Up_Potion_B
|
|
Name: Speed Potion
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP1,5000,50;
|
|
- Id: 22546
|
|
AegisName: Slow_Down_Potion_B
|
|
Name: Slow Potion
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_SLOWDOWN,5000,100;
|
|
- Id: 22547
|
|
AegisName: Anodyne_B
|
|
Name: Anti-Payne Moment
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22548
|
|
AegisName: Water_Of_Darkness_B
|
|
Name: Wed Cursed
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 30
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22549
|
|
AegisName: Poison_Bottle_B
|
|
Name: Poison Bottle
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
if (Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) {
|
|
sc_start SC_DPOISON,60000,0;
|
|
sc_start SC_ASPDPOTION3,60000,9;
|
|
}
|
|
else
|
|
percentheal -100,-100;
|
|
- Id: 22550
|
|
AegisName: Cookie_Bag_B
|
|
Name: Sweets Pocket
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22551
|
|
AegisName: Sesame_Pastry_B
|
|
Name: Teacake
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22552
|
|
AegisName: Honey_Pastry_B
|
|
Name: Fried Pastry
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22553
|
|
AegisName: Rainbow_Cake_B
|
|
Name: Rainbow Bread
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 70
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_BATKFOOD,60000,10;
|
|
sc_start SC_MATKFOOD,60000,10;
|
|
- Id: 22554
|
|
AegisName: First_Aid_Box
|
|
Name: First Aid Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
getrandgroupitem(IG_FirstAid,1);
|
|
- Id: 22555
|
|
AegisName: Gourmet_Chocolate
|
|
Name: Gourmet Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoSell: true
|
|
NoCart: true
|
|
- Id: 22556
|
|
AegisName: Luxury_Chocolate
|
|
Name: Luxury Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoSell: true
|
|
NoCart: true
|
|
- Id: 22557
|
|
AegisName: Masterpieces_of_Artisan_Chocolate
|
|
Name: Masterpieces of Artisan Chocolate
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoSell: true
|
|
NoCart: true
|
|
- Id: 22558
|
|
AegisName: Lucky_Bag
|
|
Name: Lucky Bag
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getrandgroupitem(IG_Lucky_Bag,1);
|
|
- Id: 22559
|
|
AegisName: Mock_Strawberry
|
|
Name: Mock Strawberry
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Weight: 100
|
|
Delay:
|
|
Duration: 3000
|
|
Status: Reuse_Limit_G
|
|
Script: |
|
|
percentheal 50,50;
|
|
itemskill "SM_ENDURE",3;
|
|
- Id: 22563
|
|
AegisName: Lucky_Bag_Of_New_Era
|
|
Name: Lucky Bag Of New Era
|
|
Type: Usable
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22566
|
|
AegisName: Frost_Crystal
|
|
Name: Last Year's Frost
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
Script: |
|
|
sc_start SC_CHILL,10000,0;
|
|
- Id: 22567
|
|
AegisName: Squad_Prize
|
|
Name: Expedition Award Box
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 100
|
|
Trade:
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Squad_Prize1);
|
|
getgroupitem(IG_Squad_Prize2);
|
|
- Id: 22568
|
|
AegisName: Nyd_Summon_Scroll
|
|
Name: Nidhoggur Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 100
|
|
# Script: |
|
|
# mercenary_create 3087,1800000;
|
|
- Id: 22569
|
|
AegisName: Gift_New_start
|
|
Name: Gift New start
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22571
|
|
AegisName: Easter_Egg
|
|
Name: Easter Egg
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_EASTER_EGG);
|
|
- Id: 22592
|
|
AegisName: Happy_Call_Box
|
|
Name: Happy Call Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22605
|
|
AegisName: Gingerbread2
|
|
Name: Ginger Bread
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
- Id: 22610
|
|
AegisName: New_Beginnings_Box
|
|
Name: New Beginnings Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12803,1;
|
|
getitem 12802,1;
|
|
getitem 12809,1;
|
|
- Id: 22611
|
|
AegisName: Packing_Envelope
|
|
Name: Packed Envelope
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
.@r = rand(1,10);
|
|
if (.@r == 1)
|
|
sc_start SC_PACKING_ENVELOPE1,30000,33; // +atk
|
|
else if (.@r == 2)
|
|
sc_start SC_PACKING_ENVELOPE2,30000,33; // +matk
|
|
else if (.@r == 3)
|
|
sc_start SC_PACKING_ENVELOPE3,30000,3; // +hp%
|
|
else if (.@r == 4)
|
|
sc_start SC_PACKING_ENVELOPE4,30000,3; // +sp%
|
|
else if (.@r == 5)
|
|
sc_start SC_PACKING_ENVELOPE5,30000,33; // +flee
|
|
else if (.@r == 6)
|
|
sc_start SC_PACKING_ENVELOPE6,30000,3; // +aspd
|
|
else if (.@r == 7)
|
|
sc_start SC_PACKING_ENVELOPE7,30000,33; // +def
|
|
else if (.@r == 8)
|
|
sc_start SC_PACKING_ENVELOPE8,30000,33; // +mdef
|
|
else if (.@r == 9)
|
|
sc_start SC_PACKING_ENVELOPE9,30000,33; // +crit
|
|
else
|
|
sc_start SC_PACKING_ENVELOPE10,30000,33; // +hit
|
|
if (getequipid(EQI_HEAD_MID) == 15385)
|
|
warp "verus04",115,243;
|
|
/* todo check map x y */
|
|
- Id: 22612
|
|
AegisName: Decomposition_Potion
|
|
Name: Corrupt Reagents
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 50
|
|
Script: |
|
|
specialeffect2 EF_VENOMDUST;
|
|
showscript "Yeah! Zombie night! Yeah!!";
|
|
# transform 1015,60000,SC_GLASTHEIM_TRANS; /* todo */
|
|
- Id: 22613
|
|
AegisName: Contaminated_Reagents
|
|
Name: Contaminated Reagents
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 50
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22614
|
|
AegisName: Premium_Manual
|
|
Name: Premium Manual
|
|
Type: Usable
|
|
Buy: 2
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,8640000,50;
|
|
sc_start SC_ITEMBOOST,8640000,100;
|
|
- Id: 22617
|
|
AegisName: Clear_Box_S
|
|
Name: Clear Box S
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22618
|
|
AegisName: Clear_Box_A
|
|
Name: Clear Box A
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
- Id: 22619
|
|
AegisName: Ghost_Summon_Scroll
|
|
Name: Ghost Scroll
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* mercenary_create M_E_DEVILING,1800000; */
|
|
- Id: 22620
|
|
AegisName: Memorial_Box
|
|
Name: Box Of Memories
|
|
Type: Usable
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22621
|
|
AegisName: Squid_Bbq
|
|
Name: Barbecued Squid
|
|
Type: Usable
|
|
Buy: 5000
|
|
Weight: 250
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_EXIT;
|
|
sc_start SC_JP_EVENT04,300000,25;
|
|
percentheal 5,5;
|
|
- Id: 22623
|
|
AegisName: New_Start_Box
|
|
Name: New Start Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12803,1;
|
|
getitem 12802,1;
|
|
getitem 12809,1;
|
|
- Id: 22624
|
|
AegisName: Riesen_Bretzel
|
|
Name: Riesen Bretzel
|
|
Type: Healing
|
|
Script: |
|
|
percentheal 100,0;
|
|
- Id: 22625
|
|
AegisName: Oktoberfest_Bag
|
|
Name: Oktoberfest Bag
|
|
Type: Usable
|
|
Weight: 100
|
|
Script: |
|
|
sc_start SC_OKTOBERFEST,600000,0;
|
|
- Id: 22626
|
|
AegisName: January_Gift_Box
|
|
Name: January Gift Box
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 19052,604800;
|
|
- Id: 22627
|
|
AegisName: February_Gift_Box
|
|
Name: February Gift Box
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12105,2;
|
|
- Id: 22628
|
|
AegisName: Green_Package
|
|
Name: Green Package
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 17162,1;
|
|
getitem 14534,5;
|
|
getitem 12323,20;
|
|
getitem 12324,20;
|
|
getitem 12325,10;
|
|
getitem 14533,2;
|
|
getitem 22629,1;
|
|
- Id: 22629
|
|
AegisName: Green_Package40
|
|
Name: Green Package 40
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 14289,1;
|
|
getitem 12215,10;
|
|
getitem 12216,10;
|
|
getitem 14534,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22630,1;
|
|
- Id: 22630
|
|
AegisName: Green_Package80
|
|
Name: Green Package 80
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 7621,5;
|
|
getitem 12209,5;
|
|
getitem 14527,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22631,1;
|
|
- Id: 22631
|
|
AegisName: Green_Package99
|
|
Name: Green Package 99
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 12213,1;
|
|
getitem 7676,1;
|
|
getitem 5883,1;
|
|
- Id: 22640
|
|
AegisName: 17173_Green_Package
|
|
Name: Green Package
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 17162,1;
|
|
getitem 14534,5;
|
|
getitem 12323,20;
|
|
getitem 12324,20;
|
|
getitem 12325,10;
|
|
getitem 14533,2;
|
|
getitem 22641,1;
|
|
- Id: 22641
|
|
AegisName: 17173_Green_Package40
|
|
Name: Green Package 40
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 14289,1;
|
|
getitem 12215,10;
|
|
getitem 12216,10;
|
|
getitem 14534,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22642,1;
|
|
- Id: 22642
|
|
AegisName: 17173_Green_Package80
|
|
Name: Green Package 80
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 7621,5;
|
|
getitem 12209,5;
|
|
getitem 14527,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22643,1;
|
|
- Id: 22643
|
|
AegisName: 17173_Green_Package99
|
|
Name: Green Package 99
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 12213,1;
|
|
getitem 7676,1;
|
|
getitem 5883,1;
|
|
- Id: 22644
|
|
AegisName: S_Green_Package
|
|
Name: Green Package
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 17162,1;
|
|
getitem 14534,5;
|
|
getitem 12323,20;
|
|
getitem 12324,20;
|
|
getitem 12325,10;
|
|
getitem 14533,2;
|
|
getitem 22645,1;
|
|
- Id: 22645
|
|
AegisName: S_Green_Package40
|
|
Name: Green Package 40
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 14289,1;
|
|
getitem 12215,10;
|
|
getitem 12216,10;
|
|
getitem 14534,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22646,1;
|
|
- Id: 22646
|
|
AegisName: S_Green_Package80
|
|
Name: Green Package 80
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 7621,5;
|
|
getitem 12209,5;
|
|
getitem 14527,10;
|
|
getitem 14533,5;
|
|
getitem 12766,5;
|
|
getitem 22647,1;
|
|
- Id: 22647
|
|
AegisName: S_Green_Package99
|
|
Name: Green Package 99
|
|
Type: Cash
|
|
Weight: 100
|
|
Script: |
|
|
getitem 12213,1;
|
|
getitem 7676,1;
|
|
getitem 5883,1;
|
|
- Id: 22648
|
|
AegisName: Angeling_Package
|
|
Name: Angel Ring Package
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",12539,6230,6234/*,Angeling Balloon*/),1;
|
|
- Id: 22649
|
|
AegisName: Deviling_Package
|
|
Name: Devil Ring Package
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",603,6230,6234/*,Angeling Balloon*/),1;
|
|
- Id: 22652
|
|
AegisName: Briliant_Hat_Box
|
|
Name: Brilliant Hat Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22653
|
|
AegisName: Wet_Card_Album
|
|
Name: Wet Card Album
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 50
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22657
|
|
AegisName: Honey_Songpyun_
|
|
Name: Honey Songpyun
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 200
|
|
Script: |
|
|
percentheal 20,0;
|
|
- Id: 22658
|
|
AegisName: Cow_Steamed_Ribs
|
|
Name: Cow Steamed Ribs
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
bonus_script "{ bonus bVariableCastrate,5; bonus bUseSPrate,-3; }",180;
|
|
- Id: 22659
|
|
AegisName: Pig_Steamed_Ribs
|
|
Name: Pig Steamed Ribs
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 100
|
|
Script: |
|
|
bonus_script "{ bonus bAspdRate,5; bonus bUseSPrate,-2; }",180;
|
|
- Id: 22660
|
|
AegisName: Sealed_Letter
|
|
Name: Sealed Envelope
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/* TODO */
|
|
- Id: 22669
|
|
AegisName: HALLOWEEN_G_BOX
|
|
Name: Halloween Box
|
|
Type: Usable
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_HALLOWEEN_G_BOX);
|
|
- Id: 22670
|
|
AegisName: DARK_INVITATION
|
|
Name: Invitation of Darkness
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
.@r = rand(1,3);
|
|
if (.@r == 1) {
|
|
specialeffect2 EF_DEVIL;
|
|
warp "niflheim",193,186;
|
|
}
|
|
else if (.@r == 2) {
|
|
heal -500,-1000;
|
|
sc_start SC_STUN,3000,0;
|
|
}
|
|
else {
|
|
specialeffect2 EF_DEVIL;
|
|
warp "niflheim",347,255;
|
|
}
|
|
- Id: 22671
|
|
AegisName: March_Gift_Box
|
|
Name: March Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*2 Lucky Eggs*/
|
|
- Id: 22672
|
|
AegisName: April_Gift_Box
|
|
Name: April Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
|
|
- Id: 22673
|
|
AegisName: May_Gift_Box
|
|
Name: May Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22777,2;
|
|
- Id: 22674
|
|
AegisName: June_Gift_Box
|
|
Name: June Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*1 Potion Box*/
|
|
- Id: 22675
|
|
AegisName: Mysterious_Scroll
|
|
Name: Mysterious Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_INTFOOD,3600000,30;
|
|
- Id: 22676
|
|
AegisName: Hangul_Day_Event_Box
|
|
Name: Hangul Day Event Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Script: |
|
|
getitem 22675,10;
|
|
getitem 607,9;
|
|
- Id: 22679
|
|
AegisName: Chest_Of_Death
|
|
Name: Death's Chest
|
|
Type: Usable
|
|
EquipLevelMin: 170
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
getitem rand(6814,6819),1;
|
|
- Id: 22685
|
|
AegisName: Solo_Christmas_Gift
|
|
Name: Single Union Christmas Gift
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Solo_Christmas_Gift);
|
|
- Id: 22686
|
|
AegisName: Solo_Cookie
|
|
Name: Single Cookie
|
|
Type: Healing
|
|
Weight: 50
|
|
Script: |
|
|
percentheal 5,5;
|
|
- Id: 22687
|
|
AegisName: Pieces_Of_Sentiment
|
|
Name: Sentimental Fragment
|
|
Type: Delayconsume
|
|
Weight: 1
|
|
EquipLevelMin: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 5000
|
|
Status: Reuse_Limit_F
|
|
Script: |
|
|
callfunc("F_Pieces_Of_Sentiment");
|
|
- Id: 22691
|
|
AegisName: Piece_Of_Record1
|
|
Name: Record Fragment
|
|
Type: Healing
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "un_bk_q",98,143;
|
|
- Id: 22692
|
|
AegisName: Piece_Of_Record2
|
|
Name: Record Fragment
|
|
Type: Healing
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "un_bk_q",45,276;
|
|
- Id: 22693
|
|
AegisName: Piece_Of_Record3
|
|
Name: Record Fragment
|
|
Type: Healing
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "un_bk_q",217,346;
|
|
- Id: 22694
|
|
AegisName: Piece_Of_Record4
|
|
Name: Record Fragment
|
|
Type: Healing
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "un_bk_q",273,235;
|
|
- Id: 22695
|
|
AegisName: Piece_Of_Record5
|
|
Name: Record Fragment
|
|
Type: Healing
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "un_bk_q",275,290;
|
|
- Id: 22699
|
|
AegisName: Test_Reagent
|
|
Name: Test Reagent
|
|
Type: Usable
|
|
Weight: 30
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
bonus_script "bonus bFlee,100;",5,9;
|
|
sc_start SC_BLIND,5000,0,10000,0;
|
|
- Id: 22700
|
|
AegisName: Jumping_Support_Box
|
|
Name: Jumping Support Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: getitem 12529,1; getitem 12323,200; getitem 12324,50; and 5 boxes that containing quivers + oridecons*/
|
|
- Id: 22702
|
|
AegisName: Minus_Str
|
|
Name: STR Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bStr,-1,22702;
|
|
- Id: 22703
|
|
AegisName: Minus_Agi
|
|
Name: AGI Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bAgi,-1,22703;
|
|
- Id: 22704
|
|
AegisName: Minus_Vit
|
|
Name: VIT Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bVit,-1,22704;
|
|
- Id: 22705
|
|
AegisName: Minus_Int
|
|
Name: INT Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bInt,-1,22705;
|
|
- Id: 22706
|
|
AegisName: Minus_Dex
|
|
Name: DEX Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bDex,-1,22706;
|
|
- Id: 22707
|
|
AegisName: Minus_Luk
|
|
Name: LUK Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceStat",bLuk,-1,22707;
|
|
- Id: 22708
|
|
AegisName: Pitapat_Box
|
|
Name: Thrilling Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_PITAPAT_BOX);
|
|
- Id: 22721
|
|
AegisName: "?_Box"
|
|
Name: "? Box"
|
|
Type: Cash
|
|
Buy: 10
|
|
Script: |
|
|
/*No clue the random item yet*/
|
|
- Id: 22734
|
|
AegisName: Revolution_Quiz_Box
|
|
Name: Revolution Quiz Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6635,2;
|
|
getitem 6423,1;
|
|
/*1x Enchanted Letter Introduction*/
|
|
- Id: 22735
|
|
AegisName: Sealed_Moonlight_Flower_Scroll
|
|
Name: Sealed Moonlight Flower Scroll
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the rates*/
|
|
getitem callfunc("F_Rand",6228,6232,24150,19934,6635,17474),1;
|
|
- Id: 22736
|
|
AegisName: July_Gift_Box
|
|
Name: July Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 20212,1;
|
|
- Id: 22737
|
|
AegisName: Bullet_Case_Blood_
|
|
Name: Bloody Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13222,500;
|
|
- Id: 22738
|
|
AegisName: Bullet_Case_Silver_
|
|
Name: Silver Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13221,500;
|
|
- Id: 22739
|
|
AegisName: Sphere_Case_Wind_
|
|
Name: Lightning Sphere Pack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 350
|
|
Script: |
|
|
getitem 13224,500;
|
|
- Id: 22740
|
|
AegisName: Sphere_Case_Darkness_
|
|
Name: Blind Sphere Pack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 350
|
|
Script: |
|
|
getitem 13226,500;
|
|
- Id: 22741
|
|
AegisName: Sphere_Case_Poison_
|
|
Name: Poison Sphere Pack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 350
|
|
Script: |
|
|
getitem 13225,500;
|
|
- Id: 22742
|
|
AegisName: Sphere_Case_Water_
|
|
Name: Freezing Sphere Pack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 350
|
|
Script: |
|
|
getitem 13227,500;
|
|
- Id: 22743
|
|
AegisName: Sphere_Case_Fire_
|
|
Name: Flare Sphere Pack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 350
|
|
Script: |
|
|
getitem 13223,500;
|
|
- Id: 22744
|
|
AegisName: Bullet_Case_AP
|
|
Name: Armor-Piercing Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13215,500;
|
|
- Id: 22745
|
|
AegisName: Bullet_Case_Blaze
|
|
Name: Incandescence Shot Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13216,500;
|
|
- Id: 22746
|
|
AegisName: Bullet_Case_Fleeze
|
|
Name: Glaciation Shot Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13217,500;
|
|
- Id: 22747
|
|
AegisName: Bullet_Case_Electric
|
|
Name: Dengeki Shot Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13218,500;
|
|
- Id: 22748
|
|
AegisName: Bullet_Case_Stone
|
|
Name: Hearthstone Shot Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13219,500;
|
|
- Id: 22749
|
|
AegisName: Sanctified_Bullet_Case
|
|
Name: Purification Shot Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13220,500;
|
|
- Id: 22750
|
|
AegisName: Trans_Scroll_Horn_Scaraba
|
|
Name: Transformation Scroll(Horn Scaraba)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 2161,1200000,SC_MTF_ASPD2,2,10;
|
|
- Id: 22751
|
|
AegisName: Trans_Scroll_Wanderer
|
|
Name: Transformation Scroll(Wanderer)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 1208,1200000,SC_MTF_ASPD2,2,10;
|
|
- Id: 22752
|
|
AegisName: Trans_Scroll_Gazeti
|
|
Name: Transformation Scroll(Gazeti)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 1778,1200000,SC_MTF_RANGEATK2,30;
|
|
- Id: 22753
|
|
AegisName: Trans_Scroll_Kobold_Archer
|
|
Name: Transformation Scroll(Kobold Archer)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 1282,1200000,SC_MTF_RANGEATK2,30;
|
|
- Id: 22754
|
|
AegisName: Trans_Scroll_Necromancer
|
|
Name: Transformation Scroll(Necromancer)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 1870,1200000,SC_MTF_RANGEATK2,30;
|
|
- Id: 22755
|
|
AegisName: Trans_Scroll_Wind_Ghost
|
|
Name: Transformation Scroll(Wind Ghost)
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
transform 1263,1200000,SC_MTF_MATK2,50;
|
|
- Id: 22756
|
|
AegisName: August_Gift_Box
|
|
Name: August Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12246,1;
|
|
- Id: 22757
|
|
AegisName: Collection_Of_Scrolls_Magical_Transformation
|
|
Name: Collection Of Scrolls Magical Transformation
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
Script: |
|
|
getitem 22755,1;
|
|
getitem 22754,1;
|
|
- Id: 22758
|
|
AegisName: Collection_Of_Scrolls_Shooting_Transformation
|
|
Name: Collection Of Scrolls Shooting Transformation
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 200
|
|
Script: |
|
|
getitem 22753,1;
|
|
getitem 22752,1;
|
|
- Id: 22759
|
|
AegisName: Collection_Of_Scrolls_Attack_Speed_Transformation
|
|
Name: Collection Of Scrolls Attack Speed Transformation
|
|
Type: Cash
|
|
Buy: 10
|
|
Script: |
|
|
getitem 22751,1;
|
|
getitem 22750,1;
|
|
- Id: 22760
|
|
AegisName: Argiope_Transportin
|
|
Name: Argiope Transportin
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22761
|
|
AegisName: Luciola_Vespa_Transportin
|
|
Name: Luciola Vespa Transportin
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22762
|
|
AegisName: Centipede_Transportin
|
|
Name: Centipede Transportin
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22764
|
|
AegisName: Pet_Exchange_Ticket_Box_
|
|
Name: Pet Exchange Ticket Box
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*TODO: Confirm the allowed pet_id and chance*/
|
|
getitem callfunc("F_Rand",6116,6117,6118,6129,6130,6130,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143),1;
|
|
- Id: 22770
|
|
AegisName: Shark_Skewer
|
|
Name: Shark Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22771
|
|
AegisName: Bluefin_Tuna_Skewer
|
|
Name: Bluefin Tuna Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INCATKRATE,5000,30;
|
|
- Id: 22772
|
|
AegisName: Sea_Bream_Skewer
|
|
Name: Sea Bream Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INCMATKRATE,5000,30;
|
|
- Id: 22773
|
|
AegisName: Piranha_Skewer
|
|
Name: Piranha Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_ASPDPOTION0,5000,5;
|
|
- Id: 22774
|
|
AegisName: Salmon_Skewer
|
|
Name: Salmon Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_SPEEDUP0,5000,25;
|
|
- Id: 22775
|
|
AegisName: Eels_Skewer
|
|
Name: Eels Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_DEF_RATE,5000,30;
|
|
- Id: 22776
|
|
AegisName: Carp_Skewer
|
|
Name: Carp Skewer
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_MDEF_RATE,5000,30;
|
|
- Id: 22777
|
|
AegisName: Gift_Buff_Set
|
|
Name: Gift Buff Set
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Gift_Buff_Set);
|
|
- Id: 22781
|
|
AegisName: PC_Bang_Normal_Box
|
|
Name: PC Bang Normal Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,20;
|
|
/*No Info*/
|
|
- Id: 22782
|
|
AegisName: PC_Bang_Wooden_Box
|
|
Name: PC Bang Wooden Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,30;
|
|
/*No Info*/
|
|
- Id: 22783
|
|
AegisName: PC_Bang_Golden_Box
|
|
Name: PC Bang Golden Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,1;
|
|
getitem 985,10;
|
|
/*No Info*/
|
|
- Id: 22784
|
|
AegisName: PC_Bang_Platinum_Box
|
|
Name: PC Bang Platinum Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 547,1;
|
|
getitem 12017,10;
|
|
getitem 678,12;
|
|
/*No Info*/
|
|
- Id: 22808
|
|
AegisName: NoviceBox
|
|
Name: Special Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 7444,1;
|
|
getitem 12610,1;
|
|
getitem 12265,5;
|
|
getitem 22979,5;
|
|
- Id: 22812
|
|
AegisName: Sealed_Dracula_Scroll
|
|
Name: Sealed Dracula Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",6228,6232,22813,19937,17314, 6635),1;
|
|
- Id: 22813
|
|
AegisName: Bearer's_Shadow_Box
|
|
Name: Bearer's Shadow Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24180,24181,24182,24183,24184,24185),1;
|
|
- Id: 22814
|
|
AegisName: CatPaw_Ticket
|
|
Name: Cat Hand Ticket
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 22816
|
|
AegisName: G_Mysterious_Water
|
|
Name: True Mysterious Life Potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_M_LIFEPOTION,3600000,-4,3;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22817
|
|
AegisName: G_Small_Life_Potion
|
|
Name: True Small Life Potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_LIFEPOTION,3600000,-5,5;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22818
|
|
AegisName: G_Med_Life_Potion
|
|
Name: True Medium Life potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_L_LIFEPOTION,3600000,-7,4;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22819
|
|
AegisName: G_Almighty
|
|
Name: True Almighty
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",3600;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22820
|
|
AegisName: G_ASPD_Potion
|
|
Name: True EnhancedASPD Potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Delay:
|
|
Duration: 3600000
|
|
Status: Reuse_Limit_Aspd_Potion
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_ATTHASTE_CASH,3600000,3;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22821
|
|
AegisName: G_Red_Booster
|
|
Name: True Red Booster # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bMaxHPrate,-10; bonus bMaxSPrate,-10; bonus5 bAutoSpell,\"AC_CONCENTRATION\",max(getskilllv(\"AC_CONCENTRATION\"),3),10,BF_WEAPON|BF_MAGIC,0; }",3600,1,1,EFST_2011RWC_SCROLL;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 22822
|
|
AegisName: Summer_Vacation_Costumes
|
|
Name: Summer Vacation Costumes
|
|
Type: Usable
|
|
Weight: 100
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
sc_start SC_DRESSUP,600000,1;
|
|
- Id: 22823
|
|
AegisName: Sealed_Sniper_Scroll
|
|
Name: Sealed Sniper Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*getitem callfunc("F_Rand",4491,6228,6232,24196, Hasty Shadow Armor, 19882, 17474, 6635),1;*/
|
|
- Id: 22826
|
|
AegisName: Enchant_Stone_Box4
|
|
Name: Costume Enchant Stone Box 4
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box4);
|
|
- Id: 22827
|
|
AegisName: Shadow_Cube
|
|
Name: Shadow Cube
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE);
|
|
- Id: 22828
|
|
AegisName: Sealed_Scroll
|
|
Name: Sealed Album Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_SEALED_SCROLL);
|
|
- Id: 22829
|
|
AegisName: Sealed_Card
|
|
Name: Sealed Card Album
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,4483,4491),1;
|
|
- Id: 22837
|
|
AegisName: Integer_Time
|
|
Name: Integer Time
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
EquipLevelMin: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 673,5;
|
|
- Id: 22838
|
|
AegisName: Something_Candy_Holder
|
|
Name: Something Candy Holders
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Something_Candy_Holder);
|
|
- Id: 22839
|
|
AegisName: Happy_Box_J
|
|
Name: Happy Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 200
|
|
EquipLevelMin: 1
|
|
Script: |
|
|
getgroupitem(IG_Happy_Box_J);
|
|
- Id: 22842
|
|
AegisName: Sealed_Dracula_Scroll_II
|
|
Name: Sealed Dracula Scroll II
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",22846,6228,6232,24223,24227,17474/*, Enchant Letter*/),1;
|
|
- Id: 22843
|
|
AegisName: Superstar_Snack
|
|
Name: Superstar Snack
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
bonus_script "{ bonus bAtk2,50; bonus bMatk,50; }",300;
|
|
- Id: 22844
|
|
AegisName: Sealed_Dracula_Card_Album
|
|
Name: Sealed Dracula Card Album
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
Classes:
|
|
All: false
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22845
|
|
AegisName: Sealed_Fortune_Egg
|
|
Name: Sealed Fortune Egg
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",4488,4497,4486,4480,4485,4539,4487,4494,4538,4489,4490,4482,4503,22846),1;
|
|
- Id: 22846
|
|
AegisName: Sealed_Dracula_Card_
|
|
Name: Sealed Dracula Card
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus2 bSPDrainRate,50,5; }",300;
|
|
- Id: 22847
|
|
AegisName: BadgeOfProntera
|
|
Name: Prontera Badge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
warp "prontera",159,192;
|
|
- Id: 22848
|
|
AegisName: KeysPrison
|
|
Name: Prison Key
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
warp "prt_prison",188,23;
|
|
- Id: 22849
|
|
AegisName: P_Temporal_Crystal
|
|
Name: Prontera Time Crystal
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
warp "prt_q",155,27;
|
|
- Id: 22850
|
|
AegisName: January_Gift_Box_
|
|
Name: January Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 19052,604800;
|
|
- Id: 22851
|
|
AegisName: February_Gift_Box_
|
|
Name: February Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12105,2;
|
|
- Id: 22852
|
|
AegisName: March_Gift_Box_
|
|
Name: March Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*2 Lucky Eggs*/
|
|
- Id: 22853
|
|
AegisName: April_Gift_Box_
|
|
Name: April Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
|
|
- Id: 22854
|
|
AegisName: May_Gift_Box_
|
|
Name: May Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22777,2;
|
|
- Id: 22855
|
|
AegisName: June_Gift_Box_
|
|
Name: June Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*1 Potion Box*/
|
|
- Id: 22856
|
|
AegisName: July_Gift_Box_
|
|
Name: July Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 20212,1;
|
|
- Id: 22857
|
|
AegisName: August_Gift_Box_
|
|
Name: August Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12246,1;
|
|
- Id: 22858
|
|
AegisName: September_Gift_Box
|
|
Name: September Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*2 Lucky Eggs*/
|
|
- Id: 22859
|
|
AegisName: October_Gift_Box
|
|
Name: October Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12529,5;
|
|
- Id: 22860
|
|
AegisName: November_Gift_Box
|
|
Name: November Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
|
|
- Id: 22861
|
|
AegisName: December_Gift_Box
|
|
Name: December Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22869,10;
|
|
- Id: 22868
|
|
AegisName: Enchant_Stone_Box5
|
|
Name: Costume Enchant Stone Box 5
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box5);
|
|
- Id: 22869
|
|
AegisName: Lucky_Roulette_Tickets
|
|
Name: Lucky Roulette Ticket
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
EquipLevelMin: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
RouletteBronze++;
|
|
- Id: 22870
|
|
AegisName: Xmas_Package_14
|
|
Name: Christmas Package
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_XMAS_PACKAGE_14);
|
|
- Id: 22873
|
|
AegisName: Sealed_Beelzebub_Scroll_II
|
|
Name: Sealed Beelzebub Scroll II
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",22875,6238,6239,6228,6232,24231,24232,17474,6635),1;
|
|
- Id: 22874
|
|
AegisName: Sealed_Beelzebub_Card_Album
|
|
Name: Sealed Beelzebub Card Album
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*No Info*/
|
|
- Id: 22876
|
|
AegisName: Shabby_Purse
|
|
Name: Old Money Pocket
|
|
Type: Usable
|
|
Script: |
|
|
specialeffect2 EF_STEAL;
|
|
Zeny += rand(100,1000);
|
|
- Id: 22881
|
|
AegisName: Binding_Rope
|
|
Name: Rope Gallows
|
|
Type: Usable
|
|
Buy: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*Used to catch a Lost Sheep*/
|
|
- Id: 22882
|
|
AegisName: Choco_Tteokguk
|
|
Name: Chocolate Rice Cake Soup
|
|
Type: Usable
|
|
Buy: 10
|
|
Script: |
|
|
percentheal 10,10;
|
|
- Id: 22883
|
|
AegisName: September_Gift_Box_
|
|
Name: September Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*2 Lucky Eggs*/
|
|
- Id: 22884
|
|
AegisName: October_Gift_Box_
|
|
Name: October Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12529,5;
|
|
- Id: 22885
|
|
AegisName: November_Gift_Box_
|
|
Name: November Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem callfunc("F_Rand",2566,2856,2857,15023),1209600;
|
|
- Id: 22886
|
|
AegisName: December_Gift_Box_
|
|
Name: December Gift Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 22869,10;
|
|
- Id: 22887
|
|
AegisName: PC-Room_Box
|
|
Name: PC-Room Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 12531,1;
|
|
getitem callfunc("F_Rand",6230,6234,22654),1;
|
|
- Id: 22888
|
|
AegisName: New_Year's_Scroll
|
|
Name: New Year's Scroll
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",6238,6239,6228,6232,24240,24241,24242,17474),1;
|
|
- Id: 22893
|
|
AegisName: New_Year's_Shadow_Cube
|
|
Name: New Year's Shadow Cube
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*Get a random Shadow Equip (No info which one)*/
|
|
- Id: 22894
|
|
AegisName: Limited_2015_Neuralizer
|
|
Name: (Limited)2015 Neuralizer
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashReset";
|
|
- Id: 22895
|
|
AegisName: Limited_2015_Status_Initialization_Volume
|
|
Name: (Limited)2015 Status Initialization Volume
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*Works like item 6320, can reset up to 3x within 1 hour*/
|
|
- Id: 22896
|
|
AegisName: Limited_Old_Status_Initialization_Volume
|
|
Name: (Limited)Old Status Initialization Volume
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/*Works like item 6320, can reset up to 3x within 1 hour*/
|
|
- Id: 22899
|
|
AegisName: DowntownMap
|
|
Name: Parchment City
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
Script: |
|
|
itemskill "AL_INCAGI",1;
|
|
heal -15,0;
|
|
- Id: 22901
|
|
AegisName: BlueboxOfQuestions
|
|
Name: Mysterious Blue Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc("F_Mysterious_box");
|
|
- Id: 22902
|
|
AegisName: Sealed_Card_Album_Scroll_II
|
|
Name: Sealed Card Album Scroll II
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",6238,6239,17474,22829,24243,24244,24245),1;
|
|
- Id: 22905
|
|
AegisName: Enchant_Stone_Box6
|
|
Name: Costume Enchant Stone Box 6
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box6);
|
|
- Id: 22953
|
|
AegisName: Enchant_Stone_Box7
|
|
Name: Costume Enchant Stone Box 7
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box7);
|
|
- Id: 22973
|
|
AegisName: Shadow_Cube_Weapon
|
|
Name: Shadow Cube (Weapon)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_WEAPON);
|
|
- Id: 22974
|
|
AegisName: Shadow_Cube_Armor
|
|
Name: Shadow Cube (Armor)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_ARMOR);
|
|
- Id: 22975
|
|
AegisName: Shadow_Cube_Shield
|
|
Name: Shadow Cube (Shield)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_SHIELD);
|
|
- Id: 22976
|
|
AegisName: Shadow_Cube_Shoes
|
|
Name: Shadow Cube (Shoes)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_SHOES);
|
|
- Id: 22977
|
|
AegisName: Shadow_Cube_Pendant
|
|
Name: Shadow Cube (Pendant)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_PENDANT);
|
|
- Id: 22978
|
|
AegisName: Shadow_Cube_Earing
|
|
Name: Shadow Cube (Earing)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_SHADOW_CUBE_EARING);
|
|
- Id: 22979
|
|
AegisName: Comp_Battle_Bubble
|
|
Name: "[Sale] Battle Manual and Bubble Gum"
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,1800000,50;
|
|
sc_start SC_ITEMBOOST,1800000,100;
|
|
- Id: 22980
|
|
AegisName: InfinityD_ReturnScroll
|
|
Name: Return of Infinite Dungeon
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
warp "cmd_fild07",83,270;
|
|
- Id: 22984
|
|
AegisName: Dr_Life_Potion_01
|
|
Name: Kahluna Milk
|
|
Type: Healing
|
|
Buy: 6
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_DORAM_BUF_01, 180000, 0;
|
|
- Id: 22985
|
|
AegisName: Dr_Life_Potion_02
|
|
Name: Basil
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_DORAM_BUF_02, 180000, 0;
|
|
- Id: 22998
|
|
AegisName: C_CatPaw_Ticket
|
|
Name: Infinite Cat Hand Ticket
|
|
Type: Delayconsume
|
|
Trade:
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 23001
|
|
AegisName: Enchant_Stone_Box8
|
|
Name: Costume Enchant Stone Box 8
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box8);
|
|
- Id: 23012
|
|
AegisName: S_Small_Mana_Potion
|
|
Name: "[Sale] Small Mana Potion"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus2 bRegenPercentSP,5,5000; }",600,9;
|
|
/* fix me: unknown flag and specialeffect ; disabled when LK_BERSERK */
|
|
- Id: 23016
|
|
AegisName: Pieces_Of_Grudge
|
|
Name: Cursed Fragment
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 1
|
|
Flags:
|
|
DropEffect: CLIENT
|
|
Script: |
|
|
callfunc("F_Cursed_Fragment");
|
|
- Id: 23027
|
|
AegisName: Dandelion_Ring
|
|
Name: Dandelion Ring # !todo check english name
|
|
Type: Usable
|
|
Flags:
|
|
NoConsume: true
|
|
Delay:
|
|
Duration: 3600000
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "rachel",120,125;
|
|
- Id: 23033
|
|
AegisName: Invisible_Box
|
|
Name: Invisible Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",19602,19603,19604,20506),1;
|
|
- Id: 23038
|
|
AegisName: S_Slim_White_Box
|
|
Name: "[Sale] Slim White Potion Box"
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11573,200;
|
|
- Id: 23042
|
|
AegisName: Seed_Of_Yggdrasil_
|
|
Name: "[NotForSale]Yggdrasil Seed"
|
|
Type: Healing
|
|
Weight: 300
|
|
Delay:
|
|
Duration: 3000
|
|
Status: Reuse_Limit_G
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 50,50;
|
|
- Id: 23043
|
|
AegisName: S_Seed_Of_Yggdrasil_Box
|
|
Name: "[Sale] Yggdrasil Seed Box"
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23042,30;
|
|
- Id: 23044
|
|
AegisName: Elvira_Candy
|
|
Name: Elvira Candy # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 10000
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_end SC_SILENCE;
|
|
sc_end SC_BLEEDING;
|
|
sc_end SC_POISON;
|
|
sc_end SC_CURSE;
|
|
sc_end SC_ORCISH;
|
|
sc_end SC_CHANGEUNDEAD;
|
|
- Id: 23046
|
|
AegisName: S_Mystic_Powder
|
|
Name: "[Sale] Mystic Powder"
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bFlee,20; bonus bLuk,10; }",300,9;
|
|
/* fix me: unknown flag and specialeffect */
|
|
- Id: 23047
|
|
AegisName: S_Blessing_Tyr
|
|
Name: "[Sale] Blessing of Tyr"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,300000,30;
|
|
sc_start SC_HITFOOD,300000,30;
|
|
sc_start SC_ATKPOTION,300000,20;
|
|
sc_start SC_MATKPOTION,300000,20;
|
|
- Id: 23048
|
|
AegisName: S_Resilience_Potion
|
|
Name: "[Sale] Resilience Enhancement Potion"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "bonus bAddItemHealRate,20;",1800,9;
|
|
/* fix me: unknown flag and specialeffect */
|
|
- Id: 23049
|
|
AegisName: Comp_Spark_Candy
|
|
Name: "[Not For Sale] Sparkling Candy"
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 180000
|
|
Status: Reuse_Limit_B
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HASTEUP;
|
|
bonus_script "{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; bonus bNoWalkDelay; }",60,0,0,EFST_STEAMPACK;
|
|
- Id: 23050
|
|
AegisName: Comp_Magic_Candy
|
|
Name: "[Not For Sale] Magic Candy"
|
|
Type: Usable
|
|
Weight: 10
|
|
Delay:
|
|
Duration: 180000
|
|
Status: Reuse_Limit_B
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_HASTEUP;
|
|
bonus_script "{ bonus bMatk,30; bonus bFixedCastrate,-70; bonus bNoCastCancel; bonus2 bSPLossRate,90,10000; }",60,0,0,EFST_MAGIC_CANDY;
|
|
- Id: 23058
|
|
AegisName: Enchant_Stone_Box9
|
|
Name: Costume Enchant Stone Box 9
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box9);
|
|
- Id: 23073
|
|
AegisName: AngelPoring_Box
|
|
Name: Angel Poring Shoes Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_ANGELPORING_BOX);
|
|
- Id: 23076
|
|
AegisName: Build_Up_Potion_SS
|
|
Name: Build Up Potion SS
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
if (strcharinfo(3) == "slabw01") {
|
|
sc_start SC_EP16_2_BUFF_SS,10000,0;
|
|
}
|
|
- Id: 23077
|
|
AegisName: Build_Up_Potion_SC
|
|
Name: Build Up Potion SC
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
if (strcharinfo(3) == "slabw01") {
|
|
sc_start SC_EP16_2_BUFF_SC,10000,0;
|
|
}
|
|
- Id: 23078
|
|
AegisName: Build_Up_Potion_AC
|
|
Name: Build Up Potion AC
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
if (strcharinfo(3) == "slabw01") {
|
|
sc_start SC_EP16_2_BUFF_AC,10000,0;
|
|
}
|
|
- Id: 23080
|
|
AegisName: Cursed_Crystal
|
|
Name: Cursed Crystal
|
|
Type: Usable
|
|
Buy: 1
|
|
Weight: 500
|
|
Script: |
|
|
callfunc("F_Cursed_Crystal");
|
|
- Id: 23081
|
|
AegisName: Kunai_Scroll_Of_Flame
|
|
Name: Heat Wave Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Kunai_Of_Fierce_Flame",500;
|
|
- Id: 23082
|
|
AegisName: Kunai_Scroll_Of_Icicle
|
|
Name: Icicle Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Kunai_Of_Icicle",500;
|
|
- Id: 23083
|
|
AegisName: Kunai_Scroll_Of_Wind
|
|
Name: High Wind Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Kunai_Of_Furious_Wind",500;
|
|
- Id: 23084
|
|
AegisName: Kunai_Scroll_Of_Soil
|
|
Name: Black Earth Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Kunai_Of_Black_Soil",500;
|
|
- Id: 23085
|
|
AegisName: Kunai_Scroll_Of_Poison
|
|
Name: Fell Poison Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Kunai_Of_Deadly_Poison",500;
|
|
- Id: 23086
|
|
AegisName: Enchant_Stone_Box10
|
|
Name: Costume Enchant Stone Box 10
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box10);
|
|
- Id: 23087
|
|
AegisName: Small_Leather_Bag
|
|
Name: Small Leather Bag
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 25180,1;
|
|
getitem 25181,1;
|
|
getitem 25182,1;
|
|
getitem 25183,1;
|
|
getitem 25184,1;
|
|
getitem 25185,1;
|
|
- Id: 23100
|
|
AegisName: Gunslinger_Enchant
|
|
Name: Drooping Gunslinger Scroll
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23115
|
|
AegisName: Class_Shadow_Cube
|
|
Name: Class Shadow Cube
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_CLASS_SHADOW_CUBE);
|
|
- Id: 23123
|
|
AegisName: Bullet_Case_Flare
|
|
Name: Flare Bullet Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13228,500;
|
|
- Id: 23124
|
|
AegisName: Bullet_Case_Lighting
|
|
Name: Lightning Bullet Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13229,500;
|
|
- Id: 23125
|
|
AegisName: Bullet_Case_Ice
|
|
Name: Ice Bullet Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13230,500;
|
|
- Id: 23126
|
|
AegisName: Bullet_Case_Poison
|
|
Name: Poison Bullet Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13231,500;
|
|
- Id: 23127
|
|
AegisName: Bullet_Case_Blind
|
|
Name: Blind Bullet Cartridge
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 250
|
|
Script: |
|
|
getitem 13232,500;
|
|
- Id: 23136
|
|
AegisName: WOB_Box
|
|
Name: Butterfly Wing Box
|
|
Type: Usable
|
|
Buy: 10
|
|
Weight: 20
|
|
Script: |
|
|
getitem 12507,3;
|
|
getitem 12508,3;
|
|
getitem 12509,3;
|
|
getitem 12510,3;
|
|
- Id: 23150
|
|
AegisName: Lapine_DdukddakBox
|
|
Name: Lapine Big Box
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
/* TODO Update Description */
|
|
- Id: 23151
|
|
AegisName: EnchantStone_Recipe
|
|
Name: Enchant Stone Recipe
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23152
|
|
AegisName: Collectibles_Box
|
|
Name: Collectibles SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23153
|
|
AegisName: Pet_Egg_Box
|
|
Name: Pet Egg SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23154
|
|
AegisName: Costume_Exchange_Box
|
|
Name: Costume Exchange SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23161
|
|
AegisName: Gunslinger_Box
|
|
Name: Gunslinger Box
|
|
Type: Usable
|
|
Weight: 1
|
|
Script: |
|
|
getitem 23100,1;
|
|
getitem 19157,1;
|
|
- Id: 23168
|
|
AegisName: Mini_Fan_Box
|
|
Name: Mini Fan Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 23170,1;
|
|
getitem callfunc("F_Rand",28439,28440),1;
|
|
- Id: 23169
|
|
AegisName: Alchemist_Box
|
|
Name: Alchemist box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",7135,7136,7137,7138,7139),1;
|
|
- Id: 23170
|
|
AegisName: Fan_Upgrade_Kit
|
|
Name: Fan Modification Kit
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23174
|
|
AegisName: Enchant_Stone_Box11
|
|
Name: Costume Enchant Stone Box 11
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box11);
|
|
- Id: 23175
|
|
AegisName: Suit_Upgrade_Kit
|
|
Name: Uniform Repair Kit
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23177
|
|
AegisName: Kafra_Card_
|
|
Name: Kafra Card
|
|
Type: Usable
|
|
Buy: 2
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
callfunc "F_CashStore";
|
|
- Id: 23178
|
|
AegisName: Kafra_Box
|
|
Name: Kafra Box
|
|
Type: Usable
|
|
Weight: 510
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 23175,1;
|
|
getitem callfunc("F_Rand",15186,19168),1;
|
|
- Id: 23187
|
|
AegisName: Sap_Jelly
|
|
Name: Sap Liquid
|
|
Type: Usable
|
|
Buy: 10
|
|
Script: |
|
|
pet 1180;
|
|
- Id: 23188
|
|
AegisName: Airship_Part
|
|
Name: Unprocessed Parts
|
|
Type: Usable
|
|
Buy: 10
|
|
Script: |
|
|
pet 1632;
|
|
- Id: 23189
|
|
AegisName: Little_Dall_Needle
|
|
Name: Small Needle Kit
|
|
Type: Usable
|
|
Buy: 10
|
|
Script: |
|
|
pet 1622;
|
|
- Id: 23191
|
|
AegisName: Varetyr_Spear_Scroll_1_5
|
|
Name: Level 5 Varetyr Spear
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "SO_VARETYR_SPEAR",5;
|
|
- Id: 23192
|
|
AegisName: Diamond_Dust_Scroll_1_5
|
|
Name: Level 5 Diamond Dust
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "SO_DIAMONDDUST",5;
|
|
- Id: 23193
|
|
AegisName: Crimson_Rock_Scroll_1_5
|
|
Name: Level 5 Crimson Rock
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "WL_CRIMSONROCK",5;
|
|
- Id: 23194
|
|
AegisName: Sienna_Execrate_Scroll_1_5
|
|
Name: Level 5 Sienna Execrate
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "WL_SIENNAEXECRATE",5,true;
|
|
- Id: 23196
|
|
AegisName: Agust_Lucky_Scroll
|
|
Name: Shining Blue Lucky Egg
|
|
Type: Cash
|
|
Buy: 10
|
|
Weight: 10
|
|
EquipLevelMin: 1
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_Agust_Lucky_Scroll);
|
|
- Id: 23221
|
|
AegisName: EF_DEX_Biscuit_Stick
|
|
Name: "[Not For Sale] DEX Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_DEX_CASH,1800000,15;
|
|
sc_start SC_HITFOOD,600000,rand(11,33);
|
|
- Id: 23222
|
|
AegisName: EF_LUK_Biscuit_Stick
|
|
Name: "[Not For Sale] LUK Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_LUK_CASH,1800000,15;
|
|
sc_start SC_CRIFOOD,600000,rand(11,33);
|
|
- Id: 23223
|
|
AegisName: EF_STR_Biscuit_Stick
|
|
Name: "[Not For Sale] STR Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_STR_CASH,1800000,15;
|
|
sc_start SC_ATKPOTION,600000,rand(11,111);
|
|
- Id: 23224
|
|
AegisName: EF_VIT_Biscuit_Stick
|
|
Name: "[Not For Sale] VIT Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_VIT_CASH,1800000,15;
|
|
bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1;
|
|
- Id: 23225
|
|
AegisName: EF_AGI_Biscuit_Stick
|
|
Name: "[Not For Sale] AGI Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_AGI_CASH,1800000,15;
|
|
sc_start SC_FLEEFOOD,600000,rand(11,33);
|
|
- Id: 23226
|
|
AegisName: EF_INT_Biscuit_Stick
|
|
Name: "[Not For Sale] INT Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_INT_CASH,1800000,15;
|
|
sc_start SC_MATKPOTION,600000,rand(11,111);
|
|
- Id: 23228
|
|
AegisName: HazyMooncake
|
|
Name: Hazy Mooncake
|
|
Type: Healing
|
|
Buy: 768
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* unknown */
|
|
- Id: 23229
|
|
AegisName: Scroll_of_Fallen_Angel_Wings
|
|
Name: Scroll of Fallen Angel Wings
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23236
|
|
AegisName: Class_Shadow_Box_Weapon
|
|
Name: Class Shadow Box (Weapon)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23237
|
|
AegisName: Class_Shadow_Box_Armor
|
|
Name: Class Shadow Box (Armor)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23238
|
|
AegisName: Class_Shadow_Box_Shoes
|
|
Name: Class Shadow Box (Shoes)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23239
|
|
AegisName: Class_Shadow_Box_Shield
|
|
Name: Class Shadow Box (Shield)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23240
|
|
AegisName: Class_Shadow_Box_Pendant
|
|
Name: Class Shadow Box (Pendant)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23241
|
|
AegisName: Class_Shadow_Box_Earring
|
|
Name: Class Shadow Box (Earring)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23247
|
|
AegisName: StatusShadow_Mix
|
|
Name: StatusShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23248
|
|
AegisName: GemstoneShadow_Mix
|
|
Name: GemstoneShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23249
|
|
AegisName: BearersShadow_Mix
|
|
Name: BearerShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23250
|
|
AegisName: ComposeShadow_Mix
|
|
Name: ComposerShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23251
|
|
AegisName: Rose_Bundle_A
|
|
Name: Rose Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(2192,1);
|
|
getitem(2743,1);
|
|
- Id: 23252
|
|
AegisName: Orleans_Bundle_A
|
|
Name: Orleans's Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(2365,1);
|
|
getitem(2881,1);
|
|
- Id: 23253
|
|
AegisName: Black_Shiba_Bundle_A
|
|
Name: Black Shiba Inu Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(2959,1);
|
|
getitem(18756,1);
|
|
- Id: 23254
|
|
AegisName: Valkyrie_Bundle_A
|
|
Name: Valkyrie Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 1420,1;
|
|
getitem 2115,1;
|
|
- Id: 23255
|
|
AegisName: Kardui_Bundle_A
|
|
Name: Kardui Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(1649,1);
|
|
getitem(15169,1);
|
|
- Id: 23256
|
|
AegisName: Elixir_Bandage
|
|
Name: Elixir Bandages
|
|
Type: Usable
|
|
Buy: 10
|
|
Script: |
|
|
pet 1041;
|
|
- Id: 23265
|
|
AegisName: Sprint_Bundle_A
|
|
Name: Sprint Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2387,1;
|
|
getitem 2440,1;
|
|
getitem 2744,1;
|
|
getitem 2935,1;
|
|
- Id: 23266
|
|
AegisName: Etran_Bundle_A
|
|
Name: Etran Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(2371,1);
|
|
getitem(20797,1);
|
|
- Id: 23277
|
|
AegisName: Mado_Box
|
|
Name: Emergency Magic Gear
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 300
|
|
Jobs:
|
|
Blacksmith: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
EquipLevelMin: 100
|
|
Delay:
|
|
Duration: 180000
|
|
Script: |
|
|
specialeffect2 EF_CLAYMORE;
|
|
setmadogear true;
|
|
- Id: 23280
|
|
AegisName: N_Fly_Wing_
|
|
Name: Novice Fly Wing
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
EquipLevelMin: 1
|
|
EquipLevelMax: 98
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 23281
|
|
AegisName: RaceShadow_Mix
|
|
Name: RaceShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23285
|
|
AegisName: Candy_Box_Melee
|
|
Name: Candy Bag Backpack (Physical)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 23289,1;
|
|
getitem 20842,1;
|
|
- Id: 23286
|
|
AegisName: Candy_Box_Range
|
|
Name: Candy Bag Backpack (Range)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 23290,1;
|
|
getitem 20843,1;
|
|
- Id: 23287
|
|
AegisName: Candy_Box_Magic
|
|
Name: Candy Bag Backpack (Magical)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 23291,1;
|
|
getitem 20844,1;
|
|
- Id: 23288
|
|
AegisName: Compressed_Wing_Of_Fly
|
|
Name: Compressed Fly Wing
|
|
Type: Delayconsume
|
|
Buy: 1000
|
|
Weight: 10
|
|
Script: |
|
|
itemskill "AL_TELEPORT",1;
|
|
- Id: 23289
|
|
AegisName: Candy_Bag_Scroll_Melee
|
|
Name: Candy Bag Blessing Scroll(Physical)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23290
|
|
AegisName: Candy_Bag_Scroll_Range
|
|
Name: Candy Bag Blessing Scroll(Ranged)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23291
|
|
AegisName: Candy_Bag_Scroll_Magic
|
|
Name: Candy Bag Blessing Scroll(Magic)
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23294
|
|
AegisName: Pororoca_Shoes_Bundle_A
|
|
Name: Pororoca Shoes Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem(1646,1);
|
|
getitem(22104,1);
|
|
- Id: 23295
|
|
AegisName: Lian_Bundle_B
|
|
Name: Lian Bundle A
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 2195,1;
|
|
getitem 20753,1;
|
|
getitem 22069,1;
|
|
- Id: 23299
|
|
AegisName: Enchant_Stone_Box12
|
|
Name: Costume Enchant Stone Box 12
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box12);
|
|
- Id: 23307
|
|
AegisName: S_Shining_Def_Scroll
|
|
Name: "[Sale] Shining Defense Scroll"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bDef,500; bonus bMdef,200; }",600;
|
|
/* fix me: unknown flag and specialeffect */
|
|
- Id: 23308
|
|
AegisName: Booster_Amplifier
|
|
Name: Booster Amplifier
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23311
|
|
AegisName: Magical_Cat_Hand
|
|
Name: Magic Cat Hand
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23324
|
|
AegisName: StabilityShadow_Mix
|
|
Name: StabilityShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23340
|
|
AegisName: Comp_Megaphone
|
|
Name: "[Sale] Megaphone"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
input .@megaphone$;
|
|
announce strcharinfo(0) + ": " + .@megaphone$,bc_all,0xFF0000;
|
|
- Id: 23360
|
|
AegisName: Psychotropic
|
|
Name: Psychotropic
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
EquipLevelMin: 100
|
|
NoUse:
|
|
Sitting: true
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
itemskill "WM_GLOOMYDAY",5;
|
|
- Id: 23361
|
|
AegisName: Serum
|
|
Name: Serum
|
|
Type: Healing
|
|
Weight: 100
|
|
EquipLevelMin: 100
|
|
Flags:
|
|
BuyingStore: true
|
|
Delay:
|
|
Duration: 60000
|
|
Script: |
|
|
sc_end SC_PARALYSE;
|
|
sc_end SC_PYREXIA;
|
|
sc_end SC_DEATHHURT;
|
|
sc_end SC_LEECHESEND;
|
|
sc_end SC_VENOMBLEED;
|
|
sc_end SC_TOXIN;
|
|
sc_end SC_MAGICMUSHROOM;
|
|
sc_end SC_OBLIVIONCURSE;
|
|
- Id: 23374
|
|
AegisName: Fire_Armor_S
|
|
Name: Fire Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_FIREHIT;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Fire,1,0;
|
|
- Id: 23375
|
|
AegisName: Cold_Armor_S
|
|
Name: Water Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_COLDHIT;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Water,1,0;
|
|
- Id: 23376
|
|
AegisName: Wind_Armor_S
|
|
Name: Wind Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_WINDHIT;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Wind,1,0;
|
|
- Id: 23377
|
|
AegisName: Earth_Armor_S
|
|
Name: Earth Armor Scroll
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_EARTHHIT;
|
|
sc_start4 SC_ELEMENTALCHANGE,1800000,1,Ele_Earth,1,0;
|
|
- Id: 23388
|
|
AegisName: CookingBox10
|
|
Name: "[Scroll] Food Box"
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
.@r = rand(1,3);
|
|
if (.@r == 1)
|
|
getitem callfunc("F_Rand",14849,14850,14851,14852,14853,14854),10;
|
|
else if (.@r == 2)
|
|
getitem 14841,50;
|
|
else
|
|
getitem 14886,2;
|
|
- Id: 23436
|
|
AegisName: Shadow_Refine_Hammer
|
|
Name: Shadow Refine Hammer
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23474
|
|
AegisName: InfinityShadow_Mix
|
|
Name: InfinityShadow Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23475
|
|
AegisName: Infinity_Drink
|
|
Name: Infinity Drink
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bCritAtkRate,5; bonus bLongAtkRate,5; bonus bMatkRate,5; bonus bNoCastCancel; }",1800,1,1,EFST_INFINITY_DRINK;
|
|
- Id: 23505
|
|
AegisName: Yellow_Potion_B_20
|
|
Name: "[Not for Sale] Yellow Potions Box 20" # !todo check english name
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11566,20;
|
|
- Id: 23506
|
|
AegisName: White_Potion_B_20
|
|
Name: "[Not for Sale] White Potion Box 20" # !todo check english name
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 11565,20;
|
|
- Id: 23524
|
|
AegisName: Enchant_Stone_Box13
|
|
Name: Costume Enchant Stone Box 13
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box13);
|
|
- Id: 23538
|
|
AegisName: BloodyKnight_Shield_Box
|
|
Name: Cursed Knight's Shield Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 28942,1;
|
|
getitem 23545,1;
|
|
- Id: 23545
|
|
AegisName: Silver_Statue
|
|
Name: Silver Statue
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23546
|
|
AegisName: Cursed_Blood
|
|
Name: Cursed Blood
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23547
|
|
AegisName: Gold_Statue
|
|
Name: Gold Statue
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23549
|
|
AegisName: Snow_Cookie
|
|
Name: Snow Cookie
|
|
Type: Usable
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
sc_start SC_HITFOOD,600000,30;
|
|
- Id: 23550
|
|
AegisName: Winter_Cookie
|
|
Name: Winter Cookie
|
|
Type: Usable
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
sc_start SC_ATKPOTION,600000,3;
|
|
- Id: 23551
|
|
AegisName: Festi_Cookie
|
|
Name: Festi Cookie
|
|
Type: Usable
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
sc_start SC_ASPDPOTION0,600000,10;
|
|
- Id: 23552
|
|
AegisName: Flora_Cookie
|
|
Name: Flora Cookie
|
|
Type: Usable
|
|
Weight: 50
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 5,0;
|
|
sc_start SC_MATKPOTION,600000,3;
|
|
- Id: 23582
|
|
AegisName: E_Wing_Of_Fly_3Day_Box
|
|
Name: "[Not for Sale] Infinite Flywing Box 7-Day" # !todo check english name
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
rentitem 12887,604800;
|
|
- Id: 23583
|
|
AegisName: Rebeginer_Box
|
|
Name: Beginner's Armor Box # !todo check english name
|
|
Type: Usable
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 19310,1;
|
|
getitem 15250,1;
|
|
getitem 20906,1;
|
|
getitem 22173,1;
|
|
getitem 28566,1;
|
|
- Id: 23584
|
|
AegisName: Rebeginer_S_Box
|
|
Name: Shadow Box for Beginners # !todo check english name
|
|
Type: Usable
|
|
EquipLevelMin: 120
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 24387,1;
|
|
getitem 24388,1;
|
|
getitem 24390,1;
|
|
getitem 24389,1;
|
|
getitem 24391,1;
|
|
getitem 24392,1;
|
|
- Id: 23585
|
|
AegisName: Rebeginer_Box_100
|
|
Name: Beginner Support Box (100) # !todo check english name
|
|
Type: Usable
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23505,25;
|
|
getitem 23583,1;
|
|
getitem 23582,1;
|
|
getitem 23427,1;
|
|
getitem 23586,1;
|
|
- Id: 23586
|
|
AegisName: Rebeginer_Box_110
|
|
Name: Beginner Support Box (110) # !todo check english name
|
|
Type: Usable
|
|
EquipLevelMin: 110
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23506,20;
|
|
getitem 23582,2;
|
|
getitem 23428,1;
|
|
getitem 23587,1;
|
|
- Id: 23587
|
|
AegisName: Rebeginer_Box_120
|
|
Name: Beginner Support Box (120) # !todo check english name
|
|
Type: Usable
|
|
EquipLevelMin: 120
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 23506,25;
|
|
getitem 23582,3;
|
|
getitem 23584,1;
|
|
- Id: 23604
|
|
AegisName: Main_Dish_Course
|
|
Name: Main Dish Course
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;
|
|
- Id: 23605
|
|
AegisName: Challenge_Drink
|
|
Name: Challenger Drink
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;
|
|
- Id: 23606
|
|
AegisName: Power_Drink
|
|
Name: Power Drink
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* Confirm probability */
|
|
bonus_script "{ bonus bMaxHP,-10; bonus bMaxSP,-10; bonus bBaseAtk,30; bonus bMatk,30; bonus bVariableCastrate,-5; bonus3 bAutoSpell,\"AC_CONCENTRATION\",max(getskilllv(\"AC_CONCENTRATION\"),3),10; }",300;
|
|
- Id: 23611
|
|
AegisName: Mimir_Spring_Water
|
|
Name: Mimir's Spring Water
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_INCREASE_MAXSP,1800000,10;
|
|
sc_start SC_SPCOST_RATE,1800000,10;
|
|
- Id: 23612
|
|
AegisName: Baldrs_Blessing
|
|
Name: Baldur's Blessing
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,300000,30;
|
|
sc_start SC_HITFOOD,300000,30;
|
|
sc_start SC_ATKPOTION,300000,20;
|
|
sc_start SC_MATKPOTION,300000,20;
|
|
- Id: 23629
|
|
AegisName: Enchant_Stone_Box14
|
|
Name: Costume Enchant Stone Box 14
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box14);
|
|
- Id: 23660
|
|
AegisName: Dogly_Bottle_Z
|
|
Name: Dogly Bottle Z
|
|
Type: Healing
|
|
Weight: 180
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
percentheal 18,18;
|
|
- Id: 23665
|
|
AegisName: PhysicalMagical_Mix
|
|
Name: PhysicalMagical Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23666
|
|
AegisName: ImmunedAthena_Mix
|
|
Name: ImmunedAthena Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23667
|
|
AegisName: HardChamption_Mix
|
|
Name: HardChampion Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23668
|
|
AegisName: KingbirdAncient_Mix
|
|
Name: KingbirdAncient Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23669
|
|
AegisName: CriticalHit_Mix
|
|
Name: CriticalHit Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23675
|
|
AegisName: Geffen_Magic_Scroll
|
|
Name: Geffen Magic Armor Order Form
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23676
|
|
AegisName: Gray_Charcoal_Melee
|
|
Name: Grey Abrasive (physical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23677
|
|
AegisName: Gray_Charcoal_Magic
|
|
Name: Grey Abrasive (magical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23678
|
|
AegisName: Gray_Charcoal_Range
|
|
Name: Grey Abrasive (distance)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23679
|
|
AegisName: Geffen_Magic_Scroll2
|
|
Name: Geffen Magic Accessory Order Form
|
|
Type: Delayconsume
|
|
Weight: 100
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23682
|
|
AegisName: Enchant_Stone_Box15
|
|
Name: Costume Enchant Stone Box 15
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box15);
|
|
- Id: 23706
|
|
AegisName: Charleston_Parts_W
|
|
Name: Charleston Upgrade Parts (Physical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23707
|
|
AegisName: Charleston_Parts_R
|
|
Name: Charleston Upgrade Parts (Ranged)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23711
|
|
AegisName: Booby_Trap_Box
|
|
Name: Trap Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Booby_Trap",500;
|
|
- Id: 23720
|
|
AegisName: Shadow_Random_Mix
|
|
Name: Shadow Random Mix
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23725
|
|
AegisName: E_Main_Dish_C
|
|
Name: "[Event] Main Dish Course"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",1800;
|
|
- Id: 23726
|
|
AegisName: E_Challenge_Drink
|
|
Name: "[Event] Challenger Drink"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",1800,1,1;
|
|
- Id: 23728
|
|
AegisName: E_Power_Drink
|
|
Name: "[Event] Power Drink"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Confirm probability */
|
|
bonus_script "{ bonus bMaxHP,-10; bonus bMaxSP,-10; bonus bBaseAtk,30; bonus bMatk,30; bonus bVariableCastrate,-5; bonus3 bAutoSpell,\"AC_CONCENTRATION\",max(getskilllv(\"AC_CONCENTRATION\"),3),10; }",300;
|
|
- Id: 23732
|
|
AegisName: E_Mimir_Spring_W
|
|
Name: "[Event] Mimir's Spring Water"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_INCREASE_MAXSP,1800000,10;
|
|
sc_start SC_SPCOST_RATE,1800000,10;
|
|
- Id: 23733
|
|
AegisName: E_Baldrs_Blessing
|
|
Name: "[Event] Baldur's Blessing"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_FLEEFOOD,300000,30;
|
|
sc_start SC_HITFOOD,300000,30;
|
|
sc_start SC_ATKPOTION,300000,20;
|
|
sc_start SC_MATKPOTION,300000,20;
|
|
- Id: 23766
|
|
AegisName: Overwhelm_Armor_Box
|
|
Name: Temporal Armor Box
|
|
Type: Usable
|
|
Weight: 2000
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",15278,15279,15346,15347,15353,15354),1;
|
|
- Id: 23767
|
|
AegisName: Powerful_Helm_Box
|
|
Name: Powerful Helm Box # !todo check english name
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Weight: 800
|
|
Script: |
|
|
getitem callfunc("F_Rand",19300,19249,19263,19296,19308),1;
|
|
- Id: 23770
|
|
AegisName: Enchant_Stone_Box16
|
|
Name: Costume Enchant Stone Box 16
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box16);
|
|
- Id: 23771
|
|
AegisName: Mysterious_Plastic
|
|
Name: Mysterious Plastic Bag
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
/* unknown */
|
|
- Id: 23772
|
|
AegisName: EP17_1_SPC01
|
|
Name: OS Weapon Chest
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_EP17_1_SPC01);
|
|
- Id: 23773
|
|
AegisName: EP17_1_SPC02
|
|
Name: Weapon Modification Device Chest (Physical)
|
|
Type: Usable
|
|
Weight: 750
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_EP17_1_SPC02);
|
|
- Id: 23774
|
|
AegisName: EP17_1_SPC03
|
|
Name: Weapon Modification Device Chest (Magic)
|
|
Type: Usable
|
|
Weight: 750
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_EP17_1_SPC03);
|
|
- Id: 23775
|
|
AegisName: EP17_1_SPC04
|
|
Name: Modification Module Chest
|
|
Type: Usable
|
|
Weight: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_EP17_1_SPC04);
|
|
- Id: 23776
|
|
AegisName: EP17_1_SPC05
|
|
Name: Weapon Modifier (Physical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23777
|
|
AegisName: EP17_1_SPC06
|
|
Name: Advanced Weapon Modifier (Physical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23778
|
|
AegisName: EP17_1_SPC07
|
|
Name: Super Weapon Modifier (Physical)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23779
|
|
AegisName: EP17_1_SPC08
|
|
Name: Weapon Modifier (Magic)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23780
|
|
AegisName: EP17_1_SPC09
|
|
Name: Advanced Weapon Modifier (Magic)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23781
|
|
AegisName: EP17_1_SPC10
|
|
Name: Super Weapon Modifier (Magic)
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23815
|
|
AegisName: Magma_Essence
|
|
Name: Lava Essence
|
|
Type: Delayconsume
|
|
Weight: 50
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23817
|
|
AegisName: Bs_Making_S
|
|
Name: Mysterious Combination Bundle
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
/* TODO Update Description */
|
|
- Id: 23818
|
|
AegisName: Bs_Item_M_S_2
|
|
Name: Giant Orc Helm Combination SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23819
|
|
AegisName: Bs_Item_M_S_8
|
|
Name: Crimson Rose SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23820
|
|
AegisName: Bs_Item_M_S_10
|
|
Name: Grand Peco Hairband SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23821
|
|
AegisName: Bs_Item_M_S_11
|
|
Name: Moonflower Hair Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23822
|
|
AegisName: Bs_Item_M_S_34
|
|
Name: Wings of 8 Purgatories SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23823
|
|
AegisName: Bs_Item_M_S_41
|
|
Name: Tare Neko Cru SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23824
|
|
AegisName: Bs_Item_M_S_42
|
|
Name: Glory Soccer Ball Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23825
|
|
AegisName: Bs_Item_M_S_43
|
|
Name: Wicket marching Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23826
|
|
AegisName: Bs_Item_M_S_44
|
|
Name: Wandering Wolf Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23827
|
|
AegisName: Bs_Sha_M_S_1
|
|
Name: Status Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23828
|
|
AegisName: Bs_Sha_M_S_17
|
|
Name: Elegant Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23829
|
|
AegisName: Bs_Sha_M_S_18
|
|
Name: Tension Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23830
|
|
AegisName: Bs_Sha_M_S_19
|
|
Name: Restore Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23831
|
|
AegisName: Bs_Sha_M_S_20
|
|
Name: Healing Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23832
|
|
AegisName: Bs_Item_M_S_4
|
|
Name: Amistr Cap SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23833
|
|
AegisName: Bs_Item_M_S_6
|
|
Name: Tiger King Doll Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23834
|
|
AegisName: Bs_Item_M_S_7
|
|
Name: Bacsojin Doll SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23835
|
|
AegisName: Bs_Item_M_S_12
|
|
Name: Candy Pouch Bag SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23836
|
|
AegisName: Bs_Item_M_S_13
|
|
Name: Gold Fish Head Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23837
|
|
AegisName: Bs_Item_M_S_15
|
|
Name: Survival SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23838
|
|
AegisName: Bs_Item_M_S_28
|
|
Name: Toy Sringe SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23839
|
|
AegisName: Bs_Item_M_S_29
|
|
Name: Indigor Rear Ribbon SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23840
|
|
AegisName: Bs_Item_M_S_31
|
|
Name: Magical Booster SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23841
|
|
AegisName: Bs_Item_M_S_32
|
|
Name: Rosario's Necklace SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23842
|
|
AegisName: Bs_Item_M_S_33
|
|
Name: Spirit Crown SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23843
|
|
AegisName: Bs_Item_M_S_36
|
|
Name: Guard's Cap SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23844
|
|
AegisName: Bs_Item_M_S_37
|
|
Name: Bandit's Hood SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23845
|
|
AegisName: Bs_Item_M_S_38
|
|
Name: Angel's Blessing SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23846
|
|
AegisName: Bs_Item_M_S_39
|
|
Name: Rabbit Magic Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23847
|
|
AegisName: Bs_Item_M_S_40
|
|
Name: Anubis Helm SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23848
|
|
AegisName: Bs_Item_M_S_45
|
|
Name: Imp Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23849
|
|
AegisName: Bs_Item_M_S_46
|
|
Name: Red Marching Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23850
|
|
AegisName: Bs_Item_M_S_47
|
|
Name: Ifrit Mask SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23851
|
|
AegisName: Bs_Item_M_S_48
|
|
Name: Incarnation Of Morocc Doll SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23852
|
|
AegisName: Bs_Item_M_S_49
|
|
Name: Samambaia SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23853
|
|
AegisName: Bs_Item_M_S_50
|
|
Name: Chick Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23854
|
|
AegisName: Bs_Sha_M_S_2
|
|
Name: Class Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23855
|
|
AegisName: Bs_Sha_M_S_5
|
|
Name: Spell Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23856
|
|
AegisName: Bs_Sha_M_S_6
|
|
Name: Size Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23857
|
|
AegisName: Bs_Sha_M_S_7
|
|
Name: Race Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23858
|
|
AegisName: Bs_Sha_M_S_8
|
|
Name: Stability Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23859
|
|
AegisName: Bs_Sha_M_S_13
|
|
Name: Special Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23860
|
|
AegisName: Bs_Sha_M_S_15
|
|
Name: Physical Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23861
|
|
AegisName: Bs_Sha_M_S_16
|
|
Name: Magical Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23862
|
|
AegisName: Bs_Sha_M_S_23
|
|
Name: EXP Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23863
|
|
AegisName: Bs_Item_M_S_5
|
|
Name: Mad Bunny SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23864
|
|
AegisName: Bs_Item_M_S_9
|
|
Name: Archangel's Wings SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23865
|
|
AegisName: Bs_Item_M_S_14
|
|
Name: Smokie's Transformation Leaf SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23866
|
|
AegisName: Bs_Item_M_S_16
|
|
Name: Ifrit's Ear SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23867
|
|
AegisName: Bs_Item_M_S_17
|
|
Name: Heartwing Band SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23868
|
|
AegisName: Bs_Item_M_S_19
|
|
Name: Sigrun's Wings SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23869
|
|
AegisName: Bs_Item_M_S_27
|
|
Name: Cat Headdress SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23870
|
|
AegisName: Bs_Item_M_S_35
|
|
Name: Noble Mask SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23871
|
|
AegisName: Bs_Sha_M_S_9
|
|
Name: Gemstone Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23872
|
|
AegisName: Bs_Sha_M_S_10
|
|
Name: Bearers Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23873
|
|
AegisName: Bs_Sha_M_S_11
|
|
Name: Hasty Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23874
|
|
AegisName: Bs_Sha_M_S_21
|
|
Name: Critical Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23875
|
|
AegisName: Bs_Sha_M_S_22
|
|
Name: Mortal Blow Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23876
|
|
AegisName: Bs_Item_M_S_1
|
|
Name: Fallen Angel Wings SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23877
|
|
AegisName: Bs_Item_M_S_3
|
|
Name: Adventurer's Backpack SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23879
|
|
AegisName: Bs_Item_M_S_18
|
|
Name: Spell Circuit SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23880
|
|
AegisName: Bs_Item_M_S_20
|
|
Name: New Wave Sunglasses SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23881
|
|
AegisName: Bs_Item_M_S_21
|
|
Name: Giant Snake Breath SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23882
|
|
AegisName: Bs_Item_M_S_22
|
|
Name: Judge Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23883
|
|
AegisName: Bs_Item_M_S_23
|
|
Name: Dog Officer SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23884
|
|
AegisName: Bs_Item_M_S_24
|
|
Name: Fancy Feather Hat SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23885
|
|
AegisName: Bs_Item_M_S_25
|
|
Name: Amistr Beret SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23886
|
|
AegisName: Bs_Item_M_S_26
|
|
Name: General Helm SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23887
|
|
AegisName: Bs_Item_M_S_30
|
|
Name: Cursed Knight's Shield SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23888
|
|
AegisName: Bs_Sha_M_S_3
|
|
Name: Penetration Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23889
|
|
AegisName: Bs_Sha_M_S_4
|
|
Name: Tempest Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23890
|
|
AegisName: Bs_Sha_M_S_12
|
|
Name: Blitz Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23891
|
|
AegisName: Bs_Sha_M_S_14
|
|
Name: Reload Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23892
|
|
AegisName: Bs_Sha_M_S_24
|
|
Name: Force and Spirit Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23893
|
|
AegisName: Bs_Sha_M_S_25
|
|
Name: Infinity Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23894
|
|
AegisName: Bs_Item_M_S_51
|
|
Name: Wickebine's Black Cat's Ear SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23899
|
|
AegisName: Comp_Almighty
|
|
Name: "[Not For Sale] Almighty"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
bonus_script "{ bonus bAllStats,10; bonus bBaseAtk,30; bonus bMatk,30; }",3600;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 23919
|
|
AegisName: K_Secret_Key
|
|
Name: Kachua's Secret Key
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* callfunc "F_Kachua_Key"; */
|
|
- Id: 23926
|
|
AegisName: Shadow_9_Refine_Hammer
|
|
Name: Shadow 9 Refine Hammer
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 23952
|
|
AegisName: Sillit_Pong_Box
|
|
Name: Sillit Pong Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 6443,1;
|
|
- Id: 23967
|
|
AegisName: EnchantStone_Recipe_9m
|
|
Name: Enchant Stone Recipe 9m
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 23981
|
|
AegisName: Abyss_Ddbox
|
|
Name: Turbulence Dragon's Power
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100000
|
|
AegisName: IDTest_Special
|
|
Name: IDTest Special
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100003
|
|
AegisName: ILL_Piece_A
|
|
Name: Red Phantom Resonance Stone
|
|
Type: Delayconsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100004
|
|
AegisName: ILL_Piece_B
|
|
Name: Azure Mirage Resonance Stone
|
|
Type: Delayconsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100005
|
|
AegisName: G_Small_Mana_Potion
|
|
Name: True Small Mana Potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
sc_start2 SC_S_MANAPOTION,3600000,-5,5;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100006
|
|
AegisName: G_M_DEFScroll
|
|
Name: True Brilliant Protection Scroll # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
specialeffect2 EF_HEAL3;
|
|
bonus_script "{ bonus bDef,500; bonus bMdef,200; }",3600,0,1,EFST_M_DEFSCROLL;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100007
|
|
AegisName: G_Limit_Power_Booster
|
|
Name: Gin Limited Power Booster # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHit,30; bonus bFlee,30; bonus bAspd,1; bonus bUseSPrate,-5; bonus bFixedCastrate,-30; }",3600,1,1,EFST_LIMIT_POWER_BOOSTER;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100008
|
|
AegisName: G_Infinity_Drink
|
|
Name: Gin Infinity Drink # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
specialeffect2 EF_POTION_BERSERK;
|
|
bonus_script "{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bCritAtkRate,5; bonus bLongAtkRate,5; bonus bMatkRate,5; bonus bNoCastCancel; }",3600,1,1,EFST_INFINITY_DRINK;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100009
|
|
AegisName: Joy_Of_Victory
|
|
Name: Victorious Happiness
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100010
|
|
AegisName: PerfectSize_Mix
|
|
Name: Perfect Size Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100011
|
|
AegisName: MagicPiercing_Mix
|
|
Name: Magic Piercing Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100019
|
|
AegisName: Enchant_Stone_Box18
|
|
Name: Costume Enchant Stone Box 18
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box18);
|
|
- Id: 100023
|
|
AegisName: Ancient_Hero_Bravery
|
|
Name: Ancient Hero Bravery
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100025
|
|
AegisName: Ancient_Hero_Wisdom
|
|
Name: Ancient Hero Wisdom
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100043
|
|
AegisName: Boost_Up_1
|
|
Name: Booster Armor UpgradeBox
|
|
Type: Delayconsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100044
|
|
AegisName: Boost_Up_2
|
|
Name: Booster Weapon UpgradeBox
|
|
Type: Delayconsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100052
|
|
AegisName: Enchant_Stone_Box19
|
|
Name: Costume Enchant Stone Box 19
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box19);
|
|
- Id: 100053
|
|
AegisName: Piercing_Mix
|
|
Name: Piercing Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100058
|
|
AegisName: Hasty_Mix
|
|
Name: Hasty Shadow SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100060
|
|
AegisName: EnchantStone_Recipe_4m
|
|
Name: 4m Enchant Stone Recipe SynthesisBox
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100065
|
|
AegisName: WL_MB_SG
|
|
Name: Spell Book (Storm Gust)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",1;
|
|
- Id: 100066
|
|
AegisName: WL_MB_LOV
|
|
Name: Spell Book (Lord of Vermilion)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",2;
|
|
- Id: 100067
|
|
AegisName: WL_MB_MS
|
|
Name: Spell Book (Meteor Storm)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",3;
|
|
- Id: 100068
|
|
AegisName: WL_MB_DL
|
|
Name: Spell Book (Drain Life)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",4;
|
|
- Id: 100069
|
|
AegisName: WL_MB_JF
|
|
Name: Spell Book (Jack Frost)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",5;
|
|
- Id: 100070
|
|
AegisName: WL_MB_ES
|
|
Name: Spell Book (Earth Strain)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",6;
|
|
- Id: 100071
|
|
AegisName: WL_MB_CR
|
|
Name: Spell Book (Crimson Rock)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",7;
|
|
- Id: 100072
|
|
AegisName: WL_MB_CL
|
|
Name: Spell Book (Chain Lightning)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",8;
|
|
- Id: 100073
|
|
AegisName: WL_MB_CM
|
|
Name: Spell Book (Comet)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",9;
|
|
- Id: 100074
|
|
AegisName: WL_MB_TV
|
|
Name: Spell Book (Tetra Vortex)
|
|
Type: Delayconsume
|
|
Flags:
|
|
NoConsume: true
|
|
Script: |
|
|
itemskill "WL_READING_SB_READING",10;
|
|
- Id: 100075
|
|
AegisName: DishSet05
|
|
Name: Level 5 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,5;
|
|
sc_start SC_AGIFOOD,600000,5;
|
|
sc_start SC_VITFOOD,600000,5;
|
|
sc_start SC_INTFOOD,600000,5;
|
|
sc_start SC_DEXFOOD,600000,5;
|
|
sc_start SC_LUKFOOD,600000,5;
|
|
percentheal 5,5;
|
|
- Id: 100076
|
|
AegisName: DishSet06
|
|
Name: Level 6 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,6;
|
|
sc_start SC_AGIFOOD,600000,6;
|
|
sc_start SC_VITFOOD,600000,6;
|
|
sc_start SC_INTFOOD,600000,6;
|
|
sc_start SC_DEXFOOD,600000,6;
|
|
sc_start SC_LUKFOOD,600000,6;
|
|
percentheal 6,6;
|
|
- Id: 100077
|
|
AegisName: DishSet07
|
|
Name: Level 7 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,7;
|
|
sc_start SC_AGIFOOD,600000,7;
|
|
sc_start SC_VITFOOD,600000,7;
|
|
sc_start SC_INTFOOD,600000,7;
|
|
sc_start SC_DEXFOOD,600000,7;
|
|
sc_start SC_LUKFOOD,600000,7;
|
|
percentheal 7,7;
|
|
- Id: 100078
|
|
AegisName: DishSet08
|
|
Name: Level 8 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,8;
|
|
sc_start SC_AGIFOOD,600000,8;
|
|
sc_start SC_VITFOOD,600000,8;
|
|
sc_start SC_INTFOOD,600000,8;
|
|
sc_start SC_DEXFOOD,600000,8;
|
|
sc_start SC_LUKFOOD,600000,8;
|
|
percentheal 8,8;
|
|
- Id: 100079
|
|
AegisName: DishSet09
|
|
Name: Level 9 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,9;
|
|
sc_start SC_AGIFOOD,600000,9;
|
|
sc_start SC_VITFOOD,600000,9;
|
|
sc_start SC_INTFOOD,600000,9;
|
|
sc_start SC_DEXFOOD,600000,9;
|
|
sc_start SC_LUKFOOD,600000,9;
|
|
percentheal 9,9;
|
|
- Id: 100080
|
|
AegisName: DishSet10
|
|
Name: Level 10 Dishes
|
|
Type: Usable
|
|
Weight: 50
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
sc_start SC_STRFOOD,600000,10;
|
|
sc_start SC_AGIFOOD,600000,10;
|
|
sc_start SC_VITFOOD,600000,10;
|
|
sc_start SC_INTFOOD,600000,10;
|
|
sc_start SC_DEXFOOD,600000,10;
|
|
sc_start SC_LUKFOOD,600000,10;
|
|
percentheal 10,10;
|
|
- Id: 100081
|
|
AegisName: Kr_B_Special01
|
|
Name: "[Not for Sale] Advanced Combat Manual"
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
sc_start SC_EXPBOOST,3600000,200;
|
|
- Id: 100083
|
|
AegisName: BackSignon_Box_TW
|
|
Name: Korean Style Apple Hair Box (Middle)
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",31754,31755,31756,31757,31758,31759,31760,31761),1;
|
|
- Id: 100125
|
|
AegisName: Metal_7_Ticket
|
|
Name: Metal Weapon +7 Refinement Ticket
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100128
|
|
AegisName: Noblesse_Rifine_Ticket
|
|
Name: Noblesses Refine Ticket
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100129
|
|
AegisName: Imperial_Rifine_Ticket
|
|
Name: Imperial Refine Ticket
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 125
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100130
|
|
AegisName: Grace_Rifine_Ticket
|
|
Name: Grace Refine Ticket
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100131
|
|
AegisName: Imperial_Convert1
|
|
Name: Imperial Physical Modification Permit (Garment)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 125
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100132
|
|
AegisName: Imperial_Convert2
|
|
Name: Imperial Magical Modification Permit (Garment)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 125
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100133
|
|
AegisName: Grace_Convert1
|
|
Name: Grace Physical Modification Permit (Garment)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100134
|
|
AegisName: Grace_Convert2
|
|
Name: Grace Magical Modification Permit (Garment)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100135
|
|
AegisName: Imperial_Convert3
|
|
Name: Imperial Physical Modification Permit (Armor)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 125
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100136
|
|
AegisName: Imperial_Convert4
|
|
Name: Imperial Magical Modification Permit (Armor)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 125
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100137
|
|
AegisName: Grace_Convert3
|
|
Name: Grace Physical Modification Permit (Armor)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100138
|
|
AegisName: Grace_Convert4
|
|
Name: Grace Magical Modification Permit (Armor)
|
|
Type: Delayconsume
|
|
Buy: 20
|
|
EquipLevelMin: 150
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100142
|
|
AegisName: Abyss_Ddbox2
|
|
Name: Stable Dragon's Power
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100144
|
|
AegisName: Abyss_Ddbox3
|
|
Name: Burning Dragon's Power
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100145
|
|
AegisName: Abyss_Ddbox4
|
|
Name: Hot Dragon's Power
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100147
|
|
AegisName: Bath_Foam_A
|
|
Name: Bath Foam A
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
/* bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,5; }",900,1,0,EFST_BATH_FOAM_A; */
|
|
- Id: 100148
|
|
AegisName: Bath_Foam_B
|
|
Name: Bath Foam B
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
/* bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,10; }",900,1,0,EFST_BATH_FOAM_B; */
|
|
- Id: 100149
|
|
AegisName: Bath_Foam_C
|
|
Name: Bath Foam C
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
/* bonus_script "{ bonus2 bAddRace2,RC2_EP172BATH,15; }",900,1,0,EFST_BATH_FOAM_C; */
|
|
- Id: 100151
|
|
AegisName: Skill_Sha_M_S_Weapon
|
|
Name: Skill Shadow Weapon Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100158
|
|
AegisName: Mado_Box02
|
|
Name: Mado Strengthening Suit
|
|
Type: Usable
|
|
Buy: 10000
|
|
Weight: 300
|
|
Jobs:
|
|
Blacksmith: true
|
|
Classes:
|
|
All_Third: true
|
|
Fourth: true
|
|
EquipLevelMin: 100
|
|
Delay:
|
|
Duration: 180000
|
|
Script: |
|
|
specialeffect2 EF_CLAYMORE;
|
|
setmadogear true,MADO_SUIT;
|
|
- Id: 100160
|
|
AegisName: Auto_M_Box
|
|
Name: Automatic Module Box
|
|
Type: Usable
|
|
Script: |
|
|
getrandgroupitem(IG_AUTOMATIC_MODULE_MIX,1);
|
|
- Id: 100161
|
|
AegisName: Epic_M_Box
|
|
Name: Epic Module Box
|
|
Type: Usable
|
|
Script: |
|
|
getrandgroupitem(IG_EPIC_MODULE_MIX,1);
|
|
- Id: 100162
|
|
AegisName: Auto_M_I_Box_A
|
|
Name: Automatic Improvement Device Physical
|
|
Type: Usable
|
|
Script: |
|
|
getrandgroupitem(IG_AUTO_M_I_BOX_A,1);
|
|
- Id: 100163
|
|
AegisName: Auto_M_I_Box_B
|
|
Name: Automatic Improvement Device Magical
|
|
Type: Usable
|
|
Script: |
|
|
getrandgroupitem(IG_AUTO_M_I_BOX_B,1);
|
|
- Id: 100164
|
|
AegisName: Auto_Imp_Melee_1
|
|
Name: Normal Automatic Improvement Device (Physical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100165
|
|
AegisName: Auto_Imp_Melee_2
|
|
Name: Advanced Automatic Improvement Device (Physical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100166
|
|
AegisName: Auto_Imp_Melee_3
|
|
Name: Premium Automatic Improvement Device (Physical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100167
|
|
AegisName: Auto_Imp_Magic_1
|
|
Name: Normal Automatic Improvement Device (Magical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100168
|
|
AegisName: Auto_Imp_Magic_2
|
|
Name: Advanced Automatic Improvement Device (Magical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100169
|
|
AegisName: Auto_Imp_Magic_3
|
|
Name: Premium Automatic Improvement Device (Magical)
|
|
Type: DelayConsume
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100171
|
|
AegisName: Cannon_Ball_Box
|
|
Name: Cannon Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Cannon_Ball",500;
|
|
- Id: 100172
|
|
AegisName: Iron_Cannon_Ball_Box
|
|
Name: Iron Cannon Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Iron_Cannon_Ball",500;
|
|
- Id: 100173
|
|
AegisName: Soul_Cannon_Ball_Box
|
|
Name: Soul Cannon Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Soul_Cannon_Ball",500;
|
|
- Id: 100174
|
|
AegisName: Poison_Arrow_Container
|
|
Name: Poison Arrow Quiver
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Poison_Arrow",500;
|
|
- Id: 100176
|
|
AegisName: Dark_Cannon_Ball_Box
|
|
Name: Dark Cannon Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Dark_Cannon_Ball",500;
|
|
- Id: 100177
|
|
AegisName: Holy_Cannon_Ball_Box
|
|
Name: Holy Cannon Ball Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Holy_Cannon_Ball",500;
|
|
- Id: 100178
|
|
AegisName: aegis_100178
|
|
Name: Liquid Condensed Bullet Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Liquid_Condensed_Bullet",500;
|
|
- Id: 100179
|
|
AegisName: Magic_Gear_Fuel_Box
|
|
Name: Large Mado Gear Fuel Tank
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Magic_Gear_Fuel",500;
|
|
- Id: 100180
|
|
AegisName: RepairA_Box
|
|
Name: Repair A Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "RepairA",500;
|
|
- Id: 100181
|
|
AegisName: RepairB_Box
|
|
Name: Repair B Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "RepairB",500;
|
|
- Id: 100182
|
|
AegisName: RepairC_Box
|
|
Name: Repair C Box
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "RepairC",500;
|
|
- Id: 100183
|
|
AegisName: Flame_Stone_Bundle
|
|
Name: Flame Stone Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Flame_Stone",500;
|
|
- Id: 100184
|
|
AegisName: Ice_Stone_Bundle
|
|
Name: Ice Stone Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Ice_Stone",500;
|
|
- Id: 100185
|
|
AegisName: Wind_Stone_Bundle
|
|
Name: Wind Stone Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Wind_Stone",500;
|
|
- Id: 100186
|
|
AegisName: Shadow_Orb_Bundle
|
|
Name: Shadow Orb Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Shadow_Orb",500;
|
|
- Id: 100187
|
|
AegisName: Charm_Fire_Bundle
|
|
Name: Fire Amulet Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Charm_Fire",500;
|
|
- Id: 100188
|
|
AegisName: Charm_Ice_Bundle
|
|
Name: Ice Amulet Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Charm_Ice",500;
|
|
- Id: 100189
|
|
AegisName: Charm_Wind_Bundle
|
|
Name: Wind Amulet Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Charm_Wind",500;
|
|
- Id: 100190
|
|
AegisName: Charm_Earth_Bundle
|
|
Name: Earth Amulet Bundle
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Charm_Earth",500;
|
|
- Id: 100191
|
|
AegisName: Kunai_Scroll_Explosive
|
|
Name: Explosive Kunai Summon Scroll
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Explosive_Kunai",500;
|
|
- Id: 100195
|
|
AegisName: aegis_100195
|
|
Name: Full Metal Jacket Cartridge
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Full_Metal_Jacket",500;
|
|
- Id: 100196
|
|
AegisName: aegis_100196
|
|
Name: Projection Landmine Cartridge
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Shooting_Mine",500;
|
|
- Id: 100197
|
|
AegisName: aegis_100197
|
|
Name: Dragon Tail Missile Cartridge
|
|
Type: Usable
|
|
Buy: 20
|
|
Weight: 250
|
|
Script: |
|
|
getitem "Dragon_Tail_Missile",500;
|
|
- Id: 100202
|
|
AegisName: Enchant_Stone_Box20
|
|
Name: Costume Enchant Stone Box 20
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box20);
|
|
- Id: 100205
|
|
AegisName: Class_Sha_R_M_Melee
|
|
Name: Class Shadow Spellbook (Melee)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100206
|
|
AegisName: Class_Sha_R_M_Magic
|
|
Name: Class Shadow Spellbook (Magic)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100207
|
|
AegisName: Skill_Sha_R_M_Melee
|
|
Name: Skill Shadow Spellbook (Melee)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100208
|
|
AegisName: Skill_Sha_R_M_Magic
|
|
Name: Skill Shadow Spellbook (Magic)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100209
|
|
AegisName: Skill_Sha_M_S_Shield
|
|
Name: Skill Shadow Shield Recipe
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100210
|
|
AegisName: Skill_Sha_M_S_Pendant
|
|
Name: Skill Shadow Pendant Recipe
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100211
|
|
AegisName: Skill_Sha_M_S_Earing
|
|
Name: Skill Shadow Earring Recipe
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100212
|
|
AegisName: Skill_Sha_M_S_Shoes
|
|
Name: Skill Shadow Shoes Recipe
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100213
|
|
AegisName: Skill_Sha_M_S_Armor
|
|
Name: Skill Shadow Armor Recipe
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100231
|
|
AegisName: Ref_T_Potion
|
|
Name: Golden X
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Script: |
|
|
sc_start SC_REF_T_POTION,30000,0;
|
|
- Id: 100232
|
|
AegisName: Add_Atk_Potion
|
|
Name: Red Herb Activator
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Script: |
|
|
sc_start SC_ADD_ATK_DAMAGE,500000,15;
|
|
- Id: 100233
|
|
AegisName: Add_Matk_Potion
|
|
Name: Blue Herb Activator
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 30
|
|
Script: |
|
|
sc_start SC_ADD_MATK_DAMAGE,500000,15;
|
|
- Id: 100251
|
|
AegisName: Illu_Enhance_Cube
|
|
Name: Illusion Reinforcement Cube
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100252
|
|
AegisName: Auto_Enhance_Cube
|
|
Name: Automatic Reinforcement Cube
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100268
|
|
AegisName: Temporal_Refine_Cube
|
|
Name: Temporal Equipment 11 Refine Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100269
|
|
AegisName: Geffen_Refine_Cube
|
|
Name: Geffen Magic Tournament 12 Refine Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100270
|
|
AegisName: Old_Refine_Cube
|
|
Name: Fallen Warrior's Headgear 12 Refine Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100271
|
|
AegisName: Refine_Hero_Weapon
|
|
Name: Ancient Hero Weapon 9 Refine Permission
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100272
|
|
AegisName: Refine_Hero_Boots
|
|
Name: Ancient Hero Boots 9 Refine Permission
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100273
|
|
AegisName: Remodel_Hero_Boots
|
|
Name: Ancient Hero Boots Modification Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100274
|
|
AegisName: Oriental_Sword_Cube
|
|
Name: Oriental Sword Modification Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100275
|
|
AegisName: Dragonic_Slayer_Cube
|
|
Name: Dragonic Slayer Modification Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100276
|
|
AegisName: Shiver_Katar_K_Cube
|
|
Name: Shiver Katar Modification Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100277
|
|
AegisName: Blade_Katar_Cube
|
|
Name: Blade Katar Modification Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100314
|
|
AegisName: Enchant_Stone_Box21
|
|
Name: Costume Enchant Stone Box 21
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box21);
|
|
- Id: 100316
|
|
AegisName: G_Tyrs_Blessing
|
|
Name: Gin Tyr's Blessing # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
bonus_script "{ bonus bBaseAtk,20; bonus bMatk,20; bonus bHit,30; bonus bFlee,30; }",3600,3,1;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100317
|
|
AegisName: G_Mental_Potion
|
|
Name: Gin Mental Potion # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
NoUse:
|
|
Sitting: true
|
|
Script: |
|
|
specialeffect2 EF_SPELLBREAKER;
|
|
bonus_script "{ bonus bUseSPrate,-10; bonus bMaxSPrate,10; }",3600,1,1,EFST_TARGET_ASPD;
|
|
sc_start SC_SPEEDUP0,600000,25;
|
|
- Id: 100321
|
|
AegisName: OS_Weapon_Refine_Cube
|
|
Name: OS Weapon +11 Refinement Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100322
|
|
AegisName: Racecap_Refine_Cube
|
|
Name: Racing Cap +11 Refinement Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100327
|
|
AegisName: Sword_Of_Bluefire_Cube
|
|
Name: Red Lotus Sword Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100328
|
|
AegisName: Slate_Sword_Cube
|
|
Name: Slate Sword Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100329
|
|
AegisName: Narcis_Bow_Cube
|
|
Name: Narcissus Bow Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100330
|
|
AegisName: Trumpet_Shell_K_Cube
|
|
Name: Trumpet Shell Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100331
|
|
AegisName: Barb_Wire_K_Cube
|
|
Name: Barbed Wire Whip Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100338
|
|
AegisName: Booster_W_Up_1
|
|
Name: Booster Weapon Phase 1 Upgrade Package
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100339
|
|
AegisName: Booster_W_Up_2
|
|
Name: Booster Weapon Phase 2 Upgrade Package
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100340
|
|
AegisName: Booster_W_Up_3
|
|
Name: Booster Weapon Upgrade Package
|
|
Type: DelayConsume
|
|
EquipLevelMin: 100
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100341
|
|
AegisName: E_ILL_Up
|
|
Name: Illusion (Bound) Upgrade Package
|
|
Type: DelayConsume
|
|
EquipLevelMin: 130
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100354
|
|
AegisName: Auto_Armor_Refine_Cube
|
|
Name: Automatic Armor +11 Refinement Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100355
|
|
AegisName: Bio_Weapon_Refine_Cube
|
|
Name: Bio Lab Weapon +11 Refinement Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100360
|
|
AegisName: Avenger_Cube
|
|
Name: Avenger Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100361
|
|
AegisName: Meteor_Striker_Cube
|
|
Name: Meteor Striker Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100362
|
|
AegisName: Magic_Sword_Cube
|
|
Name: Mado Sword Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100363
|
|
AegisName: Fatalist_Cube
|
|
Name: Fatalist Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100365
|
|
AegisName: MD_Geffen_Rarmor
|
|
Name: MD Geffen Refine Armor
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100366
|
|
AegisName: MD_Geffen_Rhood
|
|
Name: MD Geffen Refine Hood
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100367
|
|
AegisName: MD_Geffen_Racc
|
|
Name: MD Geffen Refine Accessory
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100368
|
|
AegisName: MD_Geffen_Rsheild
|
|
Name: MD Geffen Refine Shield
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100371
|
|
AegisName: aegis_100371
|
|
Name: Homunculus Nutritional Supplement
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
addhomintimacy 100; // !TODO: Confirm increase amount
|
|
- Id: 100376
|
|
AegisName: Royal_Bow_K_Cube
|
|
Name: Royal Bow Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100377
|
|
AegisName: Scalet_Dragon_L_Cube
|
|
Name: Scarlet Dragon Leather Bow Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100378
|
|
AegisName: Shadow_Staff_K_Cube
|
|
Name: Shadow Staff Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100379
|
|
AegisName: Freezing_Rod_Cube
|
|
Name: Chilling Cane Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100381
|
|
AegisName: 3Lv_9Refine_Weapon_7Gu
|
|
Name: +9 Lv3 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100382
|
|
AegisName: 3Lv_10Refine_Weapon_8Gu
|
|
Name: +10 Lv3 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100383
|
|
AegisName: 3Lv_11Refine_Weapon_9Gu
|
|
Name: +11 Lv3 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100384
|
|
AegisName: 3Lv_12Refine_Weapon_10G
|
|
Name: +12 Lv3 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100385
|
|
AegisName: 4Lv_9Refine_Weapon_8Gu
|
|
Name: +9 Lv4 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100386
|
|
AegisName: 4Lv_10Refine_Weapon_9Gu
|
|
Name: +10 Lv4 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100387
|
|
AegisName: 4Lv_11Refine_Weapon_10G
|
|
Name: +11 Lv4 Weapon Refine Permission Exchange Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100388
|
|
AegisName: Iron_Nail_K_Cube
|
|
Name: Iron Nail Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100390
|
|
AegisName: Ray_Knuckle_Cube
|
|
Name: Ray Knuckle Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100391
|
|
AegisName: Moonlight_Box_IL
|
|
Name: Moonlight Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100392
|
|
AegisName: S_Moonlight_Box_IL
|
|
Name: Special Moonlight Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100393
|
|
AegisName: Undine_Spear_K_Cube
|
|
Name: Aquatic Spear Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100394
|
|
AegisName: Light_Blade_Cube
|
|
Name: Light Blade Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100395
|
|
AegisName: Iron_Staff_Cube
|
|
Name: Iron Staff Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100396
|
|
AegisName: Blue_Crystal_Staff_Cube
|
|
Name: Blue Crystal Staff Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100397
|
|
AegisName: Demon_Hunt_Bible_Cube
|
|
Name: Exorcist's Bible Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100398
|
|
AegisName: Saint_Hall_Cube
|
|
Name: Saint Scepter Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100399
|
|
AegisName: MeawFoxtail_Cube
|
|
Name: Meowmeow Foxtail Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100400
|
|
AegisName: Fog_Dew_Sword_Cube
|
|
Name: Kiri no Tsuyu Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100401
|
|
AegisName: Humma_Clear_Cube
|
|
Name: Clarity Huuma Shuriken Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100402
|
|
AegisName: Thousand_Sun_Cube
|
|
Name: Thousand Sun Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100403
|
|
AegisName: Spirit_Pendulum_Cube
|
|
Name: Spirit Pendulum Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100404
|
|
AegisName: Crimson_Rose_Cube
|
|
Name: Crimson Rose Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100405
|
|
AegisName: Master_Soul_Rifle_Cube
|
|
Name: Master Soul Rifle Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100406
|
|
AegisName: Golden_Lord_Launcher_Cube
|
|
Name: Golden Lord Launcher Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100407
|
|
AegisName: The_Black_Cube
|
|
Name: The Black Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100408
|
|
AegisName: Demon_Slayer_Shot_Cube
|
|
Name: Demon Slayer Shot Modification Cube
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100412
|
|
AegisName: Great_Hero_Bravery
|
|
Name: Great Hero's Bravery
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100413
|
|
AegisName: Great_Hero_Wisdom
|
|
Name: Great Hero's Wisdom
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100414
|
|
AegisName: Vampire_Box_IL
|
|
Name: Vampire Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100415
|
|
AegisName: S_Vampire_Box_IL
|
|
Name: Special Vampire Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100416
|
|
AegisName: S_Frozen_Box_IL
|
|
Name: Special Frozen Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100417
|
|
AegisName: Turtle_Is_Box_IL
|
|
Name: Turtle Island Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100418
|
|
AegisName: S_Turtle_Is_Box_IL
|
|
Name: Special Turtle Island Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100419
|
|
AegisName: Teddy_Bear_Box_IL
|
|
Name: Teddy Bear Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100420
|
|
AegisName: S_Teddy_Bear_Box_IL
|
|
Name: Special Teddy Bear Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100421
|
|
AegisName: Luanda_Box_IL
|
|
Name: Luanda Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100422
|
|
AegisName: S_Luanda_Box_IL
|
|
Name: Special Luanda Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100423
|
|
AegisName: Labyrinth_Box_IL
|
|
Name: Labyrinth Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100424
|
|
AegisName: S_Labyrinth_Box_IL
|
|
Name: Special Labyrinth Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100425
|
|
AegisName: Underwater_Box_IL
|
|
Name: Underwater Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100426
|
|
AegisName: S_Underwater_Box_IL
|
|
Name: Special Underwater Refine Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100433
|
|
AegisName: EnchantStone_Recipe_3m
|
|
Name: March Costume Enchant Stone Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100436
|
|
AegisName: Circlet_Refine_Cube
|
|
Name: Temporal Circlet +11 Refine Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100452
|
|
AegisName: Minus_POW
|
|
Name: POW Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bPow,-1,100452;
|
|
- Id: 100453
|
|
AegisName: Minus_SPL
|
|
Name: SPL Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bSpl,-1,100453;
|
|
- Id: 100454
|
|
AegisName: Minus_STA
|
|
Name: STA Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bSta,-1,100454;
|
|
- Id: 100455
|
|
AegisName: Minus_WIS
|
|
Name: WIS Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bWis,-1,100455;
|
|
- Id: 100456
|
|
AegisName: Minus_CON
|
|
Name: CON Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bCon,-1,100456;
|
|
- Id: 100457
|
|
AegisName: Minus_CRT
|
|
Name: CRT Reduction Potion
|
|
Type: Delayconsume
|
|
Buy: 10
|
|
Script: |
|
|
callfunc "F_CashReduceTraitStat",bCrt,-1,100457;
|
|
- Id: 100465
|
|
AegisName: aegis_100465
|
|
Name: 3rd/Expanded Stone (Garment) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_GARMENT_BOX);
|
|
- Id: 100466
|
|
AegisName: Egir_Power_Box
|
|
Name: Aegir's Power Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100467
|
|
AegisName: Egir_Magic_Box
|
|
Name: Aegir's Magical Power Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100468
|
|
AegisName: Egirnion_Box
|
|
Name: Aegirnian Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100476
|
|
AegisName: MD_Airboat_Random
|
|
Name: Ymir Beads
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100479
|
|
AegisName: Sakray_Fury
|
|
Name: Sakrai's Wraith
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100480
|
|
AegisName: Sakray_Fury2
|
|
Name: Condensed Sakrai's Wrath
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100481
|
|
AegisName: Overclocker
|
|
Name: Battle Processor Accelerator
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100485
|
|
AegisName: Sakray_Regret
|
|
Name: Sakrai's Regret
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100486
|
|
AegisName: Sakray_Regret2
|
|
Name: Condensed Sakrai's Regret
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100495
|
|
AegisName: aegis_100495
|
|
Name: 3rd/Expanded Stone II (Garment) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_GARMENT_BOX2);
|
|
- Id: 100496
|
|
AegisName: aegis_100496
|
|
Name: Rebirth/Expanded Stone (Top) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_TOP_BOX);
|
|
- Id: 100497
|
|
AegisName: aegis_100497
|
|
Name: Rebirth/Expanded Stone II (Top) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_TOP_BOX2);
|
|
- Id: 100498
|
|
AegisName: aegis_100498
|
|
Name: Rebirth/Expanded Stone (Middle) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_MIDDLE_BOX);
|
|
- Id: 100499
|
|
AegisName: aegis_100499
|
|
Name: Rebirth/Expanded Stone II (Middle) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_MIDDLE_BOX2);
|
|
- Id: 100500
|
|
AegisName: aegis_100500
|
|
Name: Rebirth/Expanded Stone (Bottom) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_BOTTOM_BOX);
|
|
- Id: 100501
|
|
AegisName: aegis_100501
|
|
Name: Rebirth/Expanded Stone II (Bottom) Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_THIRD_JOB_STONE_BOTTOM_BOX2);
|
|
- Id: 100502
|
|
AegisName: Enchant_Stone_Box22
|
|
Name: Costume Enchant Stone Box 22
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box22);
|
|
- Id: 100516
|
|
AegisName: Eye_Cleaner
|
|
Name: Eye Cleaner
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_DEEPBLIND;
|
|
- Id: 100517
|
|
AegisName: Ear_Cleaner
|
|
Name: Ear Cleaner
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_DEEPSILENCE;
|
|
- Id: 100518
|
|
AegisName: Tonics
|
|
Name: Tonics
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_LASSITUDE;
|
|
- Id: 100519
|
|
AegisName: Mini_Extinguisher
|
|
Name: Mini Extinguisher
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_CONFLAGRATION;
|
|
- Id: 100520
|
|
AegisName: Water_Of_Lucky
|
|
Name: Water Of Lucky
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_MISFORTUNE;
|
|
- Id: 100521
|
|
AegisName: Strong_Antidote
|
|
Name: Strong Antidote
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_DEADLYPOISON;
|
|
- Id: 100522
|
|
AegisName: High_Energy_Chocolate
|
|
Name: High Energy Chocolate
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_DEPRESSION;
|
|
- Id: 100523
|
|
AegisName: Refined_Holy_Water
|
|
Name: Refined Holy Water
|
|
Type: Healing
|
|
Buy: 20
|
|
Weight: 50
|
|
Script: |
|
|
sc_end SC_HANDICAPSTATE_HOLYFLAME;
|
|
- Id: 100572
|
|
AegisName: FullPeneShadow_Mix
|
|
Name: Full Penetration Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100579
|
|
AegisName: PendantStoneForWork
|
|
Name: Pendant Gemstone of Force
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100580
|
|
AegisName: Dark_Stone
|
|
Name: Dark Stone
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100591
|
|
AegisName: Thanos_W_Reform_1
|
|
Name: Thanos Weapon Reform Cube (Lower)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100592
|
|
AegisName: Thanos_W_Reform_2
|
|
Name: Thanos Weapon Reform Cube (Middle)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100596
|
|
AegisName: FullTempShadow_Mix
|
|
Name: Full Tempest Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100600
|
|
AegisName: Shadow_Mix_Recipe2
|
|
Name: New Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100601
|
|
AegisName: Illusion_Module_Mix
|
|
Name: Illusion Module Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100602
|
|
AegisName: Automatic_Module_Mix
|
|
Name: Automatic Module Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100619
|
|
AegisName: Thanos_Refine_Hammer
|
|
Name: Modified Thanos Refinement Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100620
|
|
AegisName: True_GemShadow_Mix
|
|
Name: True Gemstone Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100621
|
|
AegisName: Mammoth_Mix
|
|
Name: Maximum Mammonth Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100623
|
|
AegisName: Shadow_Mix_Recipe_TH
|
|
Name: Lapine Box (Shadow)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* laphine_synthesis(); */
|
|
- Id: 100626
|
|
AegisName: GrayWolf_7_Ticket
|
|
Name: Gray Wolf +7 Refinement Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100627
|
|
AegisName: GrayWolf_9_Ticket
|
|
Name: Gray Wolf +9 Refinement Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100648
|
|
AegisName: Consecrate_Weapon_1
|
|
Name: Purification Ritual
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100649
|
|
AegisName: Consecrate_Weapon_2
|
|
Name: Advanced Purification Ritual
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100650
|
|
AegisName: Pontifex_Courage
|
|
Name: Pontifex Courage
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 180
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100651
|
|
AegisName: Pontifex_Wisdom
|
|
Name: Pontifex Wisdom
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 180
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100652
|
|
AegisName: Pontifex_Tenacity
|
|
Name: Pontifex Tenacity
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 180
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100653
|
|
AegisName: Pontifex_Belief
|
|
Name: Pontifex Belief
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 180
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100661
|
|
AegisName: EXPShadow_Mix
|
|
Name: Experience Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100684
|
|
AegisName: Bio_Helm_Refine_Cube
|
|
Name: Biological Lab Helmet +11 Refinement Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100691
|
|
AegisName: AbsorbShadow_Mix
|
|
Name: Absolve Shadow Thump Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100694
|
|
AegisName: C_Armor_Reform_1
|
|
Name: Armor Modification Box (Lower)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100695
|
|
AegisName: C_Armor_Reform_2
|
|
Name: Armor Modification Box (Middle)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100699
|
|
AegisName: Twins_Box_IL
|
|
Name: Twins Refinement Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100700
|
|
AegisName: S_Twins_Box_IL
|
|
Name: Special Twins Refinement Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100710
|
|
AegisName: EXP_Overclocker
|
|
Name: EXP Overclocker
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100721
|
|
AegisName: Enchant_Stone_Box23
|
|
Name: Costume Enchant Stone Box 23
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box23);
|
|
- Id: 100722
|
|
AegisName: Booster_RandomOpt_P
|
|
Name: Booster Modification Stone(Physical)
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100723
|
|
AegisName: Booster_RandomOpt_M
|
|
Name: Booster Modification Stone(Magical)
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100744
|
|
AegisName: Costama_Egg69
|
|
Name: Hero's Weapon Modifier(Physical)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100745
|
|
AegisName: Hero_LT_Refine_Magic
|
|
Name: Hero's Weapon Modifier(Magical)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100746
|
|
AegisName: C_Weapon_Reform_1
|
|
Name: Weapon Modification Box (Lower)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100747
|
|
AegisName: C_Weapon_Reform_2
|
|
Name: Weapon Modification Box (Middle)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100748
|
|
AegisName: C_Weapon_Reform_3
|
|
Name: Weapon Modification Box (Upper)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100753
|
|
AegisName: Hero_Equipment_Cube
|
|
Name: Ancient Hero's Release Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100783
|
|
AegisName: MajorAutoSpell_Mix
|
|
Name: Auto Spell Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100784
|
|
AegisName: Shadow_Changer_W_Shi
|
|
Name: Shadow Changer (Weapon→Shield)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100786
|
|
AegisName: C_Armor_Reform_3
|
|
Name: Armor Modification Box (Upper)
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100817
|
|
AegisName: Thanos_Upgrade_Box
|
|
Name: Thanos Upgrade Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100819
|
|
AegisName: Hero_Weapon_Up_Box_1
|
|
Name: Hero's Weapon Modification Box I
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100820
|
|
AegisName: Hero_Weapon_Up_Box_2
|
|
Name: Hero's Weapon Modification Box II
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100821
|
|
AegisName: Hero_Weapon_Hammer_1
|
|
Name: Modified Hero's Weapon Refinement Hammer I
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100822
|
|
AegisName: Hero_Weapon_Hammer_2
|
|
Name: Modified Hero's Weapon Refinement Hammer II
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100823
|
|
AegisName: Lens_Craft_Stone
|
|
Name: Lens Craft Stone # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 100834
|
|
AegisName: Hero_Weapon_Up_Box_3
|
|
Name: Hero's Weapon Modification Box III
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100835
|
|
AegisName: Hero_Weapon_Hammer_3
|
|
Name: Modified Hero's Weapon Refinement Hammer III
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100880
|
|
AegisName: aegis_100880
|
|
Name: Piercing Shadow Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24157,24163,24164,24156,24160,24159,24165,24161,24162,24158),1;
|
|
- Id: 100887
|
|
AegisName: MagicalShadow_Mix
|
|
Name: Clever Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100888
|
|
AegisName: PhysicalShadow_Mix
|
|
Name: Durable Shadow Pick-Up Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 100890
|
|
AegisName: Shadow_Changer_A_W
|
|
Name: Shadow Changer (Armor→Weapon)
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100900
|
|
AegisName: Teleport_Ep19_01
|
|
Name: Ice Castle Transport Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "icas_in",175,63;
|
|
- Id: 100901
|
|
AegisName: Teleport_Ep18_01
|
|
Name: Gray Wolf Village Transport Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "wolfvill",164,141;
|
|
- Id: 100902
|
|
AegisName: Teleport_Ep17_02
|
|
Name: Barmund Mansion Transport Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "ba_in",87,389;
|
|
- Id: 100903
|
|
AegisName: Teleport_Ep17_01
|
|
Name: Border Area Cor Transport Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "sp_cor",152,158;
|
|
- Id: 100904
|
|
AegisName: Teleport_Ep16_01
|
|
Name: Military Base Transport Wing
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
warp "rebel_in",100,40;
|
|
- Id: 100908
|
|
AegisName: aegis_100908
|
|
Name: Magic Piercing Shadow Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem callfunc("F_Rand",24177,24171,24178,24170,24174,24173,24179,24175,24176,24172),1;
|
|
- Id: 100917
|
|
AegisName: Hero_Weapon_Hammer_4
|
|
Name: Modified Hero's Weapon Refinement Hammer IV
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100918
|
|
AegisName: Hero_Weapon_Up_Box_4
|
|
Name: Hero's Weapon Modification Box IV
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100920
|
|
AegisName: Enchant_Stone_Box24
|
|
Name: Costume Enchant Stone Box 24
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box24);
|
|
- Id: 100938
|
|
AegisName: Hero_Weapon_Hammer_5
|
|
Name: Modified Hero's Weapon Refinement Hammer V
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 100939
|
|
AegisName: Hero_Weapon_Up_Box_5
|
|
Name: Hero's Weapon Modification Box V
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101075
|
|
AegisName: SLD_Card_Recipe
|
|
Name: Sealed Boss Card Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101077
|
|
AegisName: Vivatus_Weapon_Hammer
|
|
Name: Vivatus Weapon Refinement Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101078
|
|
AegisName: Adulter_Weapon_Up_Box
|
|
Name: Adulter Weapon Modification Box
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101097
|
|
AegisName: aegis_101097
|
|
Name: "[Scroll] Unlimited Drink"
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
bonus_script "{ bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bCritAtkRate,5; bonus bLongAtkRate,5; bonus2 bMagicAddEle,Ele_All,5; bonus bNoCastCancel;}",1800;
|
|
- Id: 101103
|
|
AegisName: Enchant_Stone_Box25
|
|
Name: Costume Enchant Stone Box 25
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box25);
|
|
- Id: 101107
|
|
AegisName: Cannon_Box_Ice
|
|
Name: Cannon Box Ice
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 18005,500;
|
|
- Id: 101108
|
|
AegisName: Cannon_Box_Lightning
|
|
Name: Cannon Box Lightning
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 18006,500;
|
|
- Id: 101109
|
|
AegisName: Cannon_Box_Stone
|
|
Name: Cannon Box Stone
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 18007,500;
|
|
- Id: 101110
|
|
AegisName: Cannon_Box_Flare
|
|
Name: Cannon Box Fire
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 18008,500;
|
|
- Id: 101111
|
|
AegisName: Cannon_Box_Poisoning
|
|
Name: Cannon Box Poison
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 18009,500;
|
|
- Id: 101112
|
|
AegisName: Kunai_Scroll
|
|
Name: Kunai Scroll
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1220001,500;
|
|
- Id: 101113
|
|
AegisName: Kunai_Scroll_Nothing
|
|
Name: Kunai Scroll Nothing
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1220002,500;
|
|
- Id: 101114
|
|
AegisName: Kunai_Scroll_Shadow
|
|
Name: Kunai Scroll Shadow
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1220003,500;
|
|
- Id: 101115
|
|
AegisName: Kunai_Scroll_Hamaya
|
|
Name: Kunai Scroll Hamaya
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1220004,500;
|
|
- Id: 101116
|
|
AegisName: Nw_Grenade_Box
|
|
Name: Nw Grenade Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000564,500;
|
|
- Id: 101117
|
|
AegisName: Soa_Charm_Bundle
|
|
Name: Soa Charm Bundle
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000563,500;
|
|
- Id: 101118
|
|
AegisName: SS_Charm_Box
|
|
Name: SS Charm Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000565,500;
|
|
- Id: 101119
|
|
AegisName: SS_Charm_F_Box
|
|
Name: SS Charm F Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000566,500;
|
|
- Id: 101120
|
|
AegisName: SS_Charm_W_Box
|
|
Name: SS Charm W Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000567,500;
|
|
- Id: 101121
|
|
AegisName: SS_Charm_G_Box
|
|
Name: SS Charm G Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000568,500;
|
|
- Id: 101122
|
|
AegisName: SS_Charm_L_Box
|
|
Name: SS Charm L Box
|
|
Type: Usable
|
|
Weight: 250
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getitem 1000569,500;
|
|
- Id: 101126
|
|
AegisName: aegis_101126
|
|
Name: "[Scroll] Halloween Candy"
|
|
Type: Healing
|
|
Weight: 10
|
|
Script: |
|
|
percentheal 30,30;
|
|
- Id: 101162
|
|
AegisName: Ep19_Rgan_Scroll
|
|
Name: Transformation Scroll (Rgan)
|
|
Type: Usable
|
|
Buy: 20
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
transform 21530,1200000; /* Confirm time */
|
|
bonus_script " bonus2 bAddItemHealRate,1100006,100; ",120,1,1;
|
|
- Id: 101177
|
|
AegisName: FullPenest_Shadow_Up
|
|
Name: Full Tempenite Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101178
|
|
AegisName: Reload_Shadow_Up
|
|
Name: Reload Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101179
|
|
AegisName: SpellCaster_Shadow_Up
|
|
Name: Spellcaster Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101180
|
|
AegisName: Ex_Status_Shadow_Up
|
|
Name: Trait Status Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101181
|
|
AegisName: ReloadShadow_Mix
|
|
Name: Reload Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101182
|
|
AegisName: SpellCasterShadow_Mix
|
|
Name: Spell Caster Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101183
|
|
AegisName: Ice_F_Stone_Box
|
|
Name: Ice Magic Stone Box
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101184
|
|
AegisName: Ice_F_Stone_Box2
|
|
Name: Ice Magic Stone Box 2
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101185
|
|
AegisName: Snow_F_Enchant
|
|
Name: Snowflower Armor Enchant (Armor)
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101186
|
|
AegisName: Glacier_W_Enchant
|
|
Name: Glacier Weapon Enchantment
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101187
|
|
AegisName: Snow_F_Refine
|
|
Name: Snowflower Armor 9 Refine Cube # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101188
|
|
AegisName: Glacier_W_Refine
|
|
Name: Glacier Weapon 9 Refine Cube # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101189
|
|
AegisName: Hero_Weapon_Hammer_6
|
|
Name: Modified Hero's Weapon Refinement Hammer VI
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101190
|
|
AegisName: Hero_Weapon_Up_Box_6
|
|
Name: Hero's Weapon Modification Box VI
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101217
|
|
AegisName: Snow_F_Enchant2
|
|
Name: Snowflower Armor Enchant (Garment)
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101218
|
|
AegisName: Snow_F_Enchant3
|
|
Name: Snowflower Armor Enchant (Shoes)
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101219
|
|
AegisName: Snow_F_Enchant4
|
|
Name: Snowflower Armor Enchant (Accessory A)
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101220
|
|
AegisName: Snow_F_Enchant5
|
|
Name: Snowflower Armor Enchant (Accessory B)
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
/* Missing description */
|
|
- Id: 101243
|
|
AegisName: Shadow_Changer_NPC
|
|
Name: Shadow Changer
|
|
Type: DelayConsume
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101257
|
|
AegisName: R_BearersShadow_Mix
|
|
Name: Road Bearers Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101258
|
|
AegisName: M_BlitzShadow_Mix
|
|
Name: Mega Blitz Shadow Pick-Up Box # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101259
|
|
AegisName: Special_Hat_Hammer
|
|
Name: Refinement Hammer for Special Hats
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101260
|
|
AegisName: R_Bearers_Shadow_Up
|
|
Name: Road Bearers Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101261
|
|
AegisName: M_Blitz_Shadow_Up
|
|
Name: Mega Blitz Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101262
|
|
AegisName: Absorb_Shadow_Up
|
|
Name: Absorb Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101264
|
|
AegisName: Mammoth_Shadow_Up
|
|
Name: Max Mammoth Shadow Grimoire # !todo check english name
|
|
Type: Delayconsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101271
|
|
AegisName: Enchant_Stone_Box26
|
|
Name: Costume Enchant Stone Box 26
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box26);
|
|
- Id: 101276
|
|
AegisName: New_Year_Rice_Soup
|
|
Name: New Year Rice Soup
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
percentheal 30,30;
|
|
- Id: 101279
|
|
AegisName: 2022_LunarNewYears_box
|
|
Name: New Year Gift Box
|
|
Type: Usable
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_2022_LUNARNEWYEARS_BOX);
|
|
- Id: 101306
|
|
AegisName: Poenitentia_Hammer
|
|
Name: Poenitentia Refining Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101307
|
|
AegisName: Barmund_Hammer
|
|
Name: Barmund Refining Hammer
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
/* reform(); */
|
|
- Id: 101308
|
|
AegisName: True_GemShadow_Up
|
|
Name: True Gemstone Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101309
|
|
AegisName: EXPShadow_Up
|
|
Name: Experience Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101310
|
|
AegisName: MagicalShadow_Up
|
|
Name: Clever Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101311
|
|
AegisName: InfinityShadow_Up
|
|
Name: Infinity Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101314
|
|
AegisName: aegis_101314
|
|
Name: Helm of Faith Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_HELM_OF_FAITH_BOX);
|
|
- Id: 101321
|
|
AegisName: 2022Reward_Box
|
|
Name: Event Error Compensation Box
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_2020_REWARD_BOX);
|
|
- Id: 101322
|
|
AegisName: aegis_101322
|
|
Name: Love Confession Chocolate
|
|
Type: Healing
|
|
Script: |
|
|
percentheal 30,30;
|
|
- Id: 101336
|
|
AegisName: aegis_101336
|
|
Name: "[Scroll] DEX Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_DEX_CASH,1800000,15;
|
|
sc_start SC_HITFOOD,600000,rand(11,33);
|
|
- Id: 101337
|
|
AegisName: aegis_101337
|
|
Name: "[Scroll] VIT Biscuit Stick"
|
|
Type: Usable
|
|
Weight: 10
|
|
Trade:
|
|
Script: |
|
|
sc_start SC_FOOD_VIT_CASH,1800000,15;
|
|
bonus_script "{ bonus bHPRecovRate,rand(11,33); }",1800,1;
|
|
- Id: 101340
|
|
AegisName: Bs_Item_M_S_52
|
|
Name: Blacksmith's Blessing Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101341
|
|
AegisName: Bs_Item_M_S_53
|
|
# Name: Hollgrehenn's Shadow Refine Hammer Combination Scroll
|
|
Name: Hollgrehenn Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101342
|
|
AegisName: Bs_Item_M_S_54
|
|
Name: Powerful Soul Essence Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101343
|
|
AegisName: Bs_Item_M_S_55
|
|
Name: Powerful Dimension Essence Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101344
|
|
AegisName: Bs_Item_M_S_56
|
|
Name: Enchantment Ticket Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101345
|
|
AegisName: Bs_Item_M_S_57
|
|
Name: Beast's Leather Shoes Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101346
|
|
AegisName: Bs_Item_M_S_58
|
|
Name: Pirate Captain's Coat Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101347
|
|
AegisName: Bs_Item_M_S_59
|
|
Name: Phreeoni Wing Suit Combination Scroll
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
EquipLevelMin: 200
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101359
|
|
AegisName: MajorAutoSpell_Up
|
|
Name: Major Auto Spell Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101360
|
|
AegisName: Hasty_Up
|
|
Name: Hasty Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101361
|
|
AegisName: PhysicalShadow_Up
|
|
Name: Durable Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101362
|
|
AegisName: PerfectSize_Up
|
|
Name: Perfect Size Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101416
|
|
AegisName: aegis_101416
|
|
Name: Costume Enchant Stone Box 27
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Enchant_Stone_Box27);
|
|
- Id: 101455
|
|
AegisName: E_Auto_Up
|
|
Name: Automatic (bound) upgrade package # !todo check english name
|
|
Type: DelayConsume
|
|
EquipLevelMin: 160
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101463
|
|
AegisName: HD_Elunium_10Box_MSP
|
|
Name: (Limited) HD Elunium 10 Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6241,10;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 101465
|
|
AegisName: HD_Oridecon_10Box_MSP
|
|
Name: (Limited) HD Oridecon 10 Box
|
|
Type: Usable
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitem 6240,10;
|
|
getitembound 23919,11,Bound_Account;
|
|
- Id: 101482
|
|
AegisName: Freedom_Stick_Cube
|
|
Name: Freedom Stick Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101483
|
|
AegisName: Blessed_Knife_Cube
|
|
Name: Blessed Knife Remodeling Cube
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101512
|
|
AegisName: aegis_101512
|
|
Name: Ancient Hero Box 1 # !todo check english name
|
|
Type: Usable
|
|
Weight: 200
|
|
Flags:
|
|
Container: true
|
|
Script: |
|
|
getgroupitem(IG_Ancient_Hero_Box_1);
|
|
- Id: 101513
|
|
AegisName: aegis_101513
|
|
Name: "[Scroll] STR Biscuit Stick" # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_FOOD_STR_CASH,1800000,15;
|
|
sc_start SC_ATKPOTION,600000,rand(11,111);
|
|
- Id: 101514
|
|
AegisName: aegis_101514
|
|
Name: "[Scroll] INT Biscuit Stick" # !todo check english name
|
|
Type: Usable
|
|
Weight: 10
|
|
Script: |
|
|
sc_start SC_FOOD_INT_CASH,1800000,15;
|
|
sc_start SC_MATKPOTION,600000,rand(11,111);
|
|
- Id: 101564
|
|
AegisName: AllMighty_Up
|
|
Name: Almighty Shadow Spellbook
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_upgrade();
|
|
- Id: 101639
|
|
AegisName: D_Gw_Extractor
|
|
Name: Dim Glacier Extractor # !todo check english name
|
|
Type: DelayConsume
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 101665
|
|
AegisName: EXPShadow_Mix2
|
|
Name: Experience Shadow Pickbox (Weapon) # !todo check english name
|
|
Type: DelayConsume
|
|
Weight: 10
|
|
Flags:
|
|
BuyingStore: true
|
|
Script: |
|
|
laphine_synthesis();
|
|
- Id: 200055
|
|
AegisName: C_Acid_B_50Box
|
|
Name: Acid Bomb 50 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 7136,50,Bound_Account;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 200056
|
|
AegisName: C_Acid_B_500_Box
|
|
Name: Acid Bomb 500 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 7136,500,Bound_Account;
|
|
getitembound 23919,1,Bound_Account;
|
|
- Id: 200064
|
|
AegisName: Giant_Fly_Wing_2500
|
|
Name: Giant Flywing 2500 Box
|
|
Type: Cash
|
|
Weight: 10
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getitembound 12212,2500,Bound_Account;
|
|
getitembound 23919,12,Bound_Account;
|
|
- Id: 200185
|
|
AegisName: LI_Nyangvine_Box1_26
|
|
# Name: (Limited) Actinidia Cat Fruit Box I (Stone Box 26)
|
|
Name: (Limited) Actinidia Cat Fruit Box I
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_LI_Nyangvine_Box1_26);
|
|
- Id: 200186
|
|
AegisName: LI_Nyangvine_Box2_26
|
|
# Name: (Limited) Actinidia Cat Fruit Box II (Stone Box 26)
|
|
Name: (Limited) Actinidia Cat Fruit Box II
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_LI_Nyangvine_Box2_26);
|
|
- Id: 200187
|
|
AegisName: LI_Nyangvine_Box3_26
|
|
# Name: (Limited) Actinidia Cat Fruit Box III (Stone Box 26)
|
|
Name: (Limited) Actinidia Cat Fruit Box III
|
|
Type: Usable
|
|
Weight: 10
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoStorage: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_LI_Nyangvine_Box3_26);
|
|
- Id: 200191
|
|
AegisName: CostumeMilePack_26_1
|
|
# Name: Actinidia Costume Mileage Package I (Stone Box 26)
|
|
Name: Actinidia Costume Mileage Package I
|
|
Type: Cash
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_COSTUME_MILE_PACK_26_1);
|
|
- Id: 200193
|
|
AegisName: CostumeMilePack_26_2
|
|
# Name: Actinidia Costume Mileage Package II (Stone Box 26)
|
|
Name: Actinidia Costume Mileage Package II
|
|
Type: Cash
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_COSTUME_MILE_PACK_26_2);
|
|
- Id: 200194
|
|
AegisName: CostumeMilePack_26_3
|
|
# Name: Actinidia Costume Mileage Package III (Stone Box 26)
|
|
Name: Actinidia Costume Mileage Package III
|
|
Type: Cash
|
|
Flags:
|
|
Container: true
|
|
Trade:
|
|
NoDrop: true
|
|
NoTrade: true
|
|
NoSell: true
|
|
NoCart: true
|
|
NoGuildStorage: true
|
|
NoMail: true
|
|
NoAuction: true
|
|
Script: |
|
|
getgroupitem(IG_COSTUME_MILE_PACK_26_3);
|
|
- Id: 1100003
|
|
AegisName: Concentrated_R_P
|
|
Name: Concentrated Red Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 2
|
|
EquipLevelMin: 120
|
|
Script: |
|
|
itemheal rand(655,675),0;
|
|
- Id: 1100004
|
|
AegisName: Concentrated_B_P
|
|
Name: Concentrated Blue Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 2
|
|
EquipLevelMin: 120
|
|
Script: |
|
|
itemheal 0,rand(340,360);
|
|
- Id: 1100005
|
|
AegisName: Concentrated_G_P
|
|
Name: Concentrated Gold Potion
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 2
|
|
EquipLevelMin: 180
|
|
Script: |
|
|
itemheal rand(2730,2750),0;
|
|
- Id: 1100006
|
|
AegisName: aegis_1100006
|
|
Name: Dried Ice Gangu
|
|
Type: Healing
|
|
Buy: 10
|
|
Weight: 5
|
|
EquipLevelMin: 200
|
|
Script: |
|
|
itemheal 1925,0;
|