]> git.localhorst.tv Git - blobs-assets.git/commitdiff
aggregate states
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 17 Nov 2017 21:05:10 +0000 (22:05 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 17 Nov 2017 21:05:10 +0000 (22:05 +0100)
maybe?

seems like a dumb idea

data/resources

index ab8ca5d5698e0a0f02e32cb9ecf135355dca64dc..3c21a5ae489d6507d14545713fb52ec7ab601094 100644 (file)
@@ -1,31 +1,39 @@
 air = {
        label = "Air";
+       state = gas;
 };
 
 biomass = {
        label = "Biomass";
+       state = solid;
 };
 
 dirt = {
        label = "Dirt";
+       state = solid;
 };
 
 ice = {
        label = "Ice";
+       state = solid;
 };
 
 rock = {
        label = "Rock";
+       state = solid;
 };
 
 sand = {
        label = "Sand";
+       state = solid;
 };
 
 water = {
        label = "Water";
+       state = liquid;
 };
 
 wood = {
        label = "Wood";
+       state = solid;
 };