updated assets url

This commit is contained in:
Ulysia 2025-01-02 17:58:13 +01:00
parent 261b06ce54
commit df05710c09
7 changed files with 15 additions and 8 deletions

View file

@ -5,4 +5,4 @@ tags: character, protogen
Tho here is his image ^fde6d9
<a href="https://assets.nexie.net/characters/flow/headshot.webp"><img style="max-height:250px;" src="https://assets.nexie.net/characters/flow/headshot.webp" loading="lazy" decoding="async"/></a>
<a href="https://assets.derg.cz/characters/flow/headshot.webp"><img style="max-height:250px;" src="https://assets.derg.cz/characters/flow/headshot.webp" loading="lazy" decoding="async"/></a>

View file

@ -4,6 +4,6 @@ tags: character, dragon
Helio is a western dragon with plasma running inside of him ^63d074
### Ref Sheet
<a href="https://assets.nexie.net/characters/helio/refsheet.webp"><img style="max-height:250px;" src="https://assets.nexie.net/characters/helio/refsheet.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/helio/refsheet.webp"><img style="max-height:250px;" src="https://assets.derg.cz/characters/helio/refsheet.webp" loading="lazy" decoding="async"></a>
- Artist is [@starlyscies](https://www.deviantart.com/starlyscies) on DeviantArt

View file

@ -1,10 +1,10 @@
Ulysia is a female silkwing ^30ce5f
### Headshot
<a href="https://assets.nexie.net/characters/ulysia/iter1/headshot.webp"><img style="max-height:250px;" src="https://assets.nexie.net/characters/ulysia/iter1/headshot.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/ulysia/iter1/headshot.webp"><img style="max-height:250px;" src="https://assets.derg.cz/characters/ulysia/iter1/headshot.webp" loading="lazy" decoding="async"></a>
- Artist is [Amoadragon](https://twitter.com/aomadragon) on Twitter
### Ref Sheet
<a href="https://assets.nexie.net/characters/ulysia/iter1/refsheet.webp"><img style="max-height:250px;" src="https://assets.nexie.net/characters/ulysia/iter1/refsheet.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/ulysia/iter1/refsheet.webp"><img style="max-height:250px;" src="https://assets.derg.cz/characters/ulysia/iter1/refsheet.webp" loading="lazy" decoding="async"></a>
- Artist of the bases used is [K9Pestilence](https://sta.sh/2rpe0f28aat)

View file

@ -4,6 +4,6 @@ tags: character, kobold
An adorable kobold bought as an adopt from [AzuralCobaltros](https://www.deviantart.com/azuralcobaltros)
*(name might change)* ^7d6790
<a href="https://assets.nexie.net/characters/scarlet/refsheet.webp"><img style="max-height:250px;" src="https://assets.nexie.net/characters/scarlet/refsheet.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/scarlet/refsheet.webp"><img style="max-height:250px;" src="https://assets.derg.cz/characters/scarlet/refsheet.webp" loading="lazy" decoding="async"></a>
- Artist is [AzuralCbaltros](https://www.deviantart.com/azuralcobaltros) on DeviantArt

View file

@ -9,7 +9,7 @@ Ulysia is a moth-dragon hybrid. She can squeak like a deathhead hawkmoth and ret
Her [Twitter](https://x.com/Helga_Dragon "https://x.com/Helga_Dragon") and [FurAffinity](https://www.furaffinity.net/user/mydrawnworld/ "https://www.furaffinity.net/user/mydrawnworld/")
### Ref Sheet
<a href="https://assets.nexie.net/characters/ulysia/refsheet.png"><img style="max-height:250px;" src="https://assets.nexie.net/characters/ulysia/refsheet.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/ulysia/refsheet.png"><img style="max-height:250px;" src="https://assets.derg.cz/characters/ulysia/refsheet.webp" loading="lazy" decoding="async"></a>
### Plushified version by Clodinator
[Clodinator's youtube](https://www.youtube.com/@Clodinator)

View file

@ -15,4 +15,4 @@ Some characters (currently only Ulysia) have a history section which holds past
# Size Chart for the dragons
> [!note] Ulysias appearance has changed. See her current appearance in [[Ulysia]]
<a href="https://assets.nexie.net/characters/sizeref.png"><img style="max-width:100%;" src="https://assets.nexie.net/characters/sizeref.webp" loading="lazy" decoding="async"></a>
<a href="https://assets.derg.cz/characters/sizeref.png"><img style="max-width:100%;" src="https://assets.derg.cz/characters/sizeref.webp" loading="lazy" decoding="async"></a>

View file

@ -7,7 +7,14 @@ const PageImage: QuartzComponent = ({ fileData, cfg, displayClass }: QuartzCompo
const title = cfg?.pageTitle ?? i18n(cfg.locale).propertyDefaults.title
const baseDir = pathToRoot(fileData.slug!)
return (
<a href={baseDir}><img width="100px" height="100px" src="https://assets.nexie.net/profileimage.webp" style="width:100px; height:100px"/></a>
<a href={baseDir}>
<img
width="100px"
height="100px"
src="https://assets.derg.cz/profileimage.webp"
style="width:100px; height:100px"
/>
</a>
)
}