Skip to content
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

[MoM] Power learning revamp: Biokinesis #70305

Merged
merged 23 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
80e1b9f
Initial commit
Standing-Storm Dec 19, 2023
0b9658d
Update data/mods/MindOverMatter/powers/learning_eocs/biokinesis.json
Standing-Storm Dec 19, 2023
ccf53d3
Update data/mods/MindOverMatter/vitamins.json
Standing-Storm Dec 19, 2023
6b9e500
Add recipe checks to power learning EoCs
Standing-Storm Dec 19, 2023
63a7c55
Merge branch 'learning-revamp-bio' of git@github.com:Standing-Storm/C…
Standing-Storm Dec 19, 2023
f4ae9dc
begin replacing contemplation EoCs
Standing-Storm Dec 19, 2023
a1de0c0
remove learn_spells, finish practice recipes
Standing-Storm Dec 19, 2023
cfaa384
flexibility is no longer a starting power
Standing-Storm Dec 19, 2023
ca91a15
set u_messages to popup to interrupt meditation
Standing-Storm Dec 19, 2023
6a16fd9
Add detailed power description spoiler file
Standing-Storm Dec 20, 2023
e51e0e3
Make Star Athlete compatible with prerequisites
Standing-Storm Dec 20, 2023
4374208
Finish learnjng vitamin deactivate condition
Standing-Storm Dec 20, 2023
4f17a2d
add biokinesis contemplation proficiency
Standing-Storm Dec 21, 2023
e38a657
update README.md
Standing-Storm Dec 21, 2023
d1e977a
remove game_begin recipe event, move recipes to professions
Standing-Storm Dec 21, 2023
1853b67
Further updates
Standing-Storm Dec 26, 2023
eb90b6c
Various fixes
Standing-Storm Dec 26, 2023
c6e4e95
Merge branch 'master' of https://github.com/Standing-Storm/Cataclysm-…
Standing-Storm Dec 26, 2023
4fb1274
There is no "u_has_activity"
Standing-Storm Dec 26, 2023
8bde268
Merge branch 'master' of https://github.com/Standing-Storm/Cataclysm-…
Standing-Storm Dec 26, 2023
ac1442e
Merge updates
Standing-Storm Dec 26, 2023
3892b8c
Finalization
Standing-Storm Dec 27, 2023
cb71fee
Kick tests
Standing-Storm Dec 27, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions data/mods/MindOverMatter/effectoncondition/eoc_learn_recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,31 @@
"condition": { "u_has_trait": "VITAKINETIC" },
"effect": [ { "queue_eocs": "EOC_TEACH_VITAKIN_CONTEMPLATE_RECIPES", "time_in_future": [ "10 seconds", "15 seconds" ] } ]
},
{
"type": "effect_on_condition",
"id": "EOC_PSI_LEARNING_VITAMIN_COUNTER",
"recurrence": [ "12 hours", "168 hours" ],
"condition": {
"and": [
{
"u_has_any_trait": [
"BIOKINETIC",
"CLAIRSENTIENT",
"ELECTROKINETIC",
"PHOTOKINETIC",
"PYROKINETIC",
"TELEKINETIC",
"TELEPATH",
"TELEPORTER",
"VITAKINETIC"
]
},
{ "math": [ "u_vitamin('vitamin_psi_learning_counter')", "==", "0" ] }
]
},
"deactivate_condition": { "and": [ { "not": { "u_has_trait": "BIOKINETIC" } } ] },
"effect": [ { "math": [ "u_vitamin('vitamin_psi_learning_counter')", "+=", "1" ] } ]
},
{
"type": "effect_on_condition",
"id": "EOC_PSI_USB_RAD_RECIPE",
Expand Down
Loading
Loading