Skip to content

Commit

Permalink
Fixed Inconsistent Fawogae Plantation crafting speed. Resolves pyanod…
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Nov 24, 2024
1 parent 52a0ac0 commit 1ce20b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Date: ????
- The guar MK02 technology has been moved from py science pack 2 to chemical science.
- Changed the recipes for seaweed module breeding. Resolves https://github.com/pyanodon/pybugreports/issues/745
- Fixed incorrect sap module categories. Resolves https://github.com/pyanodon/pybugreports/issues/734
- Fixed Inconsistent Fawogae Plantation crafting speed. Resolves https://github.com/pyanodon/pybugreports/issues/750
---------------------------------------------------------------------------------------------------
Version: 3.0.25
Date: 2024-11-20
Expand Down
6 changes: 3 additions & 3 deletions prototypes/buildings/fawogae-plantation.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local MODULE_SLOTS = 10
local FULL_CRAFTING_SPEED = 1 -- crafting speed when full of mk01 modules
local FULL_CRAFTING_SPEED = 0.5 -- crafting speed when full of mk01 modules

ITEM("fawogae-plantation-mk01"):subgroup_order("py-alienlife-farm-buildings-mk01", "d")
ITEM("fawogae-plantation-mk02"):subgroup_order("py-alienlife-farm-buildings-mk02", "d")
Expand Down Expand Up @@ -32,9 +32,9 @@ data.raw["assembling-machine"]["fawogae-plantation-mk02"].crafting_speed = py.fa
data.raw["assembling-machine"]["fawogae-plantation-mk02"].module_slots = MODULE_SLOTS * 2

RECIPE("fawogae-plantation-mk03"):add_unlock("mycology-mk04")
data.raw["assembling-machine"]["fawogae-plantation-mk03"].crafting_speed = py.farm_speed_derived(MODULE_SLOTS * 3, "fawogae-plantation-mk02")
data.raw["assembling-machine"]["fawogae-plantation-mk03"].crafting_speed = py.farm_speed_derived(MODULE_SLOTS * 3, "fawogae-plantation-mk01")
data.raw["assembling-machine"]["fawogae-plantation-mk03"].module_slots = MODULE_SLOTS * 3

RECIPE("fawogae-plantation-mk04"):add_unlock("mycology-mk05")
data.raw["assembling-machine"]["fawogae-plantation-mk04"].crafting_speed = py.farm_speed_derived(MODULE_SLOTS * 4, "fawogae-plantation-mk03")
data.raw["assembling-machine"]["fawogae-plantation-mk04"].crafting_speed = py.farm_speed_derived(MODULE_SLOTS * 4, "fawogae-plantation-mk01")
data.raw["assembling-machine"]["fawogae-plantation-mk04"].module_slots = MODULE_SLOTS * 4
8 changes: 4 additions & 4 deletions prototypes/items/items.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8209,7 +8209,7 @@ ITEM {
subgroup = "py-alienlife-fawogae",
order = "k-d",
stack_size = 50,
effect = {pollution = 1, speed = 0.45},
effect = {pollution = 1, speed = 1},
}

ITEM {
Expand All @@ -8225,7 +8225,7 @@ ITEM {
subgroup = "py-alienlife-fawogae",
order = "k-d",
stack_size = 50,
effect = {pollution = 1, speed = 0.95},
effect = {pollution = 1, speed = 2},
}

ITEM {
Expand All @@ -8244,7 +8244,7 @@ ITEM {
subgroup = "py-alienlife-fawogae",
order = "k-d",
stack_size = 50,
effect = {pollution = 1, speed = 1.45},
effect = {pollution = 1, speed = 3},
}

ITEM {
Expand All @@ -8263,7 +8263,7 @@ ITEM {
subgroup = "py-alienlife-fawogae",
order = "k-d",
stack_size = 50,
effect = {pollution = 1, speed = 1.95},
effect = {pollution = 1, speed = 4},
}

ITEM {
Expand Down

0 comments on commit 1ce20b3

Please sign in to comment.