Advertisement
ecco7777

bee analyser

Apr 1st, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. term.clear()
  2. term.setCursorPos(1,1)
  3. b = peripheral.wrap("bottom")
  4. x = b.analyze()
  5. sleep(0.2)
  6. print("Typ:                        ",x["type"])
  7. print("Species:                    ",x["speciesPrimary"])
  8. print("Species Inaktiv:            ",x["speciesSecondary"])
  9. print("Lebenslänge:                ",x["lifespan"])
  10. print("Temperatur:                 ",x["temperature"])
  11. print("Temperatur Toleranz:        ",x["toleranceTemperature"])
  12. print("Feuchtigkeit:               ",x["humidity"])
  13. print("Feuchtigkeit Toleranz:      ",x["toleranceHumidity"])
  14. print("Blume:                      ",x["flower"])
  15. print("Effekt:                     ",x["effect"])
  16. print("Umfeld:                     ",x["territory"][1],",",x["territory"][2],",",x["territory"][3])
  17. print("Fruchtbarkeit:              ",x["fertility"])
  18. print("Nachtaktiv:                 ",x["nocturnal"])
  19. print("Flieger:                    ",x["tolerantFlyer"])
  20. print("Höhle:                      ",x["caveDwelling"])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement