mirror of
https://github.com/Wyrrrd/Rocket_Turrets.git
synced 2026-07-06 20:57:05 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 067066ae57 | |||
| 3b92d05476 |
+18
-5
@@ -1,18 +1,31 @@
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.2
|
||||
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
|
||||
Changes:
|
||||
- Merged Bob version (this one) with vanilla version
|
||||
(will load tiered turrets, when bobplates is present)
|
||||
Features:
|
||||
- Added vanilla turret from Rocket Turrets Vanilla Version
|
||||
- Added check for used items and technology from Bob's Metals, Chemicals and Intermediates to determine if tiered or vanilla turrets should be loaded
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.18.0
|
||||
Date: 18. 2. 2020
|
||||
Changes:
|
||||
- Ported to 0.18
|
||||
- Added german locale
|
||||
- Added changelog file
|
||||
- Renamed mod
|
||||
- Renamed mod for upload in mod portal
|
||||
- Matched versioning to Factorio versions
|
||||
|
||||
Locale:
|
||||
- Added german locale
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.0.5
|
||||
Changes:
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 920 KiB |
@@ -1,11 +1,12 @@
|
||||
{
|
||||
"name": "Rocket_Turrets",
|
||||
"version": "0.18.1",
|
||||
"version": "0.18.2",
|
||||
"title": "RocketTurrets",
|
||||
"author": "Wyrrrd",
|
||||
"contact": "",
|
||||
"homepage": "",
|
||||
"factorio_version": "0.18",
|
||||
"dependencies": ["base >= 0.18.0", "? bobplates >= 0.18.1"],
|
||||
"dependencies": [
|
||||
"base >= 0.18.0",
|
||||
"? bobplates >= 0.18.1"
|
||||
],
|
||||
"description": "Adds rocket turrets"
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
[mod-description]
|
||||
Rocket_Turrets=Adds rocket turrets
|
||||
|
||||
[item-name]
|
||||
rocket-turret=Rocket turret
|
||||
rocket-turret-mk1=Rocket turret MK1
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 },
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user