replace PNG domain icons with SVG versions and update script references
BIN
icons/blood.png
|
Before Width: | Height: | Size: 12 KiB |
BIN
icons/dread.png
|
Before Width: | Height: | Size: 18 KiB |
139
icons/svg/blood.svg
Executable file → Normal file
|
Before Width: | Height: | Size: 159 B After Width: | Height: | Size: 5 MiB |
144
icons/svg/blood_domain.svg
Normal file
|
After Width: | Height: | Size: 5 MiB |
138
icons/svg/dread.svg
Normal file
|
After Width: | Height: | Size: 5 MiB |
146
icons/svg/dread_domain.svg
Normal file
|
After Width: | Height: | Size: 5 MiB |
|
|
@ -1,6 +0,0 @@
|
|||
<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="50" cy="50" r="40" fill="#2d004d" />
|
||||
<circle cx="35" cy="40" r="8" fill="white" opacity="0.6" />
|
||||
<circle cx="65" cy="40" r="8" fill="white" opacity="0.6" />
|
||||
<path d="M35 70 Q50 60 65 70" stroke="white" stroke-width="3" fill="none" opacity="0.6" />
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 363 B |
|
|
@ -49,13 +49,13 @@ async function registerVoidDomains() {
|
|||
'blood': {
|
||||
id: 'blood',
|
||||
label: 'Blood',
|
||||
src: `modules/${MODULE_ID}/icons/blood.png`,
|
||||
src: `modules/${MODULE_ID}/icons/svg/blood.svg`,
|
||||
description: 'The Blood domain.'
|
||||
},
|
||||
'dread': {
|
||||
id: 'dread',
|
||||
label: 'Dread',
|
||||
src: `modules/${MODULE_ID}/icons/dread.png`,
|
||||
src: `modules/${MODULE_ID}/icons/svg/dread.svg`,
|
||||
description: 'The Dread domain.'
|
||||
}
|
||||
};
|
||||
|
|
|
|||