Guest User

Untitled

a guest
Apr 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. import SpiceRack, Knife, SaucePan, Stove, FoodProcessor, PorkChop, Onion, GreenPepper
  2.  
  3. Stove.heat(:HIGH)
  4. SaucePan.oil
  5. Knife.cube(PorkChop)!
  6. SaucePan.add(PorkChop)
  7. spice = SpiceRack.choose(:CAYENNE)
  8. 10.times {SaucePan.add(spice.dash)}
  9.  
  10. [Onion, GreenPepper].do { |x|
  11. FoodProcessor.process(x, :CHUNKY)
  12. SaucePan.add(x)
  13. }
  14.  
  15. SaucePan.toss
  16. SaucePan.wait(30000)
  17.  
  18. import Tomatoes(:CRUSHED)
  19.  
  20. SaucePan.add(Tomatoes)
  21. Stove.heat(:MEDIUM)
  22.  
  23. spice = SpiceRack.choose(:OREGANO)
  24. 5.times {SaucePan.add(spice.dash)}
  25.  
  26. SaucePan.cover
  27. SaucePan.wait(120000)
  28.  
  29. SaucePan.stir
  30. spice = SpiceRack.choose(:5SPICE)
  31. 5.times {SaucePan.add(spice.dash)}
  32. SaucePan.stir
  33. SaucePan.cover
  34.  
  35. SaucePan.wait(5000000ish)
  36.  
  37. import Bowl, Pasta
  38. Bowl.add(SaucePan.contents)
Add Comment
Please, Sign In to add comment