replace PNG domain icons with SVG versions and update script references

This commit is contained in:
CPTN Cosmo 2026-04-15 18:24:42 +02:00
parent a8b2db4ef7
commit a796212445
8 changed files with 566 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

139
icons/svg/blood.svg Executable file → Normal file

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 159 B

After

Width:  |  Height:  |  Size: 5 MiB

Before After
Before After

144
icons/svg/blood_domain.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5 MiB

138
icons/svg/dread.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5 MiB

146
icons/svg/dread_domain.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5 MiB

View file

@ -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

View file

@ -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.'
}
};