소스 검색

Fixed Geta being unable to eat the player; added gore setting for Geta

fight
tags/v0.2.8
Fen Dweller 7 년 전
부모
커밋
8345b1045b
3개의 변경된 파일15개의 추가작업 그리고 5개의 파일을 삭제
  1. +7
    -2
      customs.js
  2. +5
    -1
      feast.html
  3. +3
    -2
      vore.js

+ 7
- 2
customs.js 파일 보기

@@ -59,8 +59,8 @@ function getaGrab(attacker) {
return attacker.description() + " leans down and snatches you up, stuffing you into his maw.";
},
conditions: [
function(prefs) {
return prefs.prey;
function(attacker, defender) {
return defender.prefs.prey;
}
],
requirements: [
@@ -167,6 +167,11 @@ function getaStompFinish(attacker) {
return defender.stamina <= 0;
}
],
conditions: [
function(attacker, defender) {
return defender.prefs.gore;
}
],
priority: 3,
};
}


+ 5
- 1
feast.html 파일 보기

@@ -25,7 +25,7 @@
<div id="game">
<div id="game-and-stats">
<div id="log">
Welcome to Feast v0.1.0
Welcome to Feast v0.1.1
</div>
<div id="stats">
<div class="stat-line" id="time">Time: to file a bug report, because you shouldn't see this!</div>
@@ -151,6 +151,10 @@
<li>
<label for="character-prefs-scat">Disposal/scat</label>
<input type="checkbox" id="character-prefs-scat" name="prefs-scat"/>
<li>
<li>
<label for="character-prefs-gore">Gore</label>
<input type="checkbox" id="character-prefs-gore" name="prefs-gore"/>
<li>
<button type="button" id="start-button">Start</button>
</li>


+ 3
- 2
vore.js 파일 보기

@@ -41,8 +41,9 @@ function Creature(name = "Creature", str=10, dex=10, con=10) {
this.prefs = {
prey: true,
scat: true,
analVore: true
}
analVore: true,
gore: true
};
}

function Player(name = "Player") {


불러오는 중...
취소
저장