Skip to content

Commit

Permalink
Accumulator buff
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Oct 20, 2024
1 parent 63f495f commit bf5f2dc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion prototypes/buildings/accumulator-mk01.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ ENTITY {
corpse = "medium-remnants",
collision_box = {{-1.9, -1.9}, {1.9, 1.9}},
selection_box = {{-2, -2}, {2, 2}},
energy_source = {
energy_source = mods.pyalternativeenergy and {
type = "electric",
buffer_capacity = "1GJ",
usage_priority = "tertiary",
input_flow_limit = "100MW",
output_flow_limit = "100MW"
} or {
type = "electric",
buffer_capacity = "100MJ",
usage_priority = "tertiary",
Expand Down
8 changes: 7 additions & 1 deletion prototypes/buildings/accumulator-mk02.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ ENTITY {
corpse = "medium-remnants",
collision_box = {{-2.4, -2.4}, {2.4, 2.4}},
selection_box = {{-2.5, -2.5}, {2.5, 2.5}},
energy_source = {
energy_source = mods.pyalternativeenergy and {
type = "electric",
buffer_capacity = "15GJ",
usage_priority = "tertiary",
input_flow_limit = "2GW",
output_flow_limit = "2GW"
} or {
type = "electric",
buffer_capacity = "450MJ",
usage_priority = "tertiary",
Expand Down

0 comments on commit bf5f2dc

Please sign in to comment.