From f2587b6b95d73b9b2d2d871e9a8f5b5dae702965 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sat, 9 Dec 2017 19:51:09 +0100 Subject: [PATCH] resource compatibility --- data/resources | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/data/resources b/data/resources index d07a28f..f21037c 100644 --- a/data/resources +++ b/data/resources @@ -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; + }; }; -- 2.39.2