mirror of
https://github.com/Jusctsch5/ironsphererpg.git
synced 2026-01-19 19:44:45 +00:00
Taking everything obtained from http://ironsphererpg2.webs.com/ and dumping it in a git repo
113 lines
3.7 KiB
C#
113 lines
3.7 KiB
C#
// "type image overlay modulate {anim flags} {anim speed}"
|
|
datablock CommanderIconData(CMDPlayerIcon)
|
|
{
|
|
baseImage = "static com_player_grey_24x false true";
|
|
selectImage = "static com_player_grey_24x_glow true true";
|
|
hilightImage = "static com_player_grey_24x_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDGeneratorIcon)
|
|
{
|
|
baseImage = "static com_icon_generator false true";
|
|
selectImage = "static com_icon_generator_glow true true";
|
|
hilightImage = "static com_icon_generator_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDSolarGeneratorIcon)
|
|
{
|
|
baseImage = "static com_icon_solar_gen false true";
|
|
selectImage = "static com_icon_solar_gen_glow true true";
|
|
hilightImage = "static com_icon_solar_gen_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDHoverScoutIcon)
|
|
{
|
|
baseImage = "static com_icon_landscout false true";
|
|
selectImage = "static com_icon_landscout_glow true true";
|
|
hilightImage = "static com_icon_landscout_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDFlyingScoutIcon)
|
|
{
|
|
baseImage = "static com_icon_scout false true";
|
|
selectImage = "static com_icon_scout_glow true true";
|
|
hilightImage = "static com_icon_scout_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDFlyingBomberIcon)
|
|
{
|
|
baseImage = "static com_icon_bomber false true";
|
|
selectImage = "static com_icon_bomber_glow true true";
|
|
hilightImage = "static com_icon_bomber_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDFlyingHAPCIcon)
|
|
{
|
|
baseImage = "static com_icon_hapc false true";
|
|
selectImage = "static com_icon_hapc_glow true true";
|
|
hilightImage = "static com_icon_hapc_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDGroundTankIcon)
|
|
{
|
|
baseImage = "static com_icon_tank false true";
|
|
selectImage = "static com_icon_tank_glow true true";
|
|
hilightImage = "static com_icon_tank_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDTurretIcon)
|
|
{
|
|
baseImage = "static com_icon_turret false true";
|
|
selectImage = "static com_icon_turret_glow true true";
|
|
hilightImage = "static com_icon_turret_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDCameraIcon)
|
|
{
|
|
baseImage = "static com_icon_camera false true";
|
|
selectImage = "static com_icon_camera true true";
|
|
hilightImage = "static com_icon_camera true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDFlagIcon)
|
|
{
|
|
baseImage = "static com_icon_flag_outside false true";
|
|
selectImage = "static com_icon_flag_outside_glow true true";
|
|
hilightImage = "static com_icon_flag_outside_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDGroundMPBIcon)
|
|
{
|
|
baseImage = "static com_icon_mpb false true";
|
|
selectImage = "static com_icon_mpb_glow true true";
|
|
hilightImage = "static com_icon_mpb_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDSwitchIcon)
|
|
{
|
|
baseImage = "static com_icon_genericswitch false true";
|
|
selectImage = "static com_icon_genericswitch_glow true true";
|
|
hilightImage = "static com_icon_genericswitch_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDStationIcon)
|
|
{
|
|
baseImage = "static com_icon_inventory false true";
|
|
selectImage = "static com_icon_inventory_glow true true";
|
|
hilightImage = "static com_icon_inventory_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDVehicleStationIcon)
|
|
{
|
|
baseImage = "static com_icon_vehicle_inventory false true";
|
|
selectImage = "static com_icon_vehicle_inventory_glow true true";
|
|
hilightImage = "static com_icon_vehicle_inventory_glow true true";
|
|
};
|
|
|
|
datablock CommanderIconData(CMDSensorIcon)
|
|
{
|
|
baseImage = "static com_icon_sensor false true";
|
|
selectImage = "static com_icon_sensor_glow true true";
|
|
hilightImage = "static com_icon_sensor_glow true true";
|
|
};
|