]> git.localhorst.tv Git - blobs-assets.git/commitdiff
resource compatibility
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 9 Dec 2017 18:51:09 +0000 (19:51 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 9 Dec 2017 18:51:09 +0000 (19:51 +0100)
data/resources

index d07a28f11d26ec8198f1cd06e21895e11f7d8fb8..f21037cabec6d9ad6d1ed9153f9824343edbe14a 100644 (file)
@@ -12,6 +12,9 @@ biomass = {
        density = 985;
        energy = 8000000.0;
        base_color = [ 0.42, 0.42, 0.23 ];
+       compatibility = {
+               wood: 0.01;
+       };
 };
 
 dirt = {
@@ -20,6 +23,9 @@ dirt = {
        density = 1600;
        energy = 9001.0;
        base_color = [ 0.47, 0.28, 0.0 ];
+       compatibility = {
+               sand: 0.25;
+       };
 };
 
 ice = {
@@ -28,6 +34,9 @@ ice = {
        density = 916.7;
        energy = 3600.0;
        base_color = [ 0.7, 0.81, 0.98 ];
+       compatibility = {
+               water: 0.9;
+       };
 };
 
 rock = {
@@ -36,6 +45,9 @@ rock = {
        density = 2600;
        energy = 2800.0;
        base_color = [ 0.35, 0.3, 0.25 ];
+       compatibility = {
+               sand: 0.25;
+       };
 };
 
 sand = {
@@ -44,6 +56,10 @@ sand = {
        density = 1602;
        energy = 3000.0;
        base_color = [ 0.93, 0.79, 0.69 ];
+       compatibility = {
+               dirt: 0.25;
+               rock: 0.25;
+       };
 };
 
 water = {
@@ -52,6 +68,9 @@ water = {
        density = 1020;
        energy = 4200.0;
        base_color = [ 0.25, 0.64, 0.87 ];
+       compatibility = {
+               ice: 0.9;
+       };
 };
 
 wood = {
@@ -60,4 +79,7 @@ wood = {
        density = 600;
        energy = 20000000.0;
        base_color = [ 0.59, 0.44, 0.2 ];
+       compatibility = {
+               biomass: 0.01;
+       };
 };