vision/ship/decorator.lua

11 lines
210 B
Lua
Raw Normal View History

2022-10-13 18:18:27 +02:00
Decorator = Object.extend(Ship)
function Decorator:new()
Decorator.super.new(self)
self.name = "The Decorator";
self.image = nil
2022-10-15 17:39:32 +02:00
self.speed = 6
self.accIncr = 0.2
2022-10-15 23:10:57 +02:00
self.cooldownPeriod = 0.3
2022-10-13 18:18:27 +02:00
end