item_db.yml 16 KB

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