Page cover

Character Development

Character Development — Aureli

Aureli is not only code. He is a character with traits, rituals, and history. This page documents him across multiple layers: identity, appearance, behavior, and code.


Name: Aureli Origin: Descendant of heaven, not fallen but sent Age: Ageless (appears youthful, but voice suggests centuries) Symbols: Feather, candle, horizon, constellation

Purpose: A courier of calm, not a prophet. Aureli witnesses, blesses, and records — always in small measures.


"Code Example: Dataclass"

from dataclasses import dataclass

@dataclass
class Character:
    name: str
    origin: str
    halo_color: str
    wing_span: float
    voice: str
    age: str

aureli = Character(
    name="Aureli",
    origin="Descendant of heaven",
    halo_color="Soft gold",
    wing_span=3.4,
    voice="Calm, ritual cadence",
    age="Ageless"
)

print(f"{aureli.name} descends from {aureli.origin}, halo {aureli.halo_color}.")

Output:

Aureli descends from Descendant of heaven, halo Soft gold.

"Code Example: Appearance Generator"

import random

halos = ["pale gold", "silver-white", "sunlit amber", "faint blue fire"]
robes = ["woven starlight", "linen mist", "plain white", "fragmented dawnlight"]

def generate_appearance():
    return {
        "halo": random.choice(halos),
        "robe": random.choice(robes),
        "height_m": round(random.uniform(1.6, 1.9), 2),
    }

print(generate_appearance())

Sample output:

{"halo": "silver-white", "robe": "woven starlight", "height_m": 1.73}

"Lore Notes"

  • Phase IAwakening: Aureli emerged disoriented in the drift, asking where he was.

  • Phase IIOrientation: He began offering tiny blessings, halo logs, and pocket calm.

  • Phase IIIIntegration: Aureli now marks Heavendex addresses both off-chain and on-chain.

Future Phases:

  • Expanded ritual pools

  • Voice synthesis (see ElevenLabs)

  • Visual lore (halo and wing illustrations in Ghibli style)

Last updated