2017-05-01 19:55:14 +02:00
|
|
|
using Syroot.BinaryData;
|
2017-04-29 14:11:25 +02:00
|
|
|
|
|
|
|
namespace Syroot.Worms.Gen2.Armageddon.ProjectX
|
|
|
|
{
|
2017-05-01 19:55:14 +02:00
|
|
|
public class AirstrikeStyle : IStyle
|
2017-04-29 14:11:25 +02:00
|
|
|
{
|
|
|
|
// ---- PROPERTIES ---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
public int PlaneSprite;
|
|
|
|
|
|
|
|
public int BombsCount;
|
|
|
|
|
|
|
|
public int DropDistance;
|
|
|
|
|
|
|
|
public int HorizontalSpeed;
|
|
|
|
|
|
|
|
public int Sound;
|
|
|
|
|
2017-05-01 19:55:14 +02:00
|
|
|
public WeaponAirstrikeSubstyle AirstrikeSubstyle;
|
2017-04-29 14:11:25 +02:00
|
|
|
|
2017-05-01 19:55:14 +02:00
|
|
|
[BinaryMember(Converter = typeof(AirstrikeSubstyleConverter))]
|
|
|
|
public IStyle Style;
|
2017-04-29 14:11:25 +02:00
|
|
|
}
|
|
|
|
|
2017-05-01 19:55:14 +02:00
|
|
|
public enum WeaponAirstrikeSubstyle : int
|
2017-04-29 14:11:25 +02:00
|
|
|
{
|
|
|
|
Mines,
|
|
|
|
Worms,
|
|
|
|
Launcher
|
|
|
|
}
|
|
|
|
}
|