Add water waves fill pattern and pond-specific pattern

This commit is contained in:
RudyTheDev
2018-11-18 22:12:40 +02:00
parent b18dfb4030
commit ff8723e194
5 changed files with 10 additions and 0 deletions
+4
View File
@@ -49,6 +49,10 @@ export function svgAreas(projection, context) {
grassland: 'grass',
sand: 'beach',
scrub: 'scrub',
water: [
{ water: 'pond', pattern: 'pond' },
{ pattern: 'waves' }
],
wetland: [
{ wetland: 'marsh', pattern: 'wetland_marsh' },
{ wetland: 'swamp', pattern: 'wetland_swamp' },
+2
View File
@@ -89,9 +89,11 @@ export function svgDefs(context) {
['landfill', 'landfill'],
['meadow', 'grass'],
['orchard', 'orchard'],
['pond', 'pond'],
['quarry', 'quarry'],
['scrub', 'bushes'],
['vineyard', 'vineyard'],
['waves', 'waves'],
['wetland', 'wetland'],
['wetland_marsh', 'wetland_marsh'],
['wetland_swamp', 'wetland_swamp'],