vision/ship/excaliburiv.lua

11 lines
215 B
Lua
Raw Normal View History

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