Files
NGE-resource-browser/attribute_def.php
2021-10-07 23:32:19 -04:00

22 lines
385 B
PHP

<?php
//just maps internal attribute name to user friendly name
$attributes=array
(
"res_decay_resist"=>"DR",
"res_flavor"=>"FL",
"res_potential_energy"=>"PE",
"res_quality"=>"OQ",
"res_malleability"=>"MA",
"res_shock_resistance"=>"SR",
"res_toughness"=>"UT",
"res_cold_resist"=>"CR",
"res_conductivity"=>"CD",
"res_heat_resist"=>"HR",
"entangle_resistance"=>"ER"
);
?>