Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. var newItemLock = true;
  2.  
  3. var newItem1 = newItem;
  4.  
  5. newItem = function(item1) {
  6.  
  7. for (var j in item1) {
  8.  
  9. if (item1[j].loc == 'l' && newItemLock) {
  10.  
  11. item1[j].name = 'Pierścień rybiego oka';
  12.  
  13. item1[j].icon = '/pie/drown_ring03.gif';
  14.  
  15. item1[j].cl = '12';
  16.  
  17. item1[j].pr = '54876';
  18.  
  19. item1[j].stat = 'binds;crit=4;da=90;energybon=15;evade=8;heal=143;hp=957;manabon=21;sa=70;legbon=curse,82;legendary;lvl=82;opis=Wpatrywanie się w ten pierścień powoduje dziwne, niekomfortowe uczucie. Podobno pozwala widzieć pod wodą jakby była krystalicznie czysta. Inni twierdzą, że wodnik może patrzeć oczami wszystkich ryb w swoim królestwie.';
  20.  
  21. newItemLock = false;
  22.  
  23. }
  24.  
  25. }
  26.  
  27. return newItem1(item1);
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement