ソースを参照

Moved warnings to features.js

tags/v1.0.0
Fen Dweller 6年前
コミット
eea32a7e68
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: E80B35A6F11C3656
2個のファイルの変更6行の追加10行の削除
  1. +6
    -0
      features.js
  2. +0
    -10
      game.js

+ 6
- 0
features.js ファイルの表示

@@ -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 ファイルの表示

@@ -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");


読み込み中…
キャンセル
保存