From a3f5e23b7cd6c8b4281bd6d649be6e456e1bd435 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 8 Jan 2024 23:17:18 -0700 Subject: [PATCH] Add dice icons --- assets/README | 6 ++++++ assets/dice/d10.svg | 3 +++ assets/dice/d12.svg | 3 +++ assets/dice/d20.svg | 3 +++ assets/dice/d4.svg | 3 +++ assets/dice/d6.svg | 3 +++ assets/dice/d8.svg | 3 +++ assets/sources.txt | 8 ++++++++ module/handlebars.mjs | 6 ++++++ 9 files changed, 38 insertions(+) create mode 100644 assets/README create mode 100644 assets/dice/d10.svg create mode 100644 assets/dice/d12.svg create mode 100644 assets/dice/d20.svg create mode 100644 assets/dice/d4.svg create mode 100644 assets/dice/d6.svg create mode 100644 assets/dice/d8.svg diff --git a/assets/README b/assets/README new file mode 100644 index 0000000..d117e70 --- /dev/null +++ b/assets/README @@ -0,0 +1,6 @@ +Some of the icons provided in this repository may be Creative Commons by Attribution 3, +or they may have some other license. + +Oliver-Akins does not grant any permission to use these icons outside of what the +licenses allow. Make sure that anything you do with these icons is within the +permitted usage of their respective licenses if they are outside of this repository. \ No newline at end of file diff --git a/assets/dice/d10.svg b/assets/dice/d10.svg new file mode 100644 index 0000000..96a39a1 --- /dev/null +++ b/assets/dice/d10.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/dice/d12.svg b/assets/dice/d12.svg new file mode 100644 index 0000000..dac2e4c --- /dev/null +++ b/assets/dice/d12.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/dice/d20.svg b/assets/dice/d20.svg new file mode 100644 index 0000000..82cf8b3 --- /dev/null +++ b/assets/dice/d20.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/dice/d4.svg b/assets/dice/d4.svg new file mode 100644 index 0000000..3388bda --- /dev/null +++ b/assets/dice/d4.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/dice/d6.svg b/assets/dice/d6.svg new file mode 100644 index 0000000..bea7528 --- /dev/null +++ b/assets/dice/d6.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/dice/d8.svg b/assets/dice/d8.svg new file mode 100644 index 0000000..ca3b00b --- /dev/null +++ b/assets/dice/d8.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/sources.txt b/assets/sources.txt index f1638a5..5bc3cf6 100644 --- a/assets/sources.txt +++ b/assets/sources.txt @@ -7,5 +7,13 @@ Alice Design: zapesicon: chat-bubble.svg (https://thenounproject.com/icon/chat-6423186/) +Fritz Duggan: + dice/d4.svg (https://thenounproject.com/icon/d4-4570604/) + dice/d6.svg (https://thenounproject.com/icon/d6-4570605/) + dice/d8.svg (https://thenounproject.com/icon/d8-4570603/) + dice/d10.svg (https://thenounproject.com/icon/d10-4570608/) + dice/d12.svg (https://thenounproject.com/icon/d12-4570606/) + dice/d20.svg (https://thenounproject.com/icon/d20-4570607/) + Oliver Akins: chat-bubble.svg : Edits only (scaled) \ No newline at end of file diff --git a/module/handlebars.mjs b/module/handlebars.mjs index fff898b..0878884 100644 --- a/module/handlebars.mjs +++ b/module/handlebars.mjs @@ -24,6 +24,12 @@ export const icons = [ `caret-right.svg`, `garbage-bin.svg`, `chat-bubble.svg`, + `dice/d4.svg`, + `dice/d6.svg`, + `dice/d8.svg`, + `dice/d10.svg`, + `dice/d12.svg`, + `dice/d20.svg`, ];