-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTF_ForThis.js
46 lines (41 loc) · 1.29 KB
/
TF_ForThis.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//========================================
// TF_ForThis.js
// Version :0.0.0.0
// For : RPGツクールMZ (RPG Maker MZ)
// -----------------------------------------------
// Copyright : Tobishima-Factory 2021
// Website : http://tonbi.jp
//
// This software is released under the MIT License.
// http://opensource.org/licenses/mit-license.php
//========================================
/*:ja
* @target MZ
* @plugindesc このゲーム「」専用のプラグイン。
* @author とんび﹫鳶嶋工房(tonbi.jp)
* @url http://tonbi.jp/
* @base PluginCommonBase
* @orderAfter PluginCommonBase
*
* @help
* このゲーム「」専用のプラグイン。
*/
( () => {
"use strict";
/*--- Scene_Title ---*/
const _Scene_Title_commandNewGame = Scene_Title.prototype.commandNewGame;
Scene_Title.prototype.commandNewGame = function() {
_Scene_Title_commandNewGame.call( this );
// 初期設定を行う
// $gameSwitches.setValueByName( 'episode2', true );
// $gameVariables.setValueByName( 'cut', 40 );
// $gameSwitches.setValueByName( 'openSharaDoor', true );
// $gameSwitches.setValueByName( 'unlokImelda', true );
// $gameSwitches.setValueByName( 'testBarrier', true );
};
/* 〜 シナリオ カット番号 〜
cut
00 : episode1 開始
10 : 宿屋の悪漢退治
*/
} )();