Skip to content

Commit

Permalink
fixed the speed bonus of bhoddos modules to match the pattern of 1,2,…
Browse files Browse the repository at this point in the history
…3,4 (previously 1, 1.25, 1.5, 1.75)
  • Loading branch information
notnotmelon committed Nov 20, 2023
1 parent cdb4eb3 commit bb8c065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Date: ???
- the bhoddos machine now consumes fuel rods directly. no longer requires electricity
- changed item & tech descriptions for bhoddos
- reworked bhoddos turd path 1 to cause nuclear explosions every 2 hrs. high risk high rewards
- fixed the speed bonus of bhoddos modules to match the pattern of 1,2,3,4 (previously 1, 1.25, 1.5, 1.75)
TURD:
- fixed crash when opening TURD when pyAE is not installed
- removed /view_turd_selections
Expand Down
6 changes: 3 additions & 3 deletions prototypes/items/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7870,7 +7870,7 @@ ITEM {
subgroup = "py-alienlife-modules",
order = "b-b",
stack_size = 50,
effect = {pollution = {bonus = 1},speed = {bonus = 1.25}},
effect = {pollution = {bonus = 1},speed = {bonus = 2}},
limitation = {},
limitation_message_key = "bhoddos"
}
Expand All @@ -7890,7 +7890,7 @@ ITEM {
subgroup = "py-alienlife-modules",
order = "b-c",
stack_size = 50,
effect = {pollution = {bonus = 1},speed = {bonus = 1.5}},
effect = {pollution = {bonus = 1},speed = {bonus = 3}},
limitation = {},
limitation_message_key = "bhoddos"
}
Expand All @@ -7910,7 +7910,7 @@ ITEM {
subgroup = "py-alienlife-modules",
order = "b-d",
stack_size = 50,
effect = {pollution = {bonus = 1},speed = {bonus = 1.75}},
effect = {pollution = {bonus = 1},speed = {bonus = 4}},
limitation = {},
limitation_message_key = "bhoddos"
}
Expand Down

0 comments on commit bb8c065

Please sign in to comment.