diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-27 11:30:37 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-27 11:30:37 +0000 |
commit | c82d8121d5c52e42242d9f3f8be36f0aed569701 (patch) | |
tree | 9e22f1dec5282717cf32fe6fe7e1697a2289d181 /db/item_stack.txt | |
parent | d10cf69aff5fdc4894535e62705de9f6bdfe2672 (diff) | |
download | hercules-c82d8121d5c52e42242d9f3f8be36f0aed569701.tar.gz hercules-c82d8121d5c52e42242d9f3f8be36f0aed569701.tar.bz2 hercules-c82d8121d5c52e42242d9f3f8be36f0aed569701.tar.xz hercules-c82d8121d5c52e42242d9f3f8be36f0aed569701.zip |
* Added item stacking limit database (item_stack.txt) required for runes and other 3rd class related skill items.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/renewal@14635 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'db/item_stack.txt')
-rw-r--r-- | db/item_stack.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/db/item_stack.txt b/db/item_stack.txt new file mode 100644 index 000000000..b2932b56b --- /dev/null +++ b/db/item_stack.txt @@ -0,0 +1,27 @@ +// 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. +// Format: <item id>,<stack limit amount>,<type> +// 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. +// Note: +// Stack limit of 0 will disable a restriction. + +// 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 + +// Arch Bishop +12333,3,1 // Ancilla |