diff --git a/changelog.txt b/changelog.txt index 5bcd36d..0cddf4f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,8 +1,14 @@ --------------------------------------------------------------------------------------------------- Version: 0.18.2 -Date: 22. 2. 2020 +Date: 25. 2. 2020 Changes: - Matched changelog file format to what Factorio expects + + Graphics: + - Added HR textures for vanilla rocket turret entity (now also in lame gray) + + Locale: + - Added translated mod description --------------------------------------------------------------------------------------------------- Version: 0.18.1 Date: 21. 2. 2020 diff --git a/graphics/entity/hr-rocket-sheet.png b/graphics/entity/hr-rocket-sheet.png new file mode 100644 index 0000000..5b6e306 Binary files /dev/null and b/graphics/entity/hr-rocket-sheet.png differ diff --git a/locale/de/locale.cfg b/locale/de/locale.cfg index ed6450a..d192e6f 100644 --- a/locale/de/locale.cfg +++ b/locale/de/locale.cfg @@ -1,3 +1,6 @@ +[mod-description] +Rocket_Turrets=Fügt Raketen-Geschütztürme hinzu + [item-name] rocket-turret=Raketen-Geschützturm rocket-turret-mk1=Raketen-Geschützturm MK1 diff --git a/locale/en/locale.cfg b/locale/en/locale.cfg index e3ad5de..9b461da 100644 --- a/locale/en/locale.cfg +++ b/locale/en/locale.cfg @@ -1,3 +1,6 @@ +[mod-description] +Rocket_Turrets=Adds rocket turrets + [item-name] rocket-turret=Rocket turret rocket-turret-mk1=Rocket turret MK1 diff --git a/locale/pl/locale.cfg b/locale/pl/locale.cfg index c4da11d..5d73a49 100644 --- a/locale/pl/locale.cfg +++ b/locale/pl/locale.cfg @@ -1,3 +1,6 @@ +[mod-description] +Rocket_Turrets=Dodaje działkom rakietowe + [item-name] rocket-turret=Działko rakietowe rocket-turret-mk1=Działko rakietowe MK1 diff --git a/prototypes/entity.lua b/prototypes/entity.lua index 8c26f25..5f931b1 100644 --- a/prototypes/entity.lua +++ b/prototypes/entity.lua @@ -18,6 +18,20 @@ return axially_symmetrical = false, run_mode = inputs.run_mode and inputs.run_mode or "forward", shift = { 0.25, -0.5 }, + hr_version = + { + filename = "__Rocket_Turrets__/graphics/entity/hr-rocket-sheet.png", + priority = "medium", + scale = 0.5, + width = 144, + height = 160, + direction_count = inputs.direction_count and inputs.direction_count or 64, + frame_count = 1, + line_length = inputs.line_length and inputs.line_length or 16, + axially_symmetrical = false, + run_mode = inputs.run_mode and inputs.run_mode or "forward", + shift = { 0.25, -0.5 }, + } } } }