9 lines
187 B
Lua
9 lines
187 B
Lua
ExcaliburIV = Object.extend(Ship)
|
|
|
|
function ExcaliburIV:new()
|
|
ExcaliburIV.super.new(self)
|
|
self.name = "Excalibur IV";
|
|
self.image = nil
|
|
self.speed = 4
|
|
self.accIncr = 0.3
|
|
end
|