Update
This commit is contained in:
@@ -150,35 +150,36 @@
|
|||||||
- '**/TalentsEngineer.xml'
|
- '**/TalentsEngineer.xml'
|
||||||
|
|
||||||
- name: cruising
|
- name: cruising
|
||||||
regex: <Talent identifier="cruising">!anyvalue="(?<speedbonus>!num)"!anyvalue="(?<speedbonusv>!num)"
|
regex: <Talent identifier="cruising">!anyvalue="(?<fuelefficiency>!num)"!anyvalue="(?<fuelefficiencyv>!num)"!anyvalue="(?<fuelefficiencyv2>!num)"
|
||||||
lua: |
|
lua: |
|
||||||
speedbonus=round(speedbonus*2, 2)
|
fuelefficiency=round(fuelefficiency*2, 2)
|
||||||
speedbonusv=round(speedbonusv*2, 2)
|
fuelefficiencyv=round(1-fuelefficiency/100, 2)
|
||||||
|
fuelefficiencyv2=round(1-fuelefficiency/100, 2)
|
||||||
files:
|
files:
|
||||||
- '**/TalentsEngineer.xml'
|
- '**/TalentsEngineer.xml'
|
||||||
|
|
||||||
- name: buzzing
|
- name: buzzing
|
||||||
regex: <Talent identifier="buzzing">!anyvalue="(?<poweroutput>!num)"!anyvalue="(?<poweroutputv>!num)"
|
regex: <Talent identifier="buzzing">!anyvalue="(?<poweroutput>!num)"!anyvalue="(?<poweroutputv>!num)"!anyvalue="(?<poweroutputv2>!num)"
|
||||||
lua: |
|
lua: |
|
||||||
poweroutput=round(poweroutput*2, 2)
|
poweroutput=round(poweroutput*2, 2)
|
||||||
poweroutputv=round(poweroutputv*2, 2)
|
poweroutputv=round(1+poweroutput/100, 2)
|
||||||
|
poweroutputv2=round(1+poweroutput/100, 2)
|
||||||
files:
|
files:
|
||||||
- '**/TalentsEngineer.xml'
|
- '**/TalentsEngineer.xml'
|
||||||
|
|
||||||
- name: dangerzone
|
# Don't know how these multipliers work yet, 0.5 is ambiguous
|
||||||
regex: <Talent identifier="dangerzone">!anyvalue="(?<resistance>!num)"!anymultiplier="(?<resistancev>!num)"
|
# - name: dangerzone
|
||||||
lua: |
|
# regex: <Talent identifier="dangerzone">!anyvalue="(?<resistance>!num)"!anymultiplier="(?<resistancev>!num)"
|
||||||
resistance=round(resistance*2, 2)
|
# lua: |
|
||||||
resistancev=round(resistancev*2, 2)
|
# resistance=round(resistance*1.5, 2)
|
||||||
files:
|
# resistancev=round(resistancev*1.5, 2)
|
||||||
- '**/TalentsEngineer.xml'
|
# files:
|
||||||
|
# - '**/TalentsEngineer.xml'
|
||||||
|
|
||||||
- name: phdinnuclearphysics
|
- name: phdinnuclearphysics
|
||||||
regex: <Talent identifier="phdinnuclearphysics">!anyvalue="(?<powerbonus>!num)"!anyvalue="(?<radiationresistance>!num)"!anyvalue="(?<powerbonusv>!num)"!anyvalue="(?<radiationresistancev>!num)"
|
regex: <Talent identifier="phdinnuclearphysics">!anyvalue="(?<meleepower>!num)"!anymultiplier="(?<meleepowerv>!num)"
|
||||||
lua: |
|
lua: |
|
||||||
powerbonus=round(powerbonus*2, 2)
|
meleepower=round(meleepower*2, 2)
|
||||||
radiationresistance=round(radiationresistance*2, 2)
|
meleepowerv=round(meleepower/100, 2)
|
||||||
powerbonusv=round(powerbonusv*2, 2)
|
|
||||||
radiationresistancev=round(radiationresistancev*2, 2)
|
|
||||||
files:
|
files:
|
||||||
- '**/TalentsEngineer.xml'
|
- '**/TalentsEngineer.xml'
|
||||||
|
Reference in New Issue
Block a user