Advertisement
ReshiStar

Untitled

Dec 18th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Breaker:
  2. type: world
  3. debug: false
  4. events:
  5.  
  6. on player steps on green_wool in:dungeon:
  7. - narrate "Stepped on green, turning yellow"
  8. - modifyblock <context.location> yellow_wool
  9. - wait 2
  10. - narrate "2 seconds of inactivity, regenerating block"
  11. - modifyblock <context.location> green_wool
  12. on player steps on yellow_wool in:dungeon:
  13. - narrate "Stepped on yellow, turning red"
  14. - modifyblock <context.location> red_wool
  15. - wait 2
  16. - narrate "2 seconds of inactivity, regenerating block"
  17. - modifyblock <context.location> yellow_wool
  18. - wait 2
  19. - narrate "2 seconds of inactivity, regenerating block"
  20. - modifyblock <context.location> green_wool
  21. on player steps on red_wool in:dungeon:
  22. - narrate "Stepped on red, removing block"
  23. - modifyblock <context.location> air
  24. - wait 3
  25. - narrate "3 seconds of inactivity, regenerating block"
  26. - modifyblock <context.location> red_wool
  27. - wait 3
  28. - narrate "3 seconds of inactivity, regenerating block"
  29. - modifyblock <context.location> yellow_wool
  30. - wait 3
  31. - narrate "3 seconds of inactivity, regenerating block"
  32. - modifyblock <context.location> green_wool
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement