Browse Source

Add Blitz Dunkelheit

Also adds some new snippets for my use
master
Fen Dweller 4 years ago
parent
commit
b91918bcf2
5 changed files with 2283 additions and 0 deletions
  1. +23
    -0
      .vscode/snippets.code-snippets
  2. +21
    -0
      media/attribution.js
  3. +1068
    -0
      media/characters/blitz-dunkelheit/anthro-front.svg
  4. +1108
    -0
      media/characters/blitz-dunkelheit/feral-side.svg
  5. +63
    -0
      presets/characters.js

+ 23
- 0
.vscode/snippets.code-snippets View File

@@ -73,6 +73,21 @@
],
"description": "View"
},
"View (Form)": {
"prefix": "view-form",
"body": [
"${1/(-([a-z]))/${2:/upcase}/g}: {",
" height: math.unit(6, \"feet\"),",
" weight: math.unit(150, \"lb\"),",
" name: \"${1/(.*)/${1:/capitalize}/}\",",
" image: {",
" source: \"./media/characters/$2/$1.svg\"",
" }",
" form: \"$3\",",
"},"
],
"description": "View"
},
"Size": {
"prefix": "size",
"body": [
@@ -103,5 +118,13 @@
"},",
],
"description": "Species"
},
"Form": {
"prefix": "form",
"body": [
"\"$1\": {",
" name: \"${1/([^-]+)(-)?/${1:/capitalize}${2:+ }/g}\",",
"},",
]
}
}

+ 21
- 0
media/attribution.js View File

@@ -18870,6 +18870,19 @@ const attributionData = {
"goopomancer"
]
},
{
prefix: "./media/characters/blitz-dunkelheit/",
files: [
{ name: "anthro-front.svg", source: "https://www.furaffinity.net/view/40088447/" },
{ name: "feral-side.svg", source: "https://www.furaffinity.net/view/40088447/" },
],
authors: [
"solar-paragon"
],
owners: [
"term26"
]
},
//characters
{
prefix: "./media/fiction/halo/halo/",
@@ -25997,6 +26010,14 @@ const attributionData = {
"name": "Hatham",
"url": "https://www.furaffinity.net/user/hatham"
},
"term26": {
"name": "Term26",
"url": "https://www.furaffinity.net/user/term26/"
},
"solar-paragon": {
"name": "Solar-Paragon",
"url": "https://www.furaffinity.net/user/solar-paragon/"
},
}
}



+ 1068
- 0
media/characters/blitz-dunkelheit/anthro-front.svg
File diff suppressed because it is too large
View File


+ 1108
- 0
media/characters/blitz-dunkelheit/feral-side.svg
File diff suppressed because it is too large
View File


+ 63
- 0
presets/characters.js View File

@@ -51204,6 +51204,69 @@ characterMakers.push(() => makeCharacter(
}
))

characterMakers.push(() => makeCharacter(
{ name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
{
anthroFront: {
height: math.unit(8, "feet"),
weight: math.unit(300, "lb"),
name: "Front",
image: {
source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
extra: 1272/1176,
bottom: 53/1325
},
form: "anthro",
default: true
},
feralSide: {
height: math.unit(4, "feet"),
weight: math.unit(250, "lb"),
name: "Side",
image: {
source: "./media/characters/blitz-dunkelheit/feral-side.svg",
extra: 731/621,
bottom: 0/731
},
form: "feral",
default: true
},
},
[
{
name: "Regular",
height: math.unit(8, "feet"),
form: "anthro"
},
{
name: "Macro",
height: math.unit(250, "feet"),
form: "anthro",
default: true
},
{
name: "Regular",
height: math.unit(4, "feet"),
form: "feral"
},
{
name: "Macro",
height: math.unit(125, "feet"),
form: "feral",
default: true
},
],
{
"anthro": {
name: "Anthro",
default: true
},
"feral": {
name: "Feral",
},
}
))

//characters

function makeCharacters() {


Loading…
Cancel
Save