-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #361 from db0/0572
Added extra Boss Curios
- Loading branch information
Showing
51 changed files
with
597 additions
and
117 deletions.
There are no files selected for viewing
This file contains 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 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="StreamTexture" | ||
path="res://.import/black_rose.png-41626d288fd472215d35fe613176f45b.stex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://assets/icons/artifacts/black_rose.png" | ||
dest_files=[ "res://.import/black_rose.png-41626d288fd472215d35fe613176f45b.stex" ] | ||
|
||
[params] | ||
|
||
compress/mode=1 | ||
compress/lossy_quality=0.7 | ||
compress/hdr_mode=0 | ||
compress/bptc_ldr=0 | ||
compress/normal_map=0 | ||
flags/repeat=0 | ||
flags/filter=true | ||
flags/mipmaps=false | ||
flags/anisotropic=false | ||
flags/srgb=2 | ||
process/fix_alpha_border=true | ||
process/premult_alpha=false | ||
process/HDR_as_SRGB=false | ||
process/invert_color=false | ||
process/normal_map_invert_y=false | ||
stream=false | ||
size_limit=0 | ||
detect_3d=true | ||
svg/scale=1.0 |
This file contains 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 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 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 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
extends Artifact | ||
|
||
func _ready() -> void: | ||
if is_active and effect_context == ArtifactDefinitions.EffectContext.BATTLE: | ||
if not cfc.are_all_nodes_mapped: | ||
yield(cfc, "all_nodes_mapped") | ||
if not cfc.NMAP.board.dreamer: | ||
yield(cfc.NMAP.board, "ready") | ||
|
||
|
||
func _on_player_turn_started(_turn: Turn = null) -> void: | ||
var script = [ | ||
{ | ||
"name": "mod_counter", | ||
"counter_name": "immersion", | ||
"tags": ["Curio", "New Turn"], | ||
"modification": ArtifactDefinitions.ThickBoss.amounts.immersion_amount, | ||
}, | ||
] | ||
execute_script(script) | ||
|
||
|
||
func _on_scripting_completed(_artifact, _sceng) -> void: | ||
_send_trigger_signal() | ||
|
||
func _on_artifact_added() -> void: | ||
for ptype in globals.player.pathos.pathi.values(): | ||
ptype.perm_modify_requirements_for_level(ArtifactDefinitions.CostlyUpgrades.amounts.pathos_req_increase) |
This file contains 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
extends Artifact | ||
|
||
func _ready() -> void: | ||
if is_active and effect_context == ArtifactDefinitions.EffectContext.BATTLE: | ||
if not cfc.are_all_nodes_mapped: | ||
yield(cfc, "all_nodes_mapped") | ||
if not cfc.NMAP.board.dreamer: | ||
yield(cfc.NMAP.board, "ready") | ||
|
||
func _on_player_turn_started(_turn: Turn = null) -> void: | ||
var script = [ | ||
{ | ||
"name": "mod_counter", | ||
"counter_name": "immersion", | ||
"tags": ["Curio", "New Turn"], | ||
"modification": ArtifactDefinitions.NoRest.amounts.immersion_amount, | ||
}, | ||
] | ||
execute_script(script) | ||
|
||
|
||
func _on_scripting_completed(_artifact, _sceng) -> void: | ||
_send_trigger_signal() |
This file contains 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 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 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
extends Artifact | ||
|
||
func _ready() -> void: | ||
if is_active and effect_context == ArtifactDefinitions.EffectContext.BATTLE: | ||
if not cfc.are_all_nodes_mapped: | ||
yield(cfc, "all_nodes_mapped") | ||
if not cfc.NMAP.board.dreamer: | ||
yield(cfc.NMAP.board, "ready") | ||
|
||
|
||
func _on_player_turn_started(_turn: Turn = null) -> void: | ||
var script = [ | ||
{ | ||
"name": "mod_counter", | ||
"counter_name": "immersion", | ||
"tags": ["Curio", "New Turn"], | ||
"modification": ArtifactDefinitions.ThickBoss.amounts.immersion_amount, | ||
}, | ||
] | ||
execute_script(script) | ||
|
||
|
||
func _on_scripting_completed(_artifact, _sceng) -> void: | ||
_send_trigger_signal() |
This file contains 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
extends Artifact | ||
|
||
func _ready() -> void: | ||
if is_active and effect_context == ArtifactDefinitions.EffectContext.BATTLE: | ||
if not cfc.are_all_nodes_mapped: | ||
yield(cfc, "all_nodes_mapped") | ||
if not cfc.NMAP.board.dreamer: | ||
yield(cfc.NMAP.board, "ready") | ||
|
||
func _on_player_turn_started(_turn: Turn = null) -> void: | ||
var script = [ | ||
{ | ||
"name": "mod_counter", | ||
"counter_name": "immersion", | ||
"tags": ["Curio", "New Turn"], | ||
"modification": ArtifactDefinitions.NoRest.amounts.immersion_amount, | ||
}, | ||
] | ||
execute_script(script) | ||
|
||
|
||
func _on_scripting_completed(_artifact, _sceng) -> void: | ||
_send_trigger_signal() |
This file contains 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 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 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
Oops, something went wrong.