item_db.yml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. # This file is a part of rAthena.
  2. # Copyright(C) 2021 rAthena Development Team
  3. # https://rathena.org - https://github.com/rathena
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. ###########################################################################
  19. # Item Database
  20. ###########################################################################
  21. #
  22. # Item Settings
  23. #
  24. ###########################################################################
  25. # - Id Item ID.
  26. # AegisName Server name to reference the item in scripts and lookups, should use no spaces.
  27. # Name Name in English for displaying as output.
  28. # Type Item type. (Default: Etc)
  29. # SubType Weapon or Ammo type. (Default: 0)
  30. # Buy Buying price. When not specified, becomes double the sell price. (Default: 0)
  31. # Sell Selling price. When not specified, becomes half the buy price. (Default: 0)
  32. # Weight Item weight. Each 10 is 1 weight. (Default: 0)
  33. # Attack Weapon's attack. (Default: 0)
  34. # MagicAttack Weapon's magic attack. (Default: 0)
  35. # Defense Armor's defense. (Default: 0)
  36. # Range Weapon's attack range. (Default: 0)
  37. # Slots Available slots in item. (Default: 0)
  38. # Jobs Jobs that can equip the item. (Map default is 'All: true')
  39. # Classes Upper class types that can equip the item. (Map default is 'All: true')
  40. # Gender Gender that can equip the item. (Default: Both)
  41. # Locations Equipment's placement. (Default: None)
  42. # WeaponLevel Weapon level. (Default: 1 for Weapons)
  43. # ArmorLevel Armor level. (Default: 1 for Armors)
  44. # EquipLevelMin Minimum required level to equip. (Default: 0)
  45. # EquipLevelMax Maximum level that can equip. (Default: 0)
  46. # Refineable If the item can be refined. (Default: false)
  47. # View View sprite of an item. (Default: 0)
  48. # AliasName Another item's AegisName that will be sent to the client instead of this item's AegisName. (Default: null)
  49. # Flags: Item flags. (Default: null)
  50. # BuyingStore If the item is available for Buyingstores. (Default: false)
  51. # DeadBranch If the item is a Dead Branch. (Default: false)
  52. # Container If the item is part of a container. (Default: false)
  53. # UniqueId If the item is a unique stack. (Default: false)
  54. # BindOnEquip If the item is bound to the character upon equipping. (Default: false)
  55. # DropAnnounce If the item has a special announcement to self on drop. (Default: false)
  56. # NoConsume If the item is consumed on use. (Default: false)
  57. # DropEffect If the item has a special effect on the ground when dropped by a monster. (Default: None)
  58. # Delay: Item use delay. (Default: null)
  59. # Duration Duration of delay in seconds.
  60. # Status Status Change used to track delay. (Default: None)
  61. # Stack: Item stack amount. (Default: null)
  62. # Amount Maximum amount that can be stacked.
  63. # Inventory If the stack is applied to player's inventory. (Default: true)
  64. # Cart If the stack is applied to the player's cart. (Default: false)
  65. # Storage If the stack is applied to the player's storage. (Default: false)
  66. # GuildStorage If the stack is applied to the player's guild storage. (Default: false)
  67. # NoUse: Conditions when the item is unusable. (Default: null)
  68. # Override Group level to override these conditions.
  69. # Sitting If the item can not be used while sitting. (Default: false)
  70. # Trade: Trade restrictions. (Default: null)
  71. # Override Group level to override these conditions.
  72. # NoDrop If the item can not be dropped. (Default: false)
  73. # NoTrade If the item can not be traded. (Default: false)
  74. # TradePartner If the item can not be traded to the player's partner. (Default: false)
  75. # NoSell If the item can not be sold. (Default: false)
  76. # NoCart If the item can not be put in a cart. (Default: false)
  77. # NoStorage If the item can not be put in a storage. (Default: false)
  78. # NoGuildStorage If the item can not be put in a guild storage. (Default: false)
  79. # NoMail If the item can not be put in a mail. (Default: false)
  80. # NoAuction If the item can not be put in an auction. (Default: false)
  81. # Script Script to execute when the item is used/equipped. (Default: null)
  82. # EquipScript Script to execute when the item is equipped. (Default: null)
  83. # UnEquipScript Script to execute when the item is unequipped or when a rental item expires. (Default: null)
  84. ###########################################################################
  85. Header:
  86. Type: ITEM_DB
  87. Version: 2
  88. #Body:
  89. # THQ Quest Items
  90. #=============================================================
  91. # - Id: 1998
  92. # AegisName: Jeramiah's_Jur
  93. # Name: Jeramiah's Jur
  94. # Type: Etc
  95. # Sell: 10
  96. # Weight: 10
  97. # AliasName: Jur
  98. # - Id: 1999
  99. # AegisName: Zed's_Staff
  100. # Name: Zed's Staff
  101. # Type: Etc
  102. # Sell: 10
  103. # Weight: 10
  104. # AliasName: Staff_Of_Soul
  105. # - Id: 7950
  106. # AegisName: THG_Membership
  107. # Name: THG Membership
  108. # Type: Etc
  109. # Sell: 10
  110. # Weight: 10
  111. # AliasName: Foolishness_Of_Blind
  112. # - Id: 7951
  113. # AegisName: Gold_Tulip
  114. # Name: Token Bag
  115. # Type: Etc
  116. # Sell: 10
  117. # Weight: 10
  118. # AliasName: Leather_Bag_Of_Infinity
  119. # Official Event Items that had their Effects removed after the event was completed
  120. #=============================================================
  121. # - Id: 585
  122. # AegisName: Wurst
  123. # Name: Brusti
  124. # Type: Delayconsume
  125. # Buy: 2
  126. # Weight: 40
  127. # Script: |
  128. # itemheal rand(15,20),0; itemskill "PR_MAGNIFICAT",3;
  129. # - Id: 679
  130. # AegisName: Gold_Pill
  131. # Name: Pilule
  132. # Type: Healing
  133. # Buy: 5000
  134. # Weight: 300
  135. # Script: |
  136. # percentheal 50,50;
  137. # - Id: 2681
  138. # AegisName: Republic_Ring
  139. # Name: Republic Anniversary Ring
  140. # Type: Armor
  141. # Buy: 20
  142. # Weight: 100
  143. # Locations:
  144. # Right_Accessory: true
  145. # Left_Accessory: true
  146. # Script: |
  147. # bonus bAllStats,3;
  148. # - Id: 5134
  149. # AegisName: Pumpkin_Hat
  150. # Name: Pumpkin-Head
  151. # Type: Armor
  152. # Buy: 20
  153. # Weight: 200
  154. # Defense: 2
  155. # Locations:
  156. # Head_Top: true
  157. # Refineable: true
  158. # View: 206
  159. # Script: |
  160. # bonus2 bSubRace,RC_Demon,5;
  161. # - Id: 5136
  162. # AegisName: Santa's_Hat_
  163. # Name: Louise's Santa Hat
  164. # Type: Armor
  165. # Buy: 20
  166. # Weight: 100
  167. # Defense: 3
  168. # Locations:
  169. # Head_Top: true
  170. # Refineable: true
  171. # View: 20
  172. # Script: |
  173. # bonus bMdef,1; bonus bLuk,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50;
  174. # - Id: 5145
  175. # AegisName: Carnival_Joker_Jester
  176. # Name: Carnival Jester
  177. # Type: Armor
  178. # Buy: 10
  179. # Weight: 100
  180. # Locations:
  181. # Head_Top: true
  182. # Refineable: true
  183. # View: 89
  184. # Script: |
  185. # bonus bAllStats,3;
  186. # - Id: 5147
  187. # AegisName: Baseball_Cap
  188. # Name: Baseball Cap
  189. # Type: Armor
  190. # Weight: 200
  191. # Defense: 3
  192. # Locations:
  193. # Head_Top: true
  194. # Refineable: true
  195. # View: 216
  196. # Script: |
  197. # bonus2 bExpAddRace,RC_Boss,50; bonus2 bExpAddRace,RC_NonBoss,50;
  198. # - Id: 5201
  199. # AegisName: Party_Hat_B
  200. # Name: 2nd Anniversary Party Hat
  201. # Type: Armor
  202. # Buy: 20
  203. # Weight: 300
  204. # Defense: 3
  205. # Locations:
  206. # Head_Top: true
  207. # Refineable: true
  208. # View: 144
  209. # Script: |
  210. # bonus bAllStats,3;
  211. # - Id: 5202
  212. # AegisName: Pumpkin_Hat_
  213. # Name: Pumpkin Hat
  214. # Type: Armor
  215. # Buy: 20
  216. # Weight: 200
  217. # Defense: 2
  218. # Locations:
  219. # Head_Top: true
  220. # Refineable: true
  221. # View: 206
  222. # Script: |
  223. # bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500;
  224. # - Id: 5204
  225. # AegisName: Event_Pierrot_Nose
  226. # Name: Rudolf's Red Nose
  227. # Type: Armor
  228. # Buy: 20
  229. # Weight: 100
  230. # Locations:
  231. # Head_Low: true
  232. # View: 49
  233. # Script: |
  234. # bonus2 bResEff,Eff_Blind,3000; bonus2 bAddMonsterDropItem,12130,30;
  235. # - Id: 5264
  236. # AegisName: Aussie_Flag_Hat
  237. # Name: Australian Flag Hat
  238. # Type: Armor
  239. # Buy: 20
  240. # Weight: 500
  241. # Defense: 4
  242. # Locations:
  243. # Head_Top: true
  244. # Refineable: true
  245. # View: 304
  246. # Script: |
  247. # bonus bAllStats,2;
  248. # - Id: 5356
  249. # AegisName: Pumpkin_Hat_H
  250. # Name: Pumpkin Hat
  251. # Type: Armor
  252. # Buy: 20
  253. # Weight: 200
  254. # Defense: 2
  255. # Locations:
  256. # Head_Top: true
  257. # Refineable: true
  258. # View: 206
  259. # Script: |
  260. # bonus bAllStats,2; bonus2 bSubRace,RC_Demon,5; bonus2 bMagicAddRace,RC_Demon,5;
  261. # - Id: 5384
  262. # AegisName: Santa_Hat_1
  263. # Name: Twin Pompom By JB
  264. # Type: Armor
  265. # Buy: 20
  266. # Weight: 200
  267. # Defense: 2
  268. # Slots: 1
  269. # Locations:
  270. # Head_Top: true
  271. # EquipLevelMin: 20
  272. # Refineable: true
  273. # View: 390
  274. # Script: |
  275. # bonus bLuk,3; bonus2 bResEff,Eff_Curse,2000; bonus bVariableCastrate,-2; bonus bAspdRate,4; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; autobonus "{ bonus bCritical,10; }",10,5000;
  276. # - Id: 5811
  277. # AegisName: Santa_Beard
  278. # Name: Santa Beard
  279. # Type: Armor
  280. # Buy: 20
  281. # Weight: 100
  282. # Defense: 5
  283. # Locations:
  284. # Head_Low: true
  285. # View: 25
  286. # Script: |
  287. # bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5;
  288. # - Id: 11702
  289. # AegisName: Moon_Cookie
  290. # Name: Moon Cookie
  291. # Type: Delayconsume
  292. # Weight: 10
  293. # Script: |
  294. # sc_end SC_POISON; sc_end SC_SILENCE; sc_end SC_BLIND; sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_HALLUCINATION; itemskill "AL_BLESSING",7;
  295. # - Id: 12131
  296. # AegisName: Lucky_Potion
  297. # Name: Lucky Potion
  298. # Type: Healing
  299. # Buy: 2
  300. # Weight: 100
  301. # Script: |
  302. # sc_start SC_LUKFOOD,180000,15;
  303. # - Id: 12143
  304. # AegisName: Red_Can
  305. # Name: Red Can
  306. # Type: Usable
  307. # Buy: 50000
  308. # Weight: 300
  309. # Script: |
  310. # percentheal 25,25;
  311. # Event effect: Summon monster? Probably Rice_Cake. x_x
  312. #=============================================================
  313. # - Id: 12199
  314. # AegisName: Rice_Scroll
  315. # Name: Rice Scroll
  316. # Type: Usable
  317. # - Id: 12200
  318. # AegisName: Event_Cake
  319. # Name: Event Cake
  320. # Type: Usable
  321. # Buy: 20
  322. # Weight: 50
  323. # Script: |
  324. # itemskill "PR_MAGNIFICAT",3;
  325. # - Id: 12238
  326. # AegisName: New_Year_Rice_Cake_1
  327. # Name: New Year Rice Cake
  328. # Type: Healing
  329. # Buy: 20
  330. # Weight: 100
  331. # Script: |
  332. # percentheal 20,15; sc_start SC_STRFOOD,1200000,3; sc_start SC_INTFOOD,1200000,3; sc_start SC_LUKFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;
  333. # - Id: 12239
  334. # AegisName: New_Year_Rice_Cake_2
  335. # Name: New Year Rice Cake
  336. # Type: Healing
  337. # Buy: 20
  338. # Weight: 100
  339. # Script: |
  340. # percentheal 20,15; sc_start SC_DEXFOOD,1200000,3; sc_start SC_AGIFOOD,1200000,3; sc_start SC_VITFOOD,1200000,3; sc_start SC_SPEEDUP1,5000,0;
  341. # iRO St. Patrick's Day Event 2008
  342. #=============================================================
  343. # - Id: 7915
  344. # AegisName: Copper_Coin_
  345. # Name: Bronze Coin
  346. # Type: Etc
  347. # Weight: 10
  348. # AliasName: Copper_Coin
  349. # - Id: 7916
  350. # AegisName: Silver_Coin_
  351. # Name: Silver Coin
  352. # Type: Etc
  353. # Weight: 10
  354. # AliasName: Silver_Coin
  355. # - Id: 12715
  356. # AegisName: Black_Treasure_Box
  357. # Name: Black Treasure Chest
  358. # Type: Usable
  359. # Weight: 200
  360. # AliasName: Treasure_Box_
  361. # Script: |
  362. # callfunc "F_08stpattyseventbox";
  363. # iRO Valentine's Day Event 2009
  364. #=============================================================
  365. # - Id: 5817
  366. # AegisName: Valentine_Pledge
  367. # Name: Valentine's Emblem
  368. # Type: Armor
  369. # Buy: 10
  370. # Defense: 3
  371. # Locations:
  372. # Right_Accessory: true
  373. # Left_Accessory: true
  374. # Script: |
  375. # bonus bAtkRate,3; bonus bMatkRate,3; bonus bAllStats,2; bonus bFlee,10; bonus bAspd,1; bonus bMdef,3; bonus2 bSkillAtk,"AL_HEAL",10; bonus2 bSkillHeal,"AL_HEAL",10; bonus2 bSkillHeal,"AM_POTIONPITCHER",10; bonus2 bAddItemGroupHealRate,IG_Potion,10;
  376. # - Id: 7946
  377. # AegisName: Gold_Ring_Of_Valentine
  378. # Name: Gold Ring Of Valentine
  379. # Type: Etc
  380. # Buy: 10
  381. # - Id: 7947
  382. # AegisName: Silver_Ring_Of_Valentine
  383. # Name: Silver Ring Of Valentine
  384. # Type: Etc
  385. # Buy: 10
  386. # - Id: 7948
  387. # AegisName: Box
  388. # Name: Box
  389. # Type: Etc
  390. # Buy: 10
  391. # Weight: 10
  392. # - Id: 12742
  393. # AegisName: Valentine_Gift_Box_M
  394. # Name: Valentine Gift Box
  395. # Type: Usable
  396. # Buy: 10
  397. # Script: |
  398. # getitem 7946,1;
  399. # - Id: 12743
  400. # AegisName: Valentine_Gift_Box_F
  401. # Name: Valentine Gift Box
  402. # Type: Usable
  403. # Buy: 10
  404. # Script: |
  405. # getitem 7947,1;
  406. # - Id: 12744
  407. # AegisName: Chocolate_Box
  408. # Name: Chocolate Box
  409. # Type: Usable
  410. # Buy: 10
  411. # Script: |
  412. # getitem 558,1;
  413. # - Id: 14466
  414. # AegisName: Valentine's_Emblem_Box
  415. # Name: Valentine's Emblem Box
  416. # Type: Usable
  417. # Buy: 10
  418. # Script: |
  419. # getitem 5817,1;
  420. # iRO Halloween Event 2009
  421. #=============================================================
  422. # - Id: 5668
  423. # AegisName: Weird_Pumpkin_Hat
  424. # Name: Weird Pumpkin Hat
  425. # Type: Armor
  426. # Buy: 20
  427. # Defense: 5
  428. # Locations:
  429. # Head_Top: true
  430. # Refineable: true
  431. # View: 206
  432. # Script: |
  433. # bonus bMdef,5; bonus2 bAddMonsterDropItem,12192,2500;
  434. # - Id: 6298
  435. # AegisName: Pumpkin_Head_Crushed
  436. # Name: Crushed Pumpkin
  437. # Type: Etc
  438. # - Id: 6299
  439. # AegisName: Worn_Cloth_Piece
  440. # Name: Worn Fabric
  441. # Type: Etc
  442. # Old Tuxedo and Wedding Dress, will display the outfit when worn.
  443. #==================================================================
  444. # - Id: 2338
  445. # AegisName: Wedding_Dress
  446. # Name: Wedding Dress
  447. # Type: Armor
  448. # Buy: 43000
  449. # Weight: 500
  450. # Jobs:
  451. # All: true
  452. # Novice: false
  453. # Gender: Female
  454. # Locations:
  455. # Armor: true
  456. # Refineable: true
  457. # EquipScript: |
  458. # sc_start SC_WEDDING,INFINITE_TICK,0;
  459. # UnEquipScript: |
  460. # sc_end SC_WEDDING;
  461. # - Id: 7170
  462. # AegisName: Tuxedo
  463. # Name: Tuxedo
  464. # Type: Armor
  465. # Buy: 43000
  466. # Weight: 10
  467. # Jobs:
  468. # All: true
  469. # Novice: false
  470. # Gender: Male
  471. # Locations:
  472. # Armor: true
  473. # Refineable: true
  474. # EquipScript: |
  475. # sc_start SC_WEDDING,INFINITE_TICK,0;
  476. # UnEquipScript: |
  477. # sc_end SC_WEDDING;
  478. # Non-kRO Eden Group Mark effect
  479. #=============================================================
  480. # - Id: 22508
  481. # AegisName: Para_Team_Mark_
  482. # Name: Eden Group Mark
  483. # Type: Delayconsume
  484. # Script: |
  485. # unitskilluseid getcharid(3),"AL_TELEPORT",3;
  486. # Gender restrictions that were removed on official servers
  487. #=============================================================
  488. # - Id: 2206
  489. # Gender: Female
  490. # - Id: 2208
  491. # Gender: Female
  492. # - Id: 2209
  493. # Gender: Female
  494. # - Id: 2234
  495. # Gender: Female
  496. # - Id: 2235
  497. # Gender: Male
  498. # - Id: 2407
  499. # Gender: Female
  500. # - Id: 2415
  501. # Gender: Female
  502. # - Id: 2494
  503. # Gender: Female
  504. # - Id: 5143
  505. # Gender: Male
  506. # - Id: 5164
  507. # Gender: Female
  508. # - Id: 5165
  509. # Gender: Male
  510. # - Id: 5191
  511. # Gender: Female
  512. # - Id: 5192
  513. # Gender: Female
  514. # - Id: 5193
  515. # Gender: Female
  516. # - Id: 5194
  517. # Gender: Female
  518. # - Id: 5195
  519. # Gender: Female
  520. # - Id: 5196
  521. # Gender: Female
  522. # - Id: 5197
  523. # Gender: Female
  524. # - Id: 5221
  525. # Gender: Female
  526. # - Id: 5354
  527. # Gender: Male
  528. # - Id: 5355
  529. # Gender: Female
  530. # - Id: 5400
  531. # Gender: Female
  532. # - Id: 5681
  533. # Gender: Female
  534. # - Id: 5735
  535. # Gender: Female