diff --git a/media/attribution.js b/media/attribution.js index f1d5c32c..a3baaed1 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -5266,6 +5266,18 @@ const attributionData = { "fidchell" ] }, + { + prefix: "./media/characters/sol/", + files: [ + { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Sol" } + ], + authors: [ + "fidchell" + ], + owners: [ + "fidchell" + ] + }, //characters { prefix: "./media/landmarks/", diff --git a/media/characters/sol/front.svg b/media/characters/sol/front.svg new file mode 100644 index 00000000..9a18d533 --- /dev/null +++ b/media/characters/sol/front.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 28dd0051..7caf15b9 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -13315,6 +13315,31 @@ characterMakers["Seara"] = () => { ) }; + characterMakers["Sol"] = () => { + return makeCharacter( + "Sol", + "Fidchell", + { + front: { + height: math.unit(6 + 2/12, "feet"), + weight: math.unit(268, "lb"), + name: "Front", + image: { + source: "./media/characters/sol/front.svg", + extra: 247/231 * (1 / (1 - 0.05)), + bottom: 0.05 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(6 + 2/12, "feet") + }, + ] + ) + }; + //characters function makeCharacters() { diff --git a/presets/naturals.js b/presets/naturals.js index f5bee238..ad83f9cd 100644 --- a/presets/naturals.js +++ b/presets/naturals.js @@ -95,7 +95,7 @@ function makeNaturals() { results.push(makePlanet("Pluto", math.unit(2370, "km"), math.unit(0.0146e24, "kg"))); results.push(makePlanet("White Dwarf", math.unit(14000, "km"), math.unit(1e30, "kg"))); - results.push(makePlanet("Sol", math.unit(865370, "mi"), math.unit(1.989e30, "kg"))); + results.push(makePlanet("Sun", math.unit(865370, "mi"), math.unit(1.989e30, "kg"))); results.push(makePlanet("Betelgeuse", math.unit(1234.2e6, "mi"), math.unit(2.188e31, "kg"))); results.push(makePlanet("Milky Way", math.unit(105700, "lightyears"), math.unit(3e+39, "kg"), { source: "./media/naturals/milky-way.svg" })); results.push(makePlanet("Observable Universe", math.unit(93.016e9, "lightyears"), math.unit(10e53, "kg")));