From f9652d62c8153e865906d96a4d2a81ad0e021188 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 1 Nov 2021 11:39:27 -0400 Subject: [PATCH] Remove Dildos temporarily I want to redo them and put them in Objects. I'll do that soon --- macrovision.html | 1 - macrovision.js | 1 - media/attribution.js | 18 ---------- presets/dildos.js | 81 -------------------------------------------- 4 files changed, 101 deletions(-) delete mode 100644 presets/dildos.js diff --git a/macrovision.html b/macrovision.html index d328cff6..6ebfbb1d 100644 --- a/macrovision.html +++ b/macrovision.html @@ -14,7 +14,6 @@ - diff --git a/macrovision.js b/macrovision.js index a0ff403e..2a9078e5 100644 --- a/macrovision.js +++ b/macrovision.js @@ -4176,7 +4176,6 @@ function prepareEntities() { availableEntities["characters"] = makeCharacters(); availableEntities["clothing"] = makeClothing(); availableEntities["creatures"] = makeCreatures(); - availableEntities["dildos"] = makeDildos(); availableEntities["fiction"] = makeFiction(); availableEntities["food"] = makeFood(); availableEntities["furniture"] = makeFurniture(); diff --git a/media/attribution.js b/media/attribution.js index a9b8d8bb..7bc9bfe1 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -18419,20 +18419,6 @@ const attributionData = { ] }, //characters - { - prefix: "./media/dildos/chance/", - all: "https://bad-dragon.com/products/chanceunflared", - authors: [ - "bad-dragon" - ] - }, - { - prefix: "./media/dildos/rex/", - all: "https://bad-dragon.com/products/rex", - authors: [ - "bad-dragon" - ] - }, { prefix: "./media/fiction/halo/halo/", files: [ @@ -22497,10 +22483,6 @@ const attributionData = { "name": "Pulex", "url": "https://www.furaffinity.net/user/pulex/", }, - "bad-dragon": { - "name": "Bad Dragon", - "url": "https://bad-dragon.com/", - }, "freckles": { "name": "Freckles", "url": "https://www.furaffinity.net/user/freckles", diff --git a/presets/dildos.js b/presets/dildos.js deleted file mode 100644 index 290337a1..00000000 --- a/presets/dildos.js +++ /dev/null @@ -1,81 +0,0 @@ - - -function makeDildo(name, info, sizes) { - const views = {}; - let folder = name.replace(/ /g, "-").toLowerCase() + "/"; - info.forEach(entry => { - let src = "./media/dildos/" + folder + entry[0].replace(/ /g, "-").toLowerCase() + ".svg"; - - views[entry[0]] = { - height: math.unit(entry[1], entry[2]), - image: { source: src }, - name: entry[0], - rename: true - } - }); - - return { - name: name, - constructor: () => { - const maker = makeObject( - name, - views - ); - - maker.sizes = []; - - sizes.forEach(size => { - maker.sizes.push({ - name: size[0], - height: math.unit(size[1], size[2]) - }) - }) - - maker.sizes[maker.sizes.length - 1].default = true; - - return maker; - } - } -} - - -function makeDildos() { - const results = []; - - results.push(makeDildo( - "Chance", - [ - ["Side", 17.5, "inches"], - ["Front", 17.5, "inches"], - ["Top", 7.91, "inches"], - ["Head", 2.72, "inches"] - ], - [ - ["Small", 8, "inches"], - ["Medium", 11.5, "inches"], - ["Large", 14, "inches"], - ["Extra Large", 17.5, "inches"] - ] - )) - - results.push(makeDildo( - "Rex", - [ - ["Side", 14.5, "inches"], - ["Front", 14.5, "inches"], - ["Top", 5.54, "inches"], - ["Head", 2.13, "inches"] - ], - [ - ["Mini", 6, "inches"], - ["Small", 8, "inches"], - ["Medium", 10, "inches"], - ["Large", 12, "inches"], - ["Extra Large", 14.5, "inches"] - ] - )) - - - - return results; -} \ No newline at end of file