Ver código fonte

Moved warnings to features.js

tags/v1.0.0
Fen Dweller 6 anos atrás
pai
commit
eea32a7e68
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: E80B35A6F11C3656
2 arquivos alterados com 6 adições e 10 exclusões
  1. +6
    -0
      features.js
  2. +0
    -10
      game.js

+ 6
- 0
features.js Ver arquivo

@@ -1219,6 +1219,7 @@ options = [
"id": "lactationEnabled",
"type": "subcategory",
"buttons": ["breast_milk"],
"warning": "Lactation is enabled",
"entries":
[
{
@@ -1291,6 +1292,7 @@ options = [
"name": "Stench",
"id": "stenchEnabled",
"optional": true,
"warning": "Stench is enabled",
"entries":
[
{
@@ -1323,6 +1325,7 @@ options = [
"name": "Gas",
"id": "gasEnabled",
"optional": true,
"warning": "Gas is enabled",
"entries":
[
{
@@ -1368,6 +1371,7 @@ options = [
"id": "soulVoreEnabled",
"optional": true,
"buttons": ["soul_vore", "soul_absorb_paw"],
"warning": "Soul vore enabled",
"entries":
[
{
@@ -1409,6 +1413,7 @@ options = [
"id": "pissEnabled",
"optional": true,
"buttons": ["piss"],
"warning": "Watersports enabled",
"entries":
[
{
@@ -1482,6 +1487,7 @@ options = [
"id": "scatEnabled",
"optional": true,
"buttons": ["scat"],
"warning": "Scat is enabled",
"entries":
[
{


+ 0
- 10
game.js Ver arquivo

@@ -4570,10 +4570,6 @@ function startGame(e) {
enable_growth_part("body");
enable_growth_part("ass");

if (macro.brutality > 0) {
warns.push("Fatal actions are enabled.");
}

if (macro.droolEnabled) {
enable_victim("drool","Drenched in drool");
}
@@ -4697,7 +4693,6 @@ function startGame(e) {
enable_growth_part("breasts");

if (macro.lactationEnabled) {
warns.push("Lactation is enabled.");
enable_victim("milk-flood","Flooded by milk");

enable_stat("milk");
@@ -4719,7 +4714,6 @@ function startGame(e) {
}

if (macro.soulVoreEnabled) {
warns.push("Soul vore is enabled.");
enable_victim("soul-digest","Souls digested");
enable_victim("soul-paw","Souls absorbed underfoot");

@@ -4727,13 +4721,11 @@ function startGame(e) {
}

if (macro.stenchEnabled) {
warns.push("Stench is enabled.");
enable_victim("paw-stench","Smothered in paw stench");
enable_victim("ass-stench","Smothered in rump stench");
}

if (macro.gasEnabled) {
warns.push("Gas is enabled.");
enable_stat("gas");
if (macro.belchEnabled) {
enable_panel("waste");
@@ -4755,7 +4747,6 @@ function startGame(e) {
}

if (macro.pissEnabled) {
warns.push("Watersports are enabled.");
enable_panel("waste");

enable_stat("piss");
@@ -4772,7 +4763,6 @@ function startGame(e) {
}

if (macro.scatEnabled) {
warns.push("Scat is enabled.");
enable_panel("waste");

enable_stat("scat");


Carregando…
Cancelar
Salvar