-
-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
24 changed files
with
401 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 @@ | ||
|
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 |
---|---|---|
@@ -1,5 +1,39 @@ | ||
create_professions_list_effect = { | ||
add_to_variable_list = { name = all_professions target = flag:blacksmithing } | ||
add_to_variable_list = { name = all_professions target = flag:mining } | ||
add_to_variable_list = { name = all_professions target = flag:herbalism } | ||
} | ||
# REAGENTS AND INVENTORY | ||
# ALL CHARACTER SCOPE | ||
discover_reagent_effect = { | ||
add_to_variable_list = { | ||
name = known_reagents | ||
target = flag:$REAGENT$ | ||
} | ||
custom_tooltip = discover_reagent_tt | ||
} | ||
|
||
add_reagent_to_inventory_effect = { | ||
change_variable = { | ||
name = $REAGENT$_amount | ||
add = 1 | ||
} | ||
add_to_variable_list = { | ||
name = inventory | ||
target = flag:$REAGENT$ | ||
} | ||
} | ||
|
||
remove_reagent_from_inventory_effect = { | ||
change_variable = { | ||
name = $REAGENT$_amount | ||
add = -1 | ||
} | ||
add_to_variable_list = { | ||
name = inventory | ||
target = flag:$REAGENT$ | ||
} | ||
} | ||
|
||
discover_recipe_effect = { | ||
add_to_variable_list = { | ||
name = known_recipes | ||
target = flag:$RECIPE$ | ||
} | ||
custom_tooltip = discover_recipe_tt | ||
} |
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,18 @@ | ||
is_known_reagent = { | ||
is_target_in_variable_list = { | ||
name = known_reagents | ||
target = flag:$REAGENT$ | ||
} | ||
} | ||
|
||
is_known_recipe = { | ||
is_target_in_variable_list = { | ||
name = known_recipes | ||
target = flag:$RECIPE$ | ||
} | ||
} | ||
|
||
has_sufficient_reagent = { | ||
var:$REAGENT$_amount >= $REQUIRED_AMOUNT$ | ||
} | ||
|
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,5 @@ | ||
macro = { | ||
description = "Gets icon for profession" | ||
definition = "GetProfessionIcon(profession)" | ||
replace_with = "Concatenate(Concatenate('gfx/interface/icons/traits', profession), '.dds')" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.