Browse Source

Add Amelie (pending author info) and Valence

master
Fen Dweller 3 years ago
parent
commit
a755b96005
4 changed files with 4480 additions and 1 deletions
  1. +32
    -0
      media/attribution.js
  2. +2873
    -0
      media/characters/amelie/front.svg
  3. +1516
    -0
      media/characters/valence/front.svg
  4. +59
    -1
      presets/characters.js

+ 32
- 0
media/attribution.js View File

@@ -22174,6 +22174,30 @@ const attributionData = {
"infernalspecter"
]
},
{
prefix: "./media/characters/amelie/",
files: [
{ name: "front.svg", source: null }
],
authors: [
],
owners: [
"myriad"
]
},
{
prefix: "./media/characters/valence/",
files: [
{ name: "front.svg", source: "https://twitter.com/CamuuShamuu/status/1447966538674417665" }
],
authors: [
"camuushamuu"
],
owners: [
"valencebutbig"
]
},
//characters
{
prefix: "./media/fiction/halo/halo/",
@@ -30692,6 +30716,14 @@ const attributionData = {
"name": "Buttsteak",
"url": "https://twitter.com/itsaButtsteak"
},
"camuushamuu": {
"name": "CamuuShamuu",
"url": "https://twitter.com/CamuuShamuu/"
},
"valencebutbig": {
"name": "Valence",
"url": "https://twitter.com/valencebutbig"
},
}
}



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


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


+ 59
- 1
presets/characters.js View File

@@ -2343,7 +2343,19 @@ const speciesData = {
},
"skullwolf": {
name: "Skullwolf",
parents: ["wolf"]
parents: ["wolf", "skullmonster"]
},
"skulldragon": {
name: "Skulldragon",
parents: ["dragon", "skullmonster"]
},
"skullmonster": {
name: "Skullmonster",
parents: ["monster"]
},
"ferrin": {
name: "Ferrin",
parents: ["dragon"]
},
}

@@ -63922,6 +63934,52 @@ characterMakers.push(() => makeCharacter(
}
))

characterMakers.push(() => makeCharacter(
{ name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
{
front: {
height: math.unit(190, "cm"),
weight: math.unit(110, "kg"),
name: "Front",
image: {
source: "./media/characters/amelie/front.svg",
extra: 530/442,
bottom: 35/565
}
},
},
[
{
name: "Normal",
height: math.unit(190, "cm"),
default: true
},
]
))

characterMakers.push(() => makeCharacter(
{ name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
{
front: {
height: math.unit(21, "feet"),
weight: math.unit(30000, "lb"),
name: "Front",
image: {
source: "./media/characters/valence/front.svg",
extra: 1430/1306,
bottom: 51/1481
}
},
},
[
{
name: "Normal",
height: math.unit(21, "feet"),
default: true
},
]
))

//characters

function makeCharacters() {


Loading…
Cancel
Save