Advertisement
Kylroi

Cata ore prospecting loot - 11/25

Nov 16th, 2013
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 2.57 KB | None | 0 0
  1. -- -----------------------------------
  2. -- -- prospecting loot for Cata ore --
  3. -- -----------------------------------
  4.  
  5. -- equal chancing the uncommon (green quality) gems - not sure if that's entirely correct, but >100% chance is a BAD setting
  6. DELETE FROM `prospecting_loot_template` WHERE `entry` IN (53038, 52185, 52183); -- remove current prospecting defines
  7. INSERT INTO `prospecting_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount`) VALUES
  8. -- Obsidium ore
  9.         (53038, 52177, 0, 1, 1, 1, 2), --  Carnelian
  10.         (53038, 52178, 0, 1, 1, 1, 2), --  Zephyrite
  11.         (53038, 52179, 0, 1, 1, 1, 2), --  Alicite
  12.         (53038, 52180, 0, 1, 1, 1, 2), --  Nightstone
  13.         (53038, 52181, 0, 1, 1, 1, 2), --  Hessonite
  14.         (53038, 52182, 0, 1, 1, 1, 2), --  Jasper
  15.         (53038, 52190, 1.3, 1, 0, 1, 1), -- Inferno Ruby
  16.         (53038, 52191, 1.2, 1, 0, 1, 1), -- Ocean Sapphire
  17.         (53038, 52192, 1.2, 1, 0, 1, 1), -- Dream Emerald
  18.         (53038, 52193, 1.2, 1, 0, 1, 1), -- Ember Topaz
  19.         (53038, 52194, 1.3, 1, 0, 1, 1), -- Demonseye
  20.         (53038, 52195, 1.2, 1, 0, 1, 1), -- Amberjewel
  21. -- Elementium ore
  22.         (52185, 52177, 0, 1, 1, 1, 2), -- Carnelian
  23.         (52185, 52178, 0, 1, 1, 1, 2), -- Zephyrite
  24.         (52185, 52179, 0, 1, 1, 1, 2), -- Alicite
  25.         (52185, 52180, 0, 1, 1, 1, 2), -- Nightstone
  26.         (52185, 52181, 0, 1, 1, 1, 2), -- Hessonite
  27.         (52185, 52182, 0, 1, 1, 1, 2), -- Jasper
  28.         (52185, 52190, 4.5, 1, 0, 1, 1), --  Inferno Ruby
  29.         (52185, 52191, 4.4, 1, 0, 1, 1), --  Ocean Sapphire
  30.         (52185, 52192, 4.6, 1, 0, 1, 1), --  Dream Emerald
  31.         (52185, 52193, 4.5, 1, 0, 1, 1), --  Ember Topaz
  32.         (52185, 52194, 4.5, 1, 0, 1, 1), --  Demonseye
  33.         (52185, 52195, 4.5, 1, 0, 1, 1), --  Amberjewel
  34. -- Pyrite ore
  35.         (52183, 52327, 100, 1, 2, 1, 3), -- Volatile Earth
  36.         (52183, 52177, 0, 1, 1, 1, 1), --  Carnelian
  37.         (52183, 52178, 0, 1, 1, 1, 1), --  Zephyrite
  38.         (52183, 52179, 0, 1, 1, 1, 1), --  Alicite
  39.         (52183, 52180, 0, 1, 1, 1, 1), --  Nightstone
  40.         (52183, 52181, 0, 1, 1, 1, 1), --  Hessonite
  41.         (52183, 52182, 0, 1, 1, 1, 1), --  Jasper
  42.         (52183, 52190, 6.9, 1, 0, 1, 2), --   Inferno Ruby
  43.         (52183, 52191, 6.4, 1, 0, 1, 2), --   Ocean Sapphire
  44.         (52183, 52192, 8.4, 1, 0, 1, 2), --   Dream Emerald
  45.         (52183, 52193, 7.7, 1, 0, 1, 2), --   Ember Topaz
  46.         (52183, 52194, 7.8, 1, 0, 1, 2), --   Demonseye
  47.         (52183, 52195, 7, 1, 0, 1, 2); --   Amberjewel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement