Lots of changes...

This commit is contained in:
Dazed 2023-08-18 15:41:39 -05:00
parent f4fb0c9b8f
commit 1b726c8005
11 changed files with 115 additions and 112 deletions

View file

@ -24934,7 +24934,7 @@
{
"id": 919,
"atypeId": 0,
"description": "I feel pleasure in being seen my 'private parts'. The\ndialogue changes during the 'spread open' scene.",
"description": "I feel pleasure in my pussy being seen. The\ndialogue changes during the 'spread open' scene.",
"etypeId": 2,
"traits": [
{

View file

@ -5737,7 +5737,7 @@
"type": 1,
"variance": 0
},
"description": "Pass through the enemy and advance 4 squares, dealing\ndamage to the enemies passed through.",
"description": "Pass through the enemy and advance 4 squares, dealing damage to all.",
"effects": [],
"hitType": 0,
"iconIndex": 82,

BIN
img.7z

Binary file not shown.

View file

@ -256,9 +256,9 @@ var Nore;
this.refresh();
};
Window_KigaeCommand.prototype.makeCommandList = function () {
this.addCommand('コスチューム', 'cos', true, null);
this.addCommand('表情', 'face', true, null);
this.addCommand('確定', 'ok', this._canOk, null);
this.addCommand('Costume', 'cos', true, null);
this.addCommand('Face', 'face', true, null);
this.addCommand('Confirm', 'ok', this._canOk, null);
};
return Window_KigaeCommand;
}(Window_Command));

View file

@ -326,12 +326,12 @@ var Nore;
this.contents.fontSize = 32;
this.changeTextColor(ColorManager.systemColor());
this.drawIcon(2003, 260, 20);
this.drawText('妊娠判定', 0, 20, this.innerWidth, 'center');
this.drawText('Pregnacy', 0, 20, this.innerWidth, 'center');
this.contents.fontSize = 16;
var rate = sikyu.calcTotalNinshinRate();
this.changeTextColor(ColorManager.normalColor());
// this.drawText('妊娠確率 %1'.format(rate), 0, 90, this.innerWidth, 'center');
this.drawText('妊娠確率 %1'.format(rate), 42, 120, this.innerWidth, 'left');
this.drawText('Conception Chance %1'.format(rate), 42, 120, this.innerWidth, 'left');
this.changeTextColor(ColorManager.crisisColor());
this.drawAlwaysNinshin(160, 120);
this.changeTextColor(ColorManager.normalColor());
@ -349,13 +349,13 @@ var Nore;
if (!$gameActors.mainActor().sikyu().isAlwaysNinshin()) {
return;
}
this.drawText('(子宝のお守りの効果)', x, y, this.innerWidth, 'left');
this.drawText('(Childbirth Amulet Effect)', x, y, this.innerWidth, 'left');
};
Window_NinshinCheck.prototype.drawSikyu = function (x, y) {
//this.drawIcon(2026, x - 36, y);
this.contents.fontSize = 20;
this.changeTextColor(ColorManager.systemColor());
this.drawText('子宮内の精液', x, y, 200, 'left');
this.drawText('Semen in Womb', x, y, 200, 'left');
this.changeTextColor(ColorManager.normalColor());
var actor = $gameActors.mainActor();
y += 40;
@ -393,7 +393,7 @@ var Nore;
Window_NinshinCheck.prototype.drawResult = function () {
var text;
if (this._isNinshin) {
text = '妊娠しました';
text = 'Pregnant';
this.changeTextColor(ColorManager.deathColor());
var y = this._taneoyaIndex * this.lineHeight() + 290;
//this.setCursorRect(100, y, 380, this.lineHeight());
@ -401,7 +401,7 @@ var Nore;
this.showTaneoya();
}
else {
text = 'セーフ';
text = 'Safe';
this.changeTextColor(ColorManager.crisisColor());
}
this.contents.fontSize = 35;

View file

@ -63,7 +63,7 @@ Window_Options.prototype.statusText = function (index) {
case 1:
return 'A(Movement)';
case 2:
return 'ctrl';
return 'Ctrl';
}
}
return _Window_Options_prototype_statusText.call(this, index);

View file

@ -1018,13 +1018,13 @@ var Nore;
if (item.realItem().meta['weapon']) {
var lv = parseInt(item.realItem().meta['lv']);
if (lv > $gameParty.maxStartingWeaponLv()) {
desc += '\n\\C[2]転送装置のLVが足りないため、この武器はもちこめません';
desc += '\n\\C[2]This weapon cannot be carried because the LV is not sufficient.';
}
}
if (item.realItem().meta['armor']) {
var lv = parseInt(item.realItem().meta['lv']);
if (lv > $gameParty.maxStartingArmorLv()) {
desc += '\n\\C[2]転送装置のLVが足りないため、この防具はもちこめません';
desc += '\n\\C[2]This armor cannot be carried because the LV is not sufficient.';
}
}
this.setText(desc);

View file

@ -535,12 +535,12 @@ var Nore;
this.changeTextColor(ColorManager.normalColor());
var rect = this.itemLineRect(index);
this.contents.fontSize = 18;
var text = item.day + 'Day';
var text = 'D' + item.day;
if (item.morning) {
text += 'Morning';
text += ' 🌑︎';
}
else if (item.night) {
text += 'Night';
text += ' ☽︎';
}
this.drawText(text, rect.x, rect.y, rect.width, 'left');
this.contents.fontSize = 24;
@ -686,7 +686,7 @@ var Nore;
var width2;
var actorName = $gameActors.mainActor().name();
if (result.isClear()) {
var base1 = '%1 at %2 Results:';
var base1 = '%1 at %2\\C[0] Results:';
text1 = base1.format('\\C[6]' + actorName + '\\C[0]', '\\C[2]' + dungeonName);
text2 = this.getClearText(result);
width1 = this.textWidth(base1.format(actorName, dungeonName));
@ -766,7 +766,7 @@ var Nore;
};
Window_Result.prototype.resetFontSettings = function () {
this.contents.fontFace = $gameSystem.mainFontFace();
this.contents.fontSize = 22;
this.contents.fontSize = 16;
this.resetTextColor();
};
Window_Result.prototype.drawDefeatText = function (result, x, y) {
@ -1928,13 +1928,13 @@ var DungeonResult = /** @class */ (function (_super) {
});
DungeonResult.prototype.title = function () {
if (this.isClear()) {
return this.dungeonName() + '(クリア)';
return this.dungeonName() + ' (Cleared)';
}
else if (this.isRope()) {
return this.dungeonName() + '(撤退)';
return this.dungeonName() + ' (Withdrew)';
}
else {
return this.dungeonName() + '(敗北)';
return this.dungeonName() + ' (Defeated)';
}
};
DungeonResult.prototype.dungeonName = function () {

View file

@ -44,7 +44,8 @@ var Nore;
Window_Help.prototype.setItem = function (item) {
if (item && item.meta['skill']) {
var skill = $dataSkills[parseInt(item.meta['skill'])];
this.setText('\\C[6]' + skill.name + '\\C[16] 消費MP:' + '\\C[0]' + skill.mpCost + '\n' + skill.description);
this.fittingHeight(3)
this.setText('\\C[6]' + skill.name + '\\C[16] MP Cost: ' + '\\C[0]' + skill.mpCost + '\n' + skill.description);
}
else {
_Window_Help_prototype_setItem.call(this, item);
@ -165,9 +166,9 @@ var Nore;
SoundManager.playOk();
this._upgradeWindow.deactivate();
var item = this._upgradeWindow.selectedItem();
var text = item.name + 'を選択しますか?';
var text = 'Select ' + item.name + '?';
if (item.meta['reset']) {
var texts = ['ポイントを振り直します。', 'よろしいですか?'];
var texts = ['Reset Points?', 'Confirm?'];
this._confirmWindow.setTexts(texts);
}
else {

View file

@ -60,79 +60,81 @@ var ERO_REACTION_MAP = {
フェラ_4_2: { desc: 'Karen: "Uhh! Even though I hate it!"', face: 17 },
フェラ_4_3: { desc: 'Karen: "Aahh... My mouth is being violated..."', face: 19 },
};
var ERO_TITLES = {
1: 'オーガに敗北',
53: 'オーガに再度敗北',
824: 'オーガの子を出産',
3: '宿屋でフェラ',
38: '宿屋で再度フェラ',
34: '宿屋の主人のお酌',
834: '宿屋の主人のお酌、再び',
37: '宿屋の主人のお酌',
51: '宿屋の主人のお酌',
5: ' ',
98: '出産',
7: 'アナル調教(魔術師)',
4: '山賊のアジト(敗北)',
44: 'アジトで強制出産',
45: '山賊による種付け',
24: '公開セックス(山賊)',
27: '山賊にまた敗れて…',
8: '孕まされた挙げ句晒し者',
23: '性奴隷オークション',
9: 'ゴブリンの巣穴(敗北)',
2: 'ゴブリンに再び敗北',
25: 'ゴブリンの孕み袋',
47: 'ゴブリンの孕み袋',
26: 'ゴブリンによる種付け',
46: 'ゴブリンの孕み袋',
831: '荷物運びのバイト',
11: '売春宿でセックス',
511: '売春宿でセックス',
12: 'アナル拡張',
840: 'アナル拡張 次の段階',
841: 'アナル拡張 最終段階',
842: 'アナル拡張訓練',
14: '精液便所のバイト',
15: 'メイヴィス調教1回目',
13: 'メイヴィス調教2回目',
19: 'メイヴィス調教3回目',
49: 'メイヴィス調教4回目',
16: 'マークさんとのエッチ',
42: 'マークさんとまたエッチ',
43: 'マークさんとまたエッチ',
838: '妊娠中にマークさんとエッチ',
17: 'ブタによる種付け',
18: '娼館で初H',
21: 'ベルナの森(クリア)',
28: '娼館で騎乗位H',
41: '娼館で中出しH',
29: ' ',
30: '浮浪者の家でH',
32: '浮浪者の家でH回目',
31: '浮浪者の家で過ごす日々',
33: '教会で神父にフェラ',
39: '教会で神父とエッチ',
22: '教会で神父とエッチ',
35: ' ',
36: 'コレットさんとセックス',
538: '宿屋でフェラ',
99: 'ボテ腹で神父とエッチ',
48: '公衆便所のバイト',
851: '酒場でバイト',
850: ' ',
853: ' ',
202: 'テオくんにフェラ',
206: 'テオくんにフェラ',
203: 'テオくんとセックス',
204: 'テオくんと騎乗位',
829: '3人で順番に',
205: 'テオくんと後背位',
209: 'テオくんとボテ腹正常位',
301: ' ',
302: ' ',
303: ' ',
1: 'Defeat by an Ogre',
53: 'Defeat by an Ogre again',
824: 'Giving birth to an Ogre baby',
3: 'Giving a Blowjob at the Inn',
38: 'Giving a Blowjob at the Inn again',
34: 'Getting served by the Innkeeper',
834: 'Getting served by the Innkeeper again',
37: 'Getting served by the Innkeeper',
51: 'Getting served by the Innkeeper',
5: ' ',
98: 'Giving Birth',
7: 'Anal training (Magician)',
4: 'Defeat in the Bandits\' Hideout',
44: 'Forced childbirth in the Hideout',
45: 'Impregnation by Bandits',
24: 'Public Sex (with Bandits)',
27: 'Defeat by Bandits again...',
8: 'Impregnated and Exposed',
23: 'Sex Slave Auction',
9: 'Defeat in the Goblin\'s Den',
2: 'Defeat by Goblins again',
25: 'Impregnated by Goblins',
47: 'Impregnated by Goblins',
26: 'Impregnation by Goblins',
46: 'Impregnated by Goblins',
831: 'Part-Time Job as a Porter',
11: 'Sex at the Brothel',
511: 'Sex at the Brothel',
12: 'Anal Stretching',
840: 'Next stage of Anal Stretching',
841: 'Final stage of Anal Stretching',
842: 'Anal Stretching Training',
14: 'Seminal Toilet part-time job',
15: 'Mavis Training first time',
13: 'Mavis Training second time',
19: 'Mavis Training third time',
49: 'Mavis Training fourth time',
16: 'Sex with Mark-san',
42: 'Sex with Mark-san again',
43: 'Sex with Mark-san again',
838: 'Sex with Mark-san during pregnancy',
17: 'Impregnation by a Boar',
18: 'First time at the Brothel',
21: 'Berna Forest (Clear)',
28: 'Cowgirl position at the Brothel',
41: 'Creampie at the Brothel',
29: ' ',
30: 'Sex at the Homeless Shelter',
32: 'Sex at the Homeless Shelter again',
31: 'Days spent at the Homeless Shelter',
33: 'Giving a Blowjob to a Priest at the Church',
39: 'Sex with a Priest at the Church',
22: 'Sex with a Priest at the Church',
35: ' ',
36: 'Sex with Colette-san',
538: 'Giving a Blowjob at the Inn',
99: 'Sex with a Pregnant Belly Priest',
48: 'Public Toilet part-time job',
851: 'Worked part-time at a bar.',
850: ' ',
853: ' ',
202: 'Giving a Blowjob to Theo-kun',
206: 'Giving a Blowjob to Theo-kun',
203: 'Sex with Theo-kun',
204: 'Cowgirl position with Theo-kun',
829: 'Threesome with all three',
205: 'Doggy style with Theo-kun',
209: 'Missionary with a Pregnant Belly with Theo-kun',
301: ' ',
302: ' ',
303: ' ',
};
var ERO_TEXTS = {
1: "After being defeated, I was taken to the Ogre's lair.\nThere, I was stripped of my belongings and forced\nto consume large amounts of semen.\nAfterwards, I managed to find an opportunity \nand escape using a magic rope.",
53: "After another defeat, I was taken to the Ogre's lair.\nThere, I was aggressively violated and had semen injected into my uterus multiple times...",

View file

@ -23737,7 +23737,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Geez, what the hell are you doing? I can't wait\nany longer for my thing (penis)"
"Geez, what the hell are you doing? My penis \ncan't wait any longer."
]
},
{
@ -24564,7 +24564,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Hyamete... Hyametekurawai...!"
"ひゃめて……ひゃめてくらはい……!"
]
},
{
@ -98895,7 +98895,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Nfufufu, this is that Karen's omanko (vulgar term\nfor female genitalia)..."
"Nfufufu, this is that Karen's omanko..."
]
},
{
@ -99201,7 +99201,7 @@
"code": 401,
"indent": 0,
"parameters": [
"And yet... your omanko (vulgar term for female\ngenitalia) is so cute. I couldn't have expected\nthis from someone who behaves like a demon god."
"And yet... your pussy is so cute. I couldn't have expected\nthis from someone who behaves like a demon god."
]
},
{
@ -99361,7 +99361,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Ah... I even dreamed about getting back at Karen's\nomanko (vulgar term for female genitalia)\nsomeday..."
"Ah... I even dreamed about getting back at Karen's\npussy someday..."
]
},
{
@ -243846,7 +243846,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Many women have fallen for my chinpoko. Colette is\nalready head over heels for it."
"Many women have fallen for my cock. Colette is\nalready head over heels for it."
]
},
{
@ -414147,7 +414147,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Oh, yeah! This feels amazing too! Eris' [vulgar\nterm for female genitalia] feels too good!"
"Male: Oh, yeah! This feels amazing too!\nEris's pussy feels so good!"
]
},
{
@ -592130,7 +592130,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Now, Colette-chan. Let's make you feel good with\nmy chinpoko too."
"Now, Colette-chan. Let's make you feel good with\nmy cock too."
]
},
{
@ -592193,7 +592193,7 @@
"code": 401,
"indent": 0,
"parameters": [
"I have confidence in my chinpoko. I can make you\nfeel good every day."
"I have confidence in my cock. I can make you\nfeel good every day."
]
},
{
@ -669083,7 +669083,7 @@
"code": 401,
"indent": 1,
"parameters": [
"Well then, I'll do my best to not die."
"Well then, do your best to not die."
]
},
{
@ -670798,7 +670798,7 @@
"code": 401,
"indent": 1,
"parameters": [
"Well then, I'll do my best to not die and come\nback, okay?"
"Well then, Do your best to not die and come\nback, okay?"
]
},
{
@ -683870,7 +683870,7 @@
"code": 401,
"indent": 0,
"parameters": [
"By challenging the dungeon, I gained \\C[2]\\V[39]'s\nexperience points!"
"By challenging the dungeon, I gained \\C[2]\\V[39]\nexperience points!"
]
},
{
@ -860472,7 +860472,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Reported the quest to the guild master! Earned\nG\\V[20]!"
"Reported the quest to the guild master! Earned\n \\V[20]G!"
]
},
{
@ -871231,7 +871231,7 @@
"code": 401,
"indent": 0,
"parameters": [
"Reported the quest to the guild master! Earned\nG\\V[20]!"
"Reported the quest to the guild master! Earned\n\\V[20]!G"
]
},
{
@ -907569,7 +907569,7 @@
"code": 401,
"indent": 0,
"parameters": [
"How about it? Are you feeling like trying to suck\nmy chinpoko?"
"How about it? Are you feeling like trying to suck\nmy cock?"
]
},
{
@ -907670,7 +907670,7 @@
"code": 401,
"indent": 1,
"parameters": [
"Understood. I will gladly suck Andrei's\n'chinpoko'."
"Understood. I will gladly suck Andrei's\n'cock'."
]
},
{