Commit b8eb8b05 by BellCodeEditor

auto save

parent d985aa1d
Showing with 19 additions and 13 deletions
...@@ -10,19 +10,25 @@ b=Hero('SB2',2,200,250) ...@@ -10,19 +10,25 @@ b=Hero('SB2',2,200,250)
c=Hero('SB3',3,300,350) c=Hero('SB3',3,300,350)
d=Hero('SB4',4,400,450) d=Hero('SB4',4,400,450)
e=Hero('SB5',5,500,550) e=Hero('SB5',5,500,550)
print('SB1的攻击',a.bf) # print('SB1的攻击',a.bf)
print('SB1的攻击',a.cf) # print('SB1的攻击',a.cf)
print('SB1的攻击',a.df) # print('SB1的攻击',a.df)
print('SB2的攻击',b.bf) # print('SB2的攻击',b.bf)
print('SB2的攻击',b.cf) # print('SB2的攻击',b.cf)
print('SB3的攻击',c.bf) # print('SB3的攻击',c.bf)
print('SB3的攻击',c.cf) # print('SB3的攻击',c.cf)
print('SB4的攻击',d.bf) # print('SB4的攻击',d.bf)
print('SB4的攻击',d.cf) # print('SB4的攻击',d.cf)
print('SB6的攻击',e.bf) # print('SB6的攻击',e.bf)
print('SB6的攻击',e.cf) # print('SB6的攻击',e.cf)
def s(): def s(dd):
a.level=a.level+0.0000000000000000000001 dd.level=dd.level+1
s(a)
s(b)
s(c)
s(d)
s(e)
print(e.level)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment