pinky.lua 210 B

1234567891011
  1. pinky = {
  2. t = 0,
  3. init = function(self)
  4. end,
  5. update = function(self)
  6. self.t = self.t + 1
  7. if self.t %60 == 0 then
  8. self.intent = math.random(0, 4)
  9. end
  10. end
  11. }