Advertisement
Guest User

Untitled

a guest
May 28th, 2013
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Red chest mechanics.
  2.  
  3. - 5% teleport to the Devil room / Angel room
  4. - 7.25% it spawns a soul heart
  5. - 7.25% it spawns two soul hearts
  6. - 10% for a Guppy Item (see details below)
  7. - 10.88% it spawns 3 blue flies
  8. - 13.6% it spawns two super troll bombs
  9. - 14.51% it spawns two troll bombs
  10. - 14.51% it spawns two pills
  11. - 17% it spawns two spiders
  12.  
  13.  
  14. Details.
  15. === Will spawn a Guppy Item with a 10% chance. ===
  16. If Guppy's tail isn't unlocked, 25% chance it will be either the Dead Cat, Guppy's tail, Guppy's head or Guppy's paw.
  17. If Guppy's tail is unlocked, 20% chance it will be either the Dead Cat, Guppy's head or Guppy's paw and 40% chance it's Guppy's tail.
  18. Yeah, that's obviously a bug.
  19.  
  20. Source of the aformentioned bug, where f1 is the item:
  21. f1 = [81, 134, 133, 145]; // Guppy's tail is 134
  22. if (_root.SecretUnlocked[79]) {
  23. f1.push(134); // Pushing another Guppy's tail in the random pool.
  24. }
  25. f1 = f1[random(f1.length)];
  26.  
  27. === About the teleportation ===
  28. Oh you know the mechanics. 1/15 chance to go to the I AM ERROR room.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement