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

[scripts][textsubs] Add textsubs for EV plant status #6917

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
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
13 changes: 13 additions & 0 deletions textsubs.lic
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,19 @@ if DRStats.empath?
TextSubs.add('Your (.*)\'s life force is significantly weakened, with large portions of it numbed and deadened completely.', 'Your \1\'s life force is significantly weakened, with large portions of it numbed and deadened completely. (7/9)')
TextSubs.add('Your (.*)\'s life force is imperceptible.', 'Your \1\'s life force is imperceptible. (8/9)')
TextSubs.add('You thumb your (.*)\.', 'You thumb your \1. (9/9)')

TextSubs.add('^The plant appears to be in good condition',
'The plant appears to be in good condition (5/5)')
TextSubs.add('^The plant has some scrapes and discolorations along the leaves and stem',
'The plant has some scrapes and discolorations along the leaves and stem (4/5)')
TextSubs.add('^The plant has several torn leaves, and the main stem bears some cuts that are leaking green sap',
'The plant has several torn leaves, and the main stem bears some cuts that are leaking green sap (3/5)')
TextSubs.add('^The plant shivers periodically, torn leaves and broken stems hanging limply as sap drips from its wounds',
'The plant shivers periodically, torn leaves and broken stems hanging limply as sap drips from its wounds (2/5)')
TextSubs.add('^The plant has pulled into itself under shredded leaves and oozing stems',
'The plant has pulled into itself under shredded leaves and oozing stems (1/5)')
TextSubs.add('^The plant has coiled itself into a tight ball, the remains of its shredded leaves sticking to sap encrusted stems',
'The plant has coiled itself into a tight ball, the remains of its shredded leaves sticking to sap encrusted stems (0/5)')
end

TextSubs.add('(is|are)( of|) masterfully-crafted( quality|)', '\1\2 masterfully-crafted (12/12)\3')
Expand Down
Loading