Skip to content

Commit

Permalink
update g_luca prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mushymato committed Jan 26, 2020
1 parent 5ab20a7 commit 29b5698
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions adv/g_luca.py
Expand Up @@ -10,7 +10,7 @@ class G_Luca(Adv):
a3 = ('cc',0.13,'hit15')

conf = {}
conf['slot.a'] = RR()+LC()
conf['slot.a'] = The_Wyrmclan_Duo()+A_New_Years_Battle()
conf['slot.d'] = Daikokuten()
conf['acl'] = """
`s1
Expand Down Expand Up @@ -54,8 +54,8 @@ def custom_crit_mod(this):
current_rate += 0.1 * icon_count # s1 icon crit
current_rate = min(1.0, current_rate)
mean_rate += current_rate * state_p

if (b := state[0]) is not None and t - b < 3.0: # proc in last 3 seconds
if state[0] is not None and t - state[0] < 3.0: # proc in last 3 seconds
new_states[state] += state_p # state won't change
else:
miss_rate = 1.0 - current_rate
Expand Down
4 changes: 2 additions & 2 deletions adv/g_luca.py.maxstacks.py
Expand Up @@ -8,7 +8,7 @@ def module():
return G_Luca

class G_Luca(g_luca.G_Luca):
comment = '7 buff icons from team (buff value not considered); use FitF if HP<70'
comment = '7 buff icons from team (buff value not considered); use VC/FitF if HP<70'

def d_slots(this):
this.slots.a = The_Wyrmclan_Duo()+FoG()
Expand All @@ -18,5 +18,5 @@ def buff_icon_count(this):

if __name__ == '__main__':
conf = {}
adv_test.test(module(), conf, verbose=-2, mass=1)
adv_test.test(module(), conf, verbose=-2, mass=0)

3 changes: 2 additions & 1 deletion chara_quick.txt
Expand Up @@ -133,4 +133,5 @@ joachim.py
ieyasu.py
sinoa.py
patia.py
heinwald.py
heinwald.py
g_luca.py
3 changes: 1 addition & 2 deletions chara_slow.txt
Expand Up @@ -4,5 +4,4 @@ s_luca.py
addis.py
ezelith.py
sazanka.py
natalie.py
g_luca.py
natalie.py
2 changes: 1 addition & 1 deletion www
Submodule www updated from 7a0f41 to d20250

0 comments on commit 29b5698

Please sign in to comment.