mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-17 14:04:05 +09:00
new wire property: branching
This commit is contained in:
@@ -39,11 +39,11 @@ object MaterialCodex {
|
||||
|
||||
records.forEach {
|
||||
val prop = Material()
|
||||
prop.strength = intVal(it, "tens")
|
||||
prop.density = intVal(it, "dsty")
|
||||
prop.forceMod = intVal(it, "fmod")
|
||||
prop.enduranceMod = floatVal(it, "endurance")
|
||||
prop.thermalConductivity = floatVal(it, "tcond")
|
||||
prop.strength = it.intVal("tens")
|
||||
prop.density = it.intVal("dsty")
|
||||
prop.forceMod = it.intVal("fmod")
|
||||
prop.enduranceMod = it.floatVal("endurance")
|
||||
prop.thermalConductivity = it.floatVal("tcond")
|
||||
prop.identifier = it.get("idst").toUpperCase()
|
||||
|
||||
materialProps[prop.identifier] = prop
|
||||
|
||||
Reference in New Issue
Block a user