33 lines
1.3 KiB
TOML
33 lines
1.3 KiB
TOML
# 武装直升机-001 配置
|
||
Type = "Helicopter" # 目标类型
|
||
|
||
[Name]
|
||
Zh = "武装直升机-001"
|
||
En = "Attack Helicopter-001"
|
||
|
||
[Properties]
|
||
Type = "Helicopter" # 属性中的类型
|
||
Mass = 10000.0 # 质量 (千克)
|
||
Length = 17.0 # 长度 (米)
|
||
Width = 3.0 # 宽度 (米)
|
||
Height = 4.5 # 高度 (米)
|
||
MaxSpeed = 280.0 # 最大速度 (千米/小时, JSON中为280,C#中可能是米/秒,需确认)
|
||
ArmorThickness = 150.0 # 装甲厚度 (毫米)
|
||
RadarCrossSection = 8.0 # 雷达散射截面积 (平方米)
|
||
InfraredRadiationIntensity = 3000.0 # 红外辐射强度 (瓦特/球面度)
|
||
UltravioletRadiationIntensity = 20.0 # 紫外辐射强度 (瓦特/球面度)
|
||
MillimeterWaveRadiationIntensity = 6.0 # 毫米波辐射强度 (瓦特/球面度)
|
||
MillimeterWaveRadiationTemperature = 450.0 # 毫米波辐射温度 (开尔文)
|
||
LaserReflectivity = 0.2 # 激光反射率
|
||
|
||
[Properties.ThermalPattern] # 热辐射特征模型
|
||
StaticPatternSource = [ # 静态时温度分布
|
||
[85, 110, 80],
|
||
[35, 45, 40],
|
||
[30, 35, 30]
|
||
]
|
||
MovingPatternSource = [ # 移动时温度分布
|
||
[90, 115, 85],
|
||
[40, 50, 45],
|
||
[35, 40, 35]
|
||
] |