diff --git a/.vscode/snippets.code-snippets b/.vscode/snippets.code-snippets
index cb68e837..b6ca5e54 100644
--- a/.vscode/snippets.code-snippets
+++ b/.vscode/snippets.code-snippets
@@ -83,6 +83,17 @@
],
"description": "Size"
},
+ "Default Size": {
+ "prefix": "default-size",
+ "body": [
+ "{",
+ " name: \"$1\",",
+ " height: math.unit($2, \"$3\"),",
+ " default: true",
+ "},"
+ ],
+ "description": "Default size"
+ },
"Species": {
"prefix": "species",
"body": [
diff --git a/media/attribution.js b/media/attribution.js
index c61a3190..5540c16a 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -10936,6 +10936,19 @@ const attributionData = {
"furbait17"
]
},
+ {
+ prefix: "./media/characters/razz/",
+ files: [
+ { name: "anthro.svg", source: "https://www.furaffinity.net/view/35623371/" },
+ { name: "feral.svg", source: "https://www.furaffinity.net/view/35623371/" },
+ ],
+ authors: [
+ "alphagodith"
+ ],
+ owners: [
+ "immaturecontent"
+ ]
+ },
//characters
{
prefix: "./media/dildos/chance/",
@@ -15080,6 +15093,14 @@ const attributionData = {
"name": "furbait17",
"url": "https://www.furaffinity.net/user/furbait17/",
},
+ "immaturecontent": {
+ "name": "ImmatureContent",
+ "url": "https://www.furaffinity.net/user/immaturecontent/",
+ },
+ "alphagodith": {
+ "name": "alphagodith",
+ "url": "https://www.furaffinity.net/user/alphagodith/",
+ },
}
}
diff --git a/media/characters/razz/anthro.svg b/media/characters/razz/anthro.svg
new file mode 100644
index 00000000..b93cb7cb
--- /dev/null
+++ b/media/characters/razz/anthro.svg
@@ -0,0 +1,930 @@
+
+
+
diff --git a/media/characters/razz/feral.svg b/media/characters/razz/feral.svg
new file mode 100644
index 00000000..c129d690
--- /dev/null
+++ b/media/characters/razz/feral.svg
@@ -0,0 +1,1105 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index a91eb4aa..b7db7e30 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -1314,6 +1314,11 @@ const speciesData = {
name: "Meowth",
parents: ["cat", "pokemon"]
},
+ "pavodragon": {
+ name: "Pavodragon",
+ parents: ["dragon"]
+ },
+
}
//species
@@ -27542,6 +27547,39 @@ characterMakers.push(() => makeCharacter(
]
))
+characterMakers.push(() => makeCharacter(
+ { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
+ {
+ anthro: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(150, "lb"),
+ name: "Anthro",
+ image: {
+ source: "./media/characters/razz/anthro.svg",
+ extra: 1437/1343,
+ bottom: 48/1485
+ }
+ },
+ feral: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(150, "lb"),
+ name: "Feral",
+ image: {
+ source: "./media/characters/razz/feral.svg",
+ extra: 2569/1385,
+ bottom: 95/2664
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(6, "feet"),
+ default: true
+ },
+ ]
+))
+
//characters
function makeCharacters() {