index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-20 09:07:16 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-20 09:07:16 -0700 |
commit | 4d133b7181241adca3867afae721eb0962e4e645 (patch) | |
tree | 774b8bd433c0dea37d1434a59bf23704efc16373 /public/assets/images/counters.svg | |
parent | c692bc90207c4b04771f953ce5924100a1889cae (diff) |
Add weapon icons to record sheet
Diffstat (limited to 'public/assets/images/counters.svg')
-rw-r--r-- | public/assets/images/counters.svg | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/public/assets/images/counters.svg b/public/assets/images/counters.svg new file mode 100644 index 0000000..aab06a8 --- /dev/null +++ b/public/assets/images/counters.svg @@ -0,0 +1,38 @@ +<?xml version="1.0" standalone="no"?> +<svg viewBox="-6 -6 12 24" xmlns="http://www.w3.org/2000/svg"> + <defs> + <circle id="counter-base" cx="0" cy="0" r="6"/> + + <g id="semi-auto"> + <line x1="-2" y1="1" x2="2" y2="1"/> + <line x1="-2" y1="2" x2="2" y2="2"/> + </g> + + <g id="auto"> + <line x1="-2" y1="0" x2="2" y2="0"/> + <line x1="-2" y1="1" x2="2" y2="1"/> + <line x1="-2" y1="2" x2="2" y2="2"/> + </g> + </defs> + + <g id="rifle" class="weapon-symbol"> + <use href="#counter-base"/> + <use href="#semi-auto"/> + <line x1="0" y1="-5" x2="0" y2="5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> + + <g id="smg" class="weapon-symbol"> + <use href="#counter-base"/> + <use href="#auto"/> + <line x1="0" y1="-5" x2="0" y2="4.5"/> + <line x1="-2" y1="4.5" x2="2" y2="4.5"/> + </g> + + <g id="blazer" class="weapon-symbol"> + <use href="#counter-base"/> + <use href="#auto"/> + <polyline points="0,-5 0,-3 -3,-2.5 3,-1.5 0,-1 0,2.5 -3,3, 3,4 0,4.5 0,5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> +</svg> |