Merge branch 'main' into 'main'

reworded works to better accomodate their shared confirmation script with training

See merge request dazed-translations/dead-end-colosseum!10
This commit is contained in:
DazedAnon 2026-01-23 04:27:42 +00:00
commit 7411dd0e05
2 changed files with 8 additions and 8 deletions

View file

@ -721,7 +721,7 @@ Game_Interpreter.prototype.Adv_L2Work_Update = function (_訓練Flg) {
this.SetPictFIn(PN_tCkWin, AdvPic + "KakuninWin", 0, 0, 0, 0, 15);
this.MovePict(PN_AdvSell, YNPos[0]._x, YNPos[0]._y, 5);
if (_Sel_WorkData != undefined) {
let _仕事Txt = "Do " + _Sel_WorkData._Name + " Work?";
let _仕事Txt = "Do " + _Sel_WorkData._Name + "?";
this.SetPicStrC(PN_tCkTxt + 0, _仕事Txt, 30, 710, 245, 0);
this.MovePict(PN_tCkTxt + 0, true, true, 5);
let _成功確率 = _Sel_WorkData._成功確立;

View file

@ -47,28 +47,28 @@ class _CSkill {
}
let ADV_WorkData = [];
ADV_WorkData.push(new _WorkData(
"Work1", "Bouncer", "Work as a bouncer at the rowdy Silver Fox Tavern.", 100, -10, -20,
"Work1", "Bouncing", "Work as a bouncer at the rowdy Silver Fox Tavern.", 100, -10, -20,
[new _CSkill(_St.体力, 10)]));
ADV_WorkData.push(new _WorkData(
"Work2", "Hunting", "Hunt monsters near town to maintain public safety.", 100, -10, -20,
[new _CSkill(_St.攻撃, 10)]));
ADV_WorkData.push(new _WorkData(
"Work3", "Escort", "Escort bank employees.", 100, -10, -20,
"Work3", "Escorting", "Escort bank employees.", 100, -10, -20,
[new _CSkill(_St.防御, 10)]));
ADV_WorkData.push(new _WorkData(
"Work4", "Sniping", "Snipe wanted criminals and the like.", 100, -10, -20,
[new _CSkill(_St.命中, 10)]));
ADV_WorkData.push(new _WorkData(
"Work5", "Courier", "Transport pharmaceutical ingredients. Legal.", 100, -10, -20,
"Work5", "Couriering", "Transport pharmaceutical ingredients. Legal.", 100, -10, -20,
[new _CSkill(_St.回避, 10)]));
ADV_WorkData.push(new _WorkData(
"Work6", "Scout", "Recruit girls to work at the Silver Fox Tavern.", 100, -10, -20,
"Work6", "Scouting", "Recruit girls to work at the Silver Fox Tavern.", 100, -10, -20,
[new _CSkill(_St.直感, 10)]));
ADV_WorkData.push(new _WorkData(
"Work7", "Tout", "Attract customers to the Silver Fox Tavern.", 200, -10, -40,
"Work7", "Touting", "Attract customers to the Silver Fox Tavern.", 200, -10, -40,
[]));
ADV_WorkData.push(new _WorkData(
"Work8", "Hostess", "Serve customers while enduring harassment.", 400, -10, -50,
"Work8", "Hostessing", "Serve customers while enduring harassment.", 400, -10, -50,
[]));
ADV_WorkData.push(new _WorkData(
"Work9", "Prostitution", "Secretly sell your body to customers.", 1000, -10, -60,
@ -96,7 +96,7 @@ ADV_KunrenData.push(new _WorkData(
"Kunren2", "Camp Training", "Practice setting up camp tents. Exhausting.", -1000, -40, -20,
[new _CSkill(_St.体力, 20), new _CSkill(_St.直感, 20)]));
ADV_KunrenData.push(new _WorkData(
"Kunren3", "Shooting Training", "Improve accuracy with clay shooting. Difficult.", -1000, -40, -20,
"Kunren3", "Target Practice", "Improve accuracy with clay shooting. Difficult.", -1000, -40, -20,
[new _CSkill(_St.攻撃, 20), new _CSkill(_St.命中, 20)]));
Game_Interpreter.prototype.KunrenDataGet = function(_BtnStr){
for (let i = 0; i <= ADV_KunrenData.length - 1; i++) {