diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-05-13 19:59:04 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 11:54:52 +0100 |
commit | ba24b57f996579aa945784db05d069a3bbacabb7 (patch) | |
tree | 72ca484f154ef09ba5faadacb3a1b695cf64c8a3 | |
parent | 7bdfe0403e0ef224921b00b3ccd1d3236566efd1 (diff) | |
download | wilderness-war-ba24b57f996579aa945784db05d069a3bbacabb7.tar.gz |
Show supply lines on mountain spaces.
-rw-r--r-- | mountain-supply-both.svg | 13 | ||||
-rw-r--r-- | mountain-supply-british.svg | 8 | ||||
-rw-r--r-- | mountain-supply-french.svg | 8 | ||||
-rw-r--r-- | play.css | 9 |
4 files changed, 38 insertions, 0 deletions
diff --git a/mountain-supply-both.svg b/mountain-supply-both.svg new file mode 100644 index 0000000..e618244 --- /dev/null +++ b/mountain-supply-both.svg @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" width="210" height="148"> +<path + fill="none" + stroke="#f0594e" + stroke-width="10" + d="M 10 138 L 200 138 L 128 10 "/> +<path + fill="none" + stroke="#0092d5" + stroke-width="10" + d="M 10 138 L 78 35 L 101 57 L 128 10"/> +</svg> diff --git a/mountain-supply-british.svg b/mountain-supply-british.svg new file mode 100644 index 0000000..5808b63 --- /dev/null +++ b/mountain-supply-british.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" width="210" height="148"> +<path + fill="none" + stroke="#f0594e" + stroke-width="10" + d="M 10 138 L 200 138 L 128 10 "/> +</svg> diff --git a/mountain-supply-french.svg b/mountain-supply-french.svg new file mode 100644 index 0000000..6f8ea17 --- /dev/null +++ b/mountain-supply-french.svg @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" width="210" height="148"> +<path + fill="none" + stroke="#0092d5" + stroke-width="10" + d="M 10 138 L 78 35 L 101 57 L 128 10"/> +</svg> @@ -211,6 +211,15 @@ aside { width: 220px; } .mountain.selected { background-image: url(mountain-selected.svg); } +.mountain.british_supply { + background-image: url(mountain-supply-british.svg); +} +.mountain.french_supply { + background-image: url(mountain-supply-french.svg); +} +.mountain.british_supply.french_supply { + background-image: url(mountain-supply-both.svg); +} .cultivated.highlight, .box.highlight, .militia-box.highlight { border-color: white; |