-
Notifications
You must be signed in to change notification settings - Fork 92
Rework angel artifacts #1185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
LenardHess
wants to merge
6
commits into
Arch666Angel:dev2.0
Choose a base branch
from
LenardHess:rework_angel_artifacts
base: dev2.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Rework angel artifacts #1185
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
4c21e26
Fix build script missing execute permissions
LenardHess 47c0a26
Fix alien artifact researches from biter loot drops
LenardHess a9ce123
Change alien loot researches to use research trigger function
LenardHess f1adc2f
Switch artifact researches to scripted triggers
LenardHess c89ad95
Add new graphics for alien artifact techs
LenardHess 5f26632
Fix artifact name selection
LenardHess File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,23 +4,11 @@ | |
| ------------------------------------------------------------------------------- | ||
| -- RED ARTIFACTS -------------------------------------------------------------- | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-red-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-red" }, | ||
| localised_description = { "item-description.angels-alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-red-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-red", | ||
| localised_name = { "item-name.angels-alien-artifact-red" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-red.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -37,34 +25,22 @@ | |
| recipe = "angels-alien-artifact-red-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-red-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-red.png", | ||
| icon_size = 32, | ||
| } | ||
|
|
||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- YELLOW ARTIFACTS ----------------------------------------------------------- | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-yellow-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-yellow" }, | ||
| localised_description = { "item-description.angels-alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-yellow-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-yellow", | ||
| localised_name = { "item-name.angels-alien-artifact-yellow" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-yellow.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -81,34 +57,21 @@ | |
| recipe = "angels-alien-artifact-yellow-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-yellow-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-yellow.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- ORANGE ARTIFACTS ----------------------------------------------------------- | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-orange-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-orange" }, | ||
| localised_description = { "item-description.angels-alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-orange-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-orange", | ||
| localised_name = { "item-name.angels-alien-artifact-orange" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-orange.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -124,34 +87,21 @@ | |
| recipe = "angels-alien-artifact-orange-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-orange-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also means it won't be repeated
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It might also be nice to have a per-color text to hint at where this drops from 🤔 |
||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-orange.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- BLUE ARTIFACTS ------------------------------------------------------------- | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-blue-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-blue" }, | ||
| localised_description = { "item-description.angels-alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-blue-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-blue", | ||
| localised_name = { "item-name.angels-alien-artifact-blue" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-blue.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -167,34 +117,21 @@ | |
| recipe = "angels-alien-artifact-blue-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-blue-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-blue.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- PURPLE ARTIFACTS ----------------------------------------------------------- | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-purple-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-purple" }, | ||
| localised_description = { "item-description.angels-alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-purple-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-purple", | ||
| localised_name = { "item-name.angels-alien-artifact-purple" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-purple.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -211,34 +148,21 @@ | |
| recipe = "angels-alien-artifact-purple-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-purple-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-purple.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- GREEN ARTIFACTS ------------------------------------------------------------ | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-green-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact-green" }, | ||
| localised_description = { "item-description.alien-artifact-tool" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-green-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact-green", | ||
| localised_name = { "item-name.angels-alien-artifact-green" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact-green.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = { | ||
|
|
@@ -255,33 +179,21 @@ | |
| recipe = "angels-alien-artifact-green-from-basic", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --{ "angels-alien-artifact-green-tool", 1 }, | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-green.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| ------------------------------------------------------------------------------- | ||
| -- BASE ARTIFACTS (pink) ------------------------------------------------------ | ||
| ------------------------------------------------------------------------------- | ||
| { | ||
| type = "tool", | ||
| name = "angels-alien-artifact-tool", | ||
| localised_name = { "item-name.angels-small-alien-artifact" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact-small.png", | ||
| icon_size = 32, | ||
| hidden = true, | ||
| stack_size = 1, | ||
| durability = 1, | ||
| order = "zzz", | ||
| }, | ||
| { | ||
| type = "technology", | ||
| name = "angels-alien-artifact", | ||
| localised_name = { "item-name.angels-alien-artifact" }, | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/paste.png", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/technology/alien-artifact.png", | ||
| icon_size = 128, | ||
| order = "c-a", | ||
| prerequisites = {}, | ||
|
|
@@ -291,13 +203,12 @@ | |
| recipe = "angels-alien-artifact-from-small", | ||
| },]] | ||
| }, | ||
| unit = { | ||
| count = 50, | ||
| ingredients = { | ||
| { "chemical-science-pack", 1 }, --alien-artifact-tool not recognised in lab | ||
| }, | ||
| time = 30, | ||
| }, | ||
| research_trigger = { | ||
| type = "scripted", | ||
| trigger_description = "Locate this artifact in your fight against the biters!", | ||
| icon = "__angelsbioprocessinggraphics__/graphics/icons/alien-artifact.png", | ||
| icon_size = 32, | ||
| } | ||
| }, | ||
| }) | ||
| --end | ||
Binary file added
BIN
+16.8 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.7 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.7 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-orange.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.8 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-purple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.7 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+16.7 KB
angelsbioprocessinggraphics/graphics/technology/alien-artifact-yellow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strings should be in the locale files. Makes them possible to translate
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will move, wasn't specifically aware of that 👍