mirror of
https://github.com/voronius/NGE-resource-browser
synced 2026-01-15 22:04:26 -05:00
22 lines
385 B
PHP
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"
|
|
);
|
|
|
|
|
|
|
|
?>
|