Compare commits

...

3 Commits

Author SHA1 Message Date
1b01c5db11 Merge branch 'cooked' 2025-03-28 22:27:36 +01:00
66903efff6 More medals please 2025-03-28 22:09:31 +01:00
4068d6558a Add saves as module 2025-03-28 22:09:31 +01:00

View File

@@ -269,19 +269,19 @@
- name: commendations - name: commendations
regex: <Talent identifier="commendations">!anyvalue="(?<xpgaingain>!num)" regex: <Talent identifier="commendations">!anyvalue="(?<xpgaingain>!num)"
lua: | lua: |
xpgaingain=round(xpgaingain*4,2) xpgaingain=round(xpgaingain*32,2)
files: files:
- '**/TalentsCaptain.xml' - '**/TalentsCaptain.xml'
- name: coalitionmedal - name: coalitionmedal
regex: <Item!anyidentifier="coalitionmedal"!anyGiveExperience amount="(?<xpgain>!num)" regex: <Item!anyidentifier="coalitionmedal"!anyGiveExperience amount="(?<xpgain>!num)"
lua: | lua: |
xpgain=round(xpgain*4,2) xpgain=round(xpgain*32,2)
files: files:
- '**/captain_talent_items.xml' - '**/captain_talent_items.xml'
- name: coalitioncommendation - name: coalitioncommendation
regex: <Item!anyidentifier="coalitioncommendation"!anyGiveExperience amount="(?<xpgain>!num)" regex: <Item!anyidentifier="coalitioncommendation"!anyGiveExperience amount="(?<xpgain>!num)"
lua: | lua: |
xpgain=round(xpgain*4,2) xpgain=round(xpgain*32,2)
files: files:
- '**/captain_talent_items.xml' - '**/captain_talent_items.xml'