Files
rathena/npc/custom/eAAC_Scripts/DonationGirl/donate_item_db.sql
eaac 23599bc5a7 ~ eAAC Update:
* Added quest_warper.txt to eAAC_Scripts. [erKURITA]
* Deleted the sql and txt versions of the disguiser and added a merge of both. [erKURITA]
* Deleted clone_arena.txt. [erKURITA]
* Updated global_functionsKE.txt of Skotlex. [erKURITA]
* Added woe_time_explanation.txt to explain how to set WoE times. [erKURITA]

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6068 54d463be-8e91-2dee-dedb-b68131a5f0ec
2006-04-15 00:16:48 +00:00

14 lines
613 B
SQL

CREATE TABLE `donate_item_db` (
`id` smallint(5) unsigned NOT NULL default '0',
`name` varchar(30) NOT NULL default '',
`amount` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
-- // (ID,'Name',Amount);
REPLACE INTO `donate_item_db` VALUES (601,'Fly_Wing',165);
REPLACE INTO `donate_item_db` VALUES (602,'Butterfly_Wing',30);
REPLACE INTO `donate_item_db` VALUES (603,'Old_Blue_Box',1);
REPLACE INTO `donate_item_db` VALUES (604,'Dead_Branch',200);
REPLACE INTO `donate_item_db` VALUES (605,'Anodyne',5);
REPLACE INTO `donate_item_db` VALUES (606,'Aloevera',5);