| @@ -630,8 +630,6 @@ function updateRatios() { | |||||
| const R2 = math.subtract(math.subtract(R, prevSelectedEntity.currentView.height), math.unit(y2, "meters")) | const R2 = math.subtract(math.subtract(R, prevSelectedEntity.currentView.height), math.unit(y2, "meters")) | ||||
| const h = math.add(selectedEntity.currentView.height, math.unit(y1, "meters")) | const h = math.add(selectedEntity.currentView.height, math.unit(y1, "meters")) | ||||
| console.log(R, R2, h) | |||||
| const first = math.pow(math.add(R, h), 2) | const first = math.pow(math.add(R, h), 2) | ||||
| const second = math.pow(R2, 2) | const second = math.pow(R2, 2) | ||||
| @@ -18589,6 +18589,18 @@ const attributionData = { | |||||
| "not-dead" | "not-dead" | ||||
| ] | ] | ||||
| }, | }, | ||||
| { | |||||
| prefix: "./media/characters/siz/", | |||||
| files: [ | |||||
| { name: "back.svg", source: "https://twitter.com/Platinumeggsart/status/1453500050500464645?s=20", nsfw: true } | |||||
| ], | |||||
| authors: [ | |||||
| "plat" | |||||
| ], | |||||
| owners: [ | |||||
| "filthyizzy" | |||||
| ] | |||||
| }, | |||||
| //characters | //characters | ||||
| { | { | ||||
| prefix: "./media/fiction/halo/halo/", | prefix: "./media/fiction/halo/halo/", | ||||
| @@ -25670,6 +25682,10 @@ const attributionData = { | |||||
| "name": "NOT DEAD", | "name": "NOT DEAD", | ||||
| "url": "https://notdeadlinks.carrd.co/" | "url": "https://notdeadlinks.carrd.co/" | ||||
| }, | }, | ||||
| "filthyizzy": { | |||||
| "name": "Izzy", | |||||
| "url": "https://twitter.com/filthyizzy" | |||||
| }, | |||||
| } | } | ||||
| } | } | ||||
| @@ -1930,6 +1930,10 @@ const speciesData = { | |||||
| name: "Viper", | name: "Viper", | ||||
| parents: ["snake"] | parents: ["snake"] | ||||
| }, | }, | ||||
| "cinderace": { | |||||
| name: "Cinderace", | |||||
| parents: ["pokemon", "rabbit"] | |||||
| }, | |||||
| } | } | ||||
| //species | //species | ||||
| @@ -50303,6 +50307,48 @@ characterMakers.push(() => makeCharacter( | |||||
| ] | ] | ||||
| )) | )) | ||||
| characterMakers.push(() => makeCharacter( | |||||
| { name: "Siz", species: ["cinderace"], tags: ["anthro"] }, | |||||
| { | |||||
| back: { | |||||
| height: math.unit(6, "feet"), | |||||
| weight: math.unit(350, "lb"), | |||||
| name: "Back", | |||||
| image: { | |||||
| source: "./media/characters/siz/back.svg", | |||||
| extra: 1449/1274, | |||||
| bottom: 13/1462 | |||||
| } | |||||
| }, | |||||
| }, | |||||
| [ | |||||
| { | |||||
| name: "Over-Overcompressed", | |||||
| height: math.unit(8, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Overcompressed", | |||||
| height: math.unit(32, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Compressed", | |||||
| height: math.unit(128, "feet"), | |||||
| default: true | |||||
| }, | |||||
| { | |||||
| name: "Half-Compressed", | |||||
| height: math.unit(512, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Quarter-Compressed", | |||||
| height: math.unit(2048, "feet") | |||||
| }, | |||||
| { | |||||
| name: "Uncompressed?", | |||||
| height: math.unit(8192, "feet") | |||||
| }, | |||||
| ] | |||||
| )) | |||||
| //characters | //characters | ||||
| function makeCharacters() { | function makeCharacters() { | ||||