forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UAL0103_Script.lua
26 lines (23 loc) · 903 Bytes
/
UAL0103_Script.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--****************************************************************************
--**
--** File : /cdimage/units/UAL0103/UAL0103_script.lua
--** Author(s): John Comes, David Tomandl, Jessica St. Croix
--**
--** Summary : Aeon Mobile Light Artillery Script
--**
--** Copyright © 2005 Gas Powered Games, Inc. All rights reserved.
--****************************************************************************
local AHoverLandUnit = import("/lua/aeonunits.lua").AHoverLandUnit
local AIFMortarWeapon = import("/lua/aeonweapons.lua").AIFMortarWeapon
---@class UAL0103 : AHoverLandUnit
UAL0103 = Class(AHoverLandUnit) {
Weapons = {
MainGun = Class(AIFMortarWeapon) {
FxMuzzleFlash = {
'/effects/emitters/aeon_mortar_flash_01_emit.bp',
'/effects/emitters/aeon_mortar_flash_02_emit.bp',
},
}
},
}
TypeClass = UAL0103