Skip to content

Commit

Permalink
0.0.3 Fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
SGZ-Creations committed Jan 15, 2024
1 parent 882da1d commit 0b1763c
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 13 deletions.
16 changes: 11 additions & 5 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
---------------------------------------------------------------------------------------------------
Version: 0.0.2
Date: xx. xx. 2022
Version: 0.0.3
Date: 15.01.2024
Features:
- Initial release
- Publicly avalible
Changes:
- Tech Prerequisite changed to work with verison 1.2.0 of bobs.
Bugfixes:
- Removed missing reqired tech.
---------------------------------------------------------------------------------------------------
Version: 0.0.2
Date: 00. 00. 2022
Changes:
- Name changed from "Bob's Alt" to "Alt_Bobs_Fuels" "alt = alternative"
- Recipe reqirement and output
Fixes:
Bugfixes:
- Prod mods should now work on the recipes.
- oredering in the crafting menu

- Ordering in the crafting menu
---------------------------------------------------------------------------------------------------
Version: 0.0.1
Date: 01. 09. 2021
Expand Down
10 changes: 7 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "Alt_Bobs_Fuels",
"title": "Alt Bob's Fuels",
"version": "0.0.2",
"version": "0.0.3",
"factorio_version": "1.1",
"author": "SGZ_Creations",
"contact": "https://discord.gg/tbxnpsxkDM",
"dependencies": ["base >= 1.1", "bobrevamp >= 1.1.0", "bobplates >= 1.1.0"],
"dependencies":[
"base >= 1.1",
"bobrevamp >= 1.2.0",
"bobplates >= 1.2.0"
],
"description": "This mod changes: Stack sizes. & Adds alternate recipes for Bob's rocket fuel",
"package": {
"ignore": [
".gitignore",
".gitattributes"
]
]
}
}
2 changes: 1 addition & 1 deletion locale/en/names.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[technology-name]
rocket-fuel-bob_alt=Alt Rocket Fuel
rocket-fuel-2=Alt Rocket Fuel
6 changes: 6 additions & 0 deletions migrations/0.0.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"technology":
[
[ "rocket-fuel-bob_alt", "rocket-fuel-2" ]
]
}
1 change: 1 addition & 0 deletions migrations/migrations.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.3.json
16 changes: 12 additions & 4 deletions prototypes/technology.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
local fueltech = table.deepcopy(data.raw.technology["rocket-fuel"])
fueltech.name = "rocket-fuel-bob_alt"
fueltech.effects = {{type = "unlock-recipe", recipe = "rocket-fuel-from-solid-fuel"},{type = "unlock-recipe", recipe = "rocket-fuel-from-enriched-fuel"}}
fueltech.prerequisites = {"rocket-fuel", "hydrazine", "solid-fuel"}
fueltech.unit =
fueltech.name = "rocket-fuel-2"
fueltech.effects = {
{
type = "unlock-recipe",
recipe = "rocket-fuel-from-solid-fuel"
},
{
type = "unlock-recipe",
recipe = "rocket-fuel-from-enriched-fuel"
}
}
fueltech.prerequisites = {"rocket-fuel",}
fueltech.unit = {
count = 300,
ingredients =
{
Expand Down

0 comments on commit 0b1763c

Please sign in to comment.