Added ruleset to model thaw after ice-age, and separated out the

herbivore/predation rules into a separate ruleset 'ecology.txt'
This commit is contained in:
Simon Brooke 2014-07-21 11:20:38 +01:00
parent cbdf01c4c2
commit ea1af2103f
7 changed files with 212 additions and 22 deletions

View file

@ -6,10 +6,22 @@ td.water {
background-color: blue;
}
td.pasture, td.grassland {
td.pasture, td.grassland, td.meadow {
background-color: lime;
}
td.crop {
background-color: yellow;
}
td.camp, td.house, td.inn, td.market {
background-color: gray;
}
td.ploughland {
background-color: brown;
}
td.heath {
background-color: chartreuse;
}
@ -29,3 +41,12 @@ td.climax {
td.fire {
background-color: orange;
}
td.error, td.plague {
background-color: red;
}
td.snow, td.ice {
background-color: white;
}