
* Only transfers the most recent rune buff to the party. * The source loses the rune buff that is passed to the party. * There is a stack limit of 20 Lux Anima Runestones. -- Stack only applies to renewal as the item isn't implemented in pre-renewal.
34 lines
873 B
Plaintext
34 lines
873 B
Plaintext
// Item Stacking Restriction File
|
|
// Prevents an item to be stacked more than x times in given
|
|
// inventory types. Generally used by 3rd class related skill items.
|
|
//
|
|
// Structure of Database:
|
|
// ItemID,MaxStackAmount,Type
|
|
//
|
|
// MaxStackAmount:
|
|
// Stack limit for the item. Use 0 to disable a restriction.
|
|
//
|
|
// Type mask values:
|
|
// &1: Character inventory restriction
|
|
// &2: Character cart restriction
|
|
// &4: Account storage restriction
|
|
// &8: Guild storage restriction
|
|
//
|
|
// Example:
|
|
// 512,4,12 // Will not allow more than 4 Apples in storages.
|
|
|
|
// Rune Knight
|
|
12725,20,1 // Nauthiz Rune
|
|
12726,20,1 // Raido Rune
|
|
12727,20,1 // Berkana Rune
|
|
12728,20,1 // Isa Rune
|
|
12729,20,1 // Othila Rune
|
|
12730,20,1 // Uruz Rune
|
|
12731,20,1 // Thurisaz Rune
|
|
12732,20,1 // Wyrd Rune
|
|
12733,20,1 // Hagalaz Rune
|
|
22540,20,1 // Lux Anima Rune
|
|
|
|
// Arch Bishop
|
|
12333,3,1 // Ancilla
|