-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from cech12/develop
add cave generation Buttons to the Game Manager of the "SwitcherGener…
- Loading branch information
Showing
20 changed files
with
402 additions
and
344 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Mods/SwitcherGeneratorDungeon/Data/Scripts/gameplay/change_CampaignKris.tcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$start | ||
$replace | ||
sm_force_zone Kristall | ||
$with | ||
sm_force_zone Kristall | ||
|
||
set storymgr [lindex [obj_query 0 -class StoryMgr -limit 1] 0] | ||
if {$storymgr != 0} { | ||
call_method $storymgr set_generate_Urwald_enable 0 | ||
call_method $storymgr set_generate_Metall_enable 0 | ||
call_method $storymgr set_generate_Kristall_enable 1 | ||
call_method $storymgr set_generate_Lava_enable 0 | ||
} | ||
$end |
14 changes: 14 additions & 0 deletions
14
Mods/SwitcherGeneratorDungeon/Data/Scripts/gameplay/change_CampaignLava.tcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$start | ||
$replace | ||
sm_force_zone Lava | ||
$with | ||
sm_force_zone Lava | ||
|
||
set storymgr [lindex [obj_query 0 -class StoryMgr -limit 1] 0] | ||
if {$storymgr != 0} { | ||
call_method $storymgr set_generate_Urwald_enable 0 | ||
call_method $storymgr set_generate_Metall_enable 0 | ||
call_method $storymgr set_generate_Kristall_enable 0 | ||
call_method $storymgr set_generate_Lava_enable 1 | ||
} | ||
$end |
14 changes: 14 additions & 0 deletions
14
Mods/SwitcherGeneratorDungeon/Data/Scripts/gameplay/change_CampaignMet.tcl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$start | ||
$replace | ||
sm_force_zone Metall | ||
$with | ||
sm_force_zone Metall | ||
|
||
set storymgr [lindex [obj_query 0 -class StoryMgr -limit 1] 0] | ||
if {$storymgr != 0} { | ||
call_method $storymgr set_generate_Urwald_enable 0 | ||
call_method $storymgr set_generate_Metall_enable 1 | ||
call_method $storymgr set_generate_Kristall_enable 0 | ||
call_method $storymgr set_generate_Lava_enable 0 | ||
} | ||
$end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
Mods/SwitcherGeneratorDungeon/Data/Scripts/text/doc/de/info_gamemanager.tcl
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 0 additions & 55 deletions
55
Mods/SwitcherGeneratorDungeon/Data/Scripts/text/doc/en/info_gamemanager.tcl
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.