Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Ravana_changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@ Update for ageless 4.39
Fix units spawning partially damaged with hp multiplier
Update for ageless 4.40

4.14.14
Added Easy upgrade type, same as Normal but without nothing



4.x todo
Expand Down
2 changes: 1 addition & 1 deletion _main.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifdef MULTIPLAYER
#wmlindent: start ignoring
#define OROCIARM_VERSION
4.14.13 by Ravana
4.14.14 by Ravana
Leave feedback in is.gd/laelamp
#enddef
#wmlindent: stop ignoring
Expand Down
3 changes: 2 additions & 1 deletion lua/helper_functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,8 @@ function ORM.fun.show_setting_labels()
[1] = "Randomless (Sequence->res->hp->dmg->mv->)",
[2] = "Normal (Nothing(2)/res/hp/dmg/mv/str)",
[3] = "Chaos (Zonk/res/hp/dmg/str/mv)",
[4] = "Mega Chaos (Zonk/res/hp/dmg/mv/str/def)"
[4] = "Mega Chaos (Zonk/res/hp/dmg/mv/str/def)",
[5] = "Easy (res/hp/dmg/mv/str)"
}
ORM.fun.backport_label({
x=2,
Expand Down
4 changes: 4 additions & 0 deletions scenarios/common_OrociaRandomMod.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ random_start_time=no
name=_"Mega Chaos (Zonk/res/hp/dmg/mv/str/def)"
value=4
[/item]
[item]
name=_"Easy (res/hp/dmg/mv/str)"
value=5
[/item]
[/choice]
[choice]
id=ORM_map_setting
Expand Down
5 changes: 5 additions & 0 deletions utils/shrine_upgrade.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@
# mega chaos
{VARIABLE_OP ORM_upgrade_id rand 0,1,2,3,4,5,0,1,2,3,4,5,7,8}
[/case]
[case]
value=5
# easy, normal without nothing
{VARIABLE_OP ORM_upgrade_id rand 0,1,2,3,4}
[/case]
[else]
# no upgrade
[/else]
Expand Down