Browse Source

Fixed previews not updating. Updated Noma

tags/v0.7.0
Fen Dweller 7 years ago
parent
commit
af75a21180
2 changed files with 33 additions and 6 deletions
  1. +2
    -0
      game.js
  2. +31
    -6
      presets.js

+ 2
- 0
game.js View File

@@ -2962,6 +2962,7 @@ function grow_lots()


function resetSettings() { function resetSettings() {
document.forms.namedItem("custom-species-form").reset(); document.forms.namedItem("custom-species-form").reset();
updateAllPreviews();
} }


function loadPreset() { function loadPreset() {
@@ -3052,6 +3053,7 @@ function loadSettings(settings = null) {
} }
} }
} }
updateAllPreviews();
} }


function add_victim_people(category, prey) { function add_victim_people(category, prey) {


+ 31
- 6
presets.js View File

@@ -181,8 +181,9 @@ let presets = [{
"baseMass": 4800, "baseMass": 4800,
"basePawArea": 2, "basePawArea": 2,
"baseHandArea": 1, "baseHandArea": 1,
"baseAssArea": 0.4,
"baseAssArea": 2,
"brutality": "1", "brutality": "1",
"victimsHuman": false,
"victimsMilitary": true, "victimsMilitary": true,
"victimsMacros": true, "victimsMacros": true,
"victimsMicros": true, "victimsMicros": true,
@@ -202,34 +203,43 @@ let presets = [{
"arousalFactor": 1, "arousalFactor": 1,
"hasTail": true, "hasTail": true,
"tailCount": 1, "tailCount": 1,
"tailType": "fluffy coon",
"tailType": "fluffy coon ",
"baseTailLength": 14, "baseTailLength": 14,
"baseTailDiameter": 4, "baseTailDiameter": 4,
"tailMaw": true, "tailMaw": true,
"tailStretchiness": 2, "tailStretchiness": 2,
"hasPouch": true,
"hasPouch": false,
"maleParts": true, "maleParts": true,
"hasSheath": true, "hasSheath": true,
"dickType": "feline", "dickType": "feline",
"baseDickLength": 4,
"baseDickDiameter": 1,
"baseDickLength": 2,
"baseDickDiameter": 0.5,
"dickStretchiness": 1, "dickStretchiness": 1,
"baseBallDiameter": 2, "baseBallDiameter": 2,
"baseCumRatio": 1, "baseCumRatio": 1,
"cumScale": 1, "cumScale": 1,
"cumStorageScale": 2,
"baseCumDigestFactor": 2,
"cumScaleWithSize": true,
"hasBreasts": false, "hasBreasts": false,
"baseBreastDiameter": 0.1, "baseBreastDiameter": 0.1,
"lactationEnabled": true, "lactationEnabled": true,
"lactationFactor": 0.25, "lactationFactor": 0.25,
"lactationScale": 1, "lactationScale": 1,
"milkStorageScale": 1,
"breastVore": true, "breastVore": true,
"breastStretchiness": 1, "breastStretchiness": 1,
"baseMilkDigestFactor": 1,
"milkScaleWithSize": false,
"femaleParts": false, "femaleParts": false,
"baseVaginaLength": 0.1, "baseVaginaLength": 0.1,
"baseVaginaWidth": 0.05, "baseVaginaWidth": 0.05,
"vaginaStretchiness": 1, "vaginaStretchiness": 1,
"baseFemcumRatio": 1, "baseFemcumRatio": 1,
"femcumScale": 1, "femcumScale": 1,
"femcumStorageScale": 1,
"baseFemcumDigestFactor": 1,
"femcumScaleWithSize": false,
"stenchEnabled": false, "stenchEnabled": false,
"basePawStenchArea": 1, "basePawStenchArea": 1,
"baseAssStenchArea": 1, "baseAssStenchArea": 1,
@@ -237,10 +247,25 @@ let presets = [{
"belchEnabled": true, "belchEnabled": true,
"fartEnabled": false, "fartEnabled": false,
"gasScale": 1, "gasScale": 1,
"gasStorageScale": 2,
"baseGasDigestFactor": 1, "baseGasDigestFactor": 1,
"gasScaleWithSize": true, "gasScaleWithSize": true,
"soulVoreEnabled": true, "soulVoreEnabled": true,
"soulVoreType": "body"
"soulVoreType": "predscape",
"pissEnabled": false,
"pissScale": 1,
"pissStorageScale": 1,
"bladderVore": false,
"baseUrethraDiameter": 0.03,
"urethraStretchiness": 5,
"basePissDigestFactor": 1,
"pissScaleWithSize": false,
"scatEnabled": false,
"baseScatDigestFactor": 1,
"scatScale": 0,
"scatStorageScale": 1,
"scatScaleWithSize": false,
"gooEnabled": true
}, },
{ {
"name": "Jaredin", "name": "Jaredin",


Loading…
Cancel
Save