Browse Source

Add Salaxia, Koriona, Jessile, and Annalei

master
Fen Dweller 2 years ago
parent
commit
942afcdba6
6 changed files with 10746 additions and 0 deletions
  1. +48
    -0
      media/attribution.js
  2. +1958
    -0
      media/characters/annalei/front.svg
  3. +2442
    -0
      media/characters/jessile/front.svg
  4. +2321
    -0
      media/characters/koriona/front.svg
  5. +3813
    -0
      media/characters/salaxia/front.svg
  6. +164
    -0
      presets/characters.js

+ 48
- 0
media/attribution.js View File

@@ -23559,6 +23559,54 @@ const attributionData = {
"tadeo-saffron"
]
},
{
prefix: "./media/characters/salaxia/",
files: [
{ name: "front.svg", source: "https://www.furaffinity.net/view/47466418/" }
],
authors: [
"braxia"
],
owners: [
"braxia"
]
},
{
prefix: "./media/characters/koriona/",
files: [
{ name: "front.svg", source: "https://www.furaffinity.net/view/47465995/" }
],
authors: [
"braxia"
],
owners: [
"braxia"
]
},
{
prefix: "./media/characters/jessile/",
files: [
{ name: "front.svg", source: "https://www.furaffinity.net/view/47466611/" }
],
authors: [
"braxia"
],
owners: [
"braxia"
]
},
{
prefix: "./media/characters/annalei/",
files: [
{ name: "front.svg", source: "https://www.furaffinity.net/view/47466294/" }
],
authors: [
"braxia"
],
owners: [
"braxia"
]
},
//characters
{
prefix: "./media/fiction/halo/halo/",


+ 1958
- 0
media/characters/annalei/front.svg
File diff suppressed because it is too large
View File


+ 2442
- 0
media/characters/jessile/front.svg
File diff suppressed because it is too large
View File


+ 2321
- 0
media/characters/koriona/front.svg
File diff suppressed because it is too large
View File


+ 3813
- 0
media/characters/salaxia/front.svg
File diff suppressed because it is too large
View File


+ 164
- 0
presets/characters.js View File

@@ -2501,6 +2501,18 @@ const speciesData = {
name: "Furret",
parents: ["pokemon", "ferret"]
},
"leavanny": {
name: "Leavanny",
parents: ["insect", "plant", "pokemon"]
},
"articuno": {
name: "Articuno",
parents: ["avian", "pokemon"]
},
"froslass": {
name: "Froslass",
parents: ["pokemon", "humanoid"]
},
}

//species
@@ -69314,6 +69326,158 @@ characterMakers.push(() => makeCharacter(
]
))

characterMakers.push(() => makeCharacter(
{ name: "Salaxia", species: ["salazzle"], tags: ["anthro"] },
{
front: {
height: math.unit(30, "feet"),
name: "Front",
image: {
source: "./media/characters/salaxia/front.svg",
extra: 518/492,
bottom: 16/534
}
},
},
[
{
name: "Normal",
height: math.unit(30, "feet"),
default: true
},
{
name: "Small",
height: math.unit(1000, "feet")
},
{
name: "Macro",
height: math.unit(10000, "feet")
},
{
name: "Mega Macro",
height: math.unit(10000, "miles")
},
{
name: "Giga Macro",
height: math.unit(30e6, "miles")
},
]
))

characterMakers.push(() => makeCharacter(
{ name: "Koriona", species: ["froslass"], tags: ["anthro"] },
{
front: {
height: math.unit(13, "feet"),
name: "Front",
image: {
source: "./media/characters/koriona/front.svg",
extra: 507/474,
bottom: 6/513
}
},
},
[
{
name: "Normal",
height: math.unit(13, "feet"),
default: true
},
{
name: "Small",
height: math.unit(270, "feet")
},
{
name: "Macro",
height: math.unit(2300, "feet")
},
{
name: "Mega Macro",
height: math.unit(1100, "miles")
},
{
name: "Giga Macro",
height: math.unit(1.1e6, "miles")
},
]
))

characterMakers.push(() => makeCharacter(
{ name: "Jessile", species: ["articuno"], tags: ["anthro"] },
{
front: {
height: math.unit(50, "feet"),
name: "Front",
image: {
source: "./media/characters/jessile/front.svg",
extra: 517/464,
bottom: 12/529
}
},
},
[
{
name: "Normal",
height: math.unit(50, "feet"),
default: true
},
{
name: "Small",
height: math.unit(2000, "feet")
},
{
name: "Macro",
height: math.unit(25000, "feet")
},
{
name: "Mega Macro",
height: math.unit(40000, "miles")
},
{
name: "Giga Macro",
height: math.unit(180e6, "miles")
},
]
))

characterMakers.push(() => makeCharacter(
{ name: "Annalei", species: ["leavanny"], tags: ["anthro"] },
{
front: {
height: math.unit(6, "feet"),
name: "Front",
image: {
source: "./media/characters/annalei/front.svg",
extra: 516/442,
bottom: 20/536
}
},
},
[
{
name: "Normal",
height: math.unit(7, "feet"),
default: true
},
{
name: "Small",
height: math.unit(140, "feet")
},
{
name: "Macro",
height: math.unit(1900, "feet")
},
{
name: "Mega Macro",
height: math.unit(750, "miles")
},
{
name: "Giga Macro",
height: math.unit(950000, "miles")
},
]
))

//characters

function makeCharacters() {


Loading…
Cancel
Save