]> git.localhorst.tv Git - blobs-assets.git/blob - data/tiles
adcfdba7845918d5112417f7198cb88e323ea0c0
[blobs-assets.git] / data / tiles
1 algae = {
2         label = "Algae";
3         texture = 0;
4         yield = [
5                 { resource = water;   ubiquity = 1.0; },
6                 { resource = biomass; ubiquity = 0.5; },
7         ];
8 };
9 desert = {
10         label = "Desert";
11         texture = 1;
12         yield = [
13                 { resource = sand; ubiquity = 1.0; },
14         ];
15 };
16 forest = {
17         label = "Forest";
18         texture = 2;
19         yield = [
20                 { resource = wood; ubiquity = 1.0; },
21                 { resource = dirt; ubiquity = 0.5; },
22         ];
23 };
24 grass = {
25         label = "Grass";
26         texture = 3;
27         yield = [
28                 { resource = dirt;    ubiquity = 0.5; },
29                 { resource = biomass; ubiquity = 0.25; },
30                 { resource = water;   ubiquity = 0.25; },
31         ];
32 };
33 ice = {
34         label = "Ice";
35         texture = 4;
36         yield = [
37                 { resource = ice;   ubiquity = 1.0; },
38                 { resource = water; ubiquity = 0.25; },
39         ];
40 };
41 jungle = {
42         label = "Jungle";
43         texture = 5;
44         yield = [
45                 { resource = wood;    ubiquity = 0.5; },
46                 { resource = biomass; ubiquity = 0.5; },
47         ];
48 };
49 mountain = {
50         label = "Mountain";
51         texture = 6;
52         yield = [
53                 { resource = rock; ubiquity = 1.0; },
54         ];
55 };
56 ocean = {
57         label = "Ocean";
58         texture = 7;
59         yield = [
60                 { resource = water; ubiquity = 1.0; },
61         ];
62 };
63 rock = {
64         label = "Rock";
65         texture = 8;
66         yield = [
67                 { resource = rock; ubiquity = 1.0; },
68         ];
69 };
70 sand = {
71         label = "Sand";
72         texture = 9;
73         yield = [
74                 { resource = sand; ubiquity = 1.0; },
75         ];
76 };
77 taiga = {
78         label = "Taiga";
79         texture = 10;
80         yield = [
81                 { resource = wood;  ubiquity = 1.0; },
82                 { resource = water; ubiquity = 0.5; },
83         ];
84 };
85 tundra = {
86         label = "Tundra";
87         texture = 11;
88         yield = [
89                 { resource = rock; ubiquity = 1.0; },
90                 { resource = ice;  ubiquity = 0.5; },
91         ];
92 };
93 water = {
94         label = "Water";
95         texture = 12;
96         yield = [
97                 { resource = water;   ubiquity = 1.0; },
98                 { resource = biomass; ubiquity = 0.25; },
99         ];
100 };
101 wheat = {
102         label = "Wheat";
103         texture = 13;
104         yield = [
105                 { resource = biomass; ubiquity = 1.0; },
106                 { resource = water;   ubiquity = 0.25; },
107         ];
108 };