Пример #1
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)

# Imperial ships
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar3 = AttackResults.AttackResults(bw, phantie)
ar3.focuscombos()

Пример #2
0
"""

import Ship
import AttackResults

# Scum ships
z95 = Ship.Ship("Z-95", 2, 2, 2, 2)
m3a = Ship.Ship("Scyk", 2, 3, 2, 1)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
tieint = Ship.Ship("Tie Interceptor", 3, 3, 3, 0)
tiedef = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar = AttackResults.AttackResults(z95, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(yw, tie)
ar.focuscombos()

ar = AttackResults.AttackResults(z95, tieint)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, tieint)
ar.focuscombos()
ar = AttackResults.AttackResults(yw, tieint)
ar.focuscombos()

ar = AttackResults.AttackResults(z95, tiedef)
ar.focuscombos()
Пример #3
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
advtie = Ship.Ship("Adv TIE", 2, 3, 3, 2)

ar1 = AttackResults.AttackResults(tie, xw)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(tie, yw)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(tie, bw)
ar3.focuscombos()
ar4 = AttackResults.AttackResults(tie, aw)
ar4.focuscombos()
Пример #4
0
"""

import Ship
import AttackResults

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar1 = AttackResults.AttackResults(xw, deftie)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(yw, deftie)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(bw, deftie)
ar3.focuscombos()
ar4 = AttackResults.AttackResults(aw, deftie)
ar4.focuscombos()

ar1 = AttackResults.AttackResults(xw, phantie)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(yw, phantie)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(bw, phantie)
ar3.focuscombos()
# These don't work so well on the old machine.
Пример #5
0
import AttackResults

# Scum ships
z95 = Ship.Ship("Z-95", 2, 2, 2, 2)
m3a = Ship.Ship("Scyk", 2, 3, 2, 1)
hwk = Ship.Ship("HWK-290", 1, 2, 4, 1)
fs = Ship.Ship("Firespray-31", 3, 2, 6, 4)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
advtie = Ship.Ship("Adv TIE", 2, 3, 3, 2)
tieint = Ship.Ship("Tie Interceptor", 3, 3, 3, 0)
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar = AttackResults.AttackResults(z95, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(fs, tie)
ar.focuscombos()

ar = AttackResults.AttackResults(z95, advtie)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, advtie)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, advtie)
ar.focuscombos()
ar = AttackResults.AttackResults(fs, advtie)
Пример #6
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar4 = AttackResults.AttackResults(deftie, aw)
ar4.focuscombos()

Пример #7
0
import Ship
import AttackResults

# Scum ships
z95 = Ship.Ship("Z-95", 2, 2, 2, 2)
m3a = Ship.Ship("Scyk", 2, 3, 2, 1)
hwk = Ship.Ship("HWK-290", 1, 2, 4, 1)
fs = Ship.Ship("Firespray-31", 3, 2, 6, 4)

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

ar = AttackResults.AttackResults(z95, xw)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, xw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, xw)
ar.focuscombos()
ar = AttackResults.AttackResults(fs, xw)
ar.focuscombos()

ar = AttackResults.AttackResults(z95, yw)
ar.focuscombos()
ar = AttackResults.AttackResults(m3a, yw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, yw)
ar.focuscombos()
ar = AttackResults.AttackResults(fs, yw)
Пример #8
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)

# Imperial ships
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar2 = AttackResults.AttackResults(xw, phantie)
ar2.focuscombos()

Пример #9
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)

# Imperial ships
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar2 = AttackResults.AttackResults(phantie, yw)
ar2.focuscombos()

Пример #10
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
yt = Ship.Ship("YT-1300", 2, 1, 4, 6)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 0, 3)

ar1 = AttackResults.AttackResults(tie, yt)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(yt, tie)
ar2.focuscombos()
Пример #11
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar3 = AttackResults.AttackResults(bw, deftie)
ar3.focuscombos()

Пример #12
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)

# Imperial ships
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar3 = AttackResults.AttackResults(phantie, bw)
ar3.focuscombos()

Пример #13
0
hwk.addsplit(1)

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
advtie = Ship.Ship("Adv TIE", 2, 3, 3, 2)
tieint = Ship.Ship("Tie Interceptor", 3, 3, 3, 0)
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar = AttackResults.AttackResults(hwk, xw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, yw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, bw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, aw)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, advtie)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, tieint)
ar.focuscombos()
ar = AttackResults.AttackResults(hwk, deftie)
ar.focuscombos()
Пример #14
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Scum ships
m3ah = Ship.Ship("Hvy Scyk", 3, 3, 2, 1)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
tieint = Ship.Ship("Tie Interceptor", 3, 3, 3, 0)
tiedef = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar = AttackResults.AttackResults(m3ah, tie)
ar.focuscombos()
ar = AttackResults.AttackResults(m3ah, tieint)
ar.focuscombos()
ar = AttackResults.AttackResults(m3ah, tiedef)
ar.focuscombos()

Пример #15
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar2 = AttackResults.AttackResults(yw, deftie)
ar2.focuscombos()

Пример #16
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar2 = AttackResults.AttackResults(deftie, yw)
ar2.focuscombos()

Пример #17
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)

ar3 = AttackResults.AttackResults(deftie, bw)
ar3.focuscombos()

Пример #18
0
"""

import Ship
import AttackResults

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
deftie = Ship.Ship("TIE Defender", 3, 3, 3, 3)
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar1 = AttackResults.AttackResults(deftie, xw)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(deftie, yw)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(deftie, bw)
ar3.focuscombos()
ar4 = AttackResults.AttackResults(deftie, aw)
ar4.focuscombos()

ar1 = AttackResults.AttackResults(phantie, xw)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(phantie, yw)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(phantie, bw)
ar3.focuscombos()
# These don't work so well on the old machine.
Пример #19
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
phantie = Ship.Ship("TIE Phantom", 4, 2, 2, 2)

ar4 = AttackResults.AttackResults(phantie, aw)
ar4.focuscombos()

Пример #20
0
# -*- coding: utf-8 -*-
"""
Created on Sat May 23 21:50:49 2015

@author: bushnelf
"""

import Ship
import AttackResults

# Rebel ships
xw = Ship.Ship("X-Wing", 3, 2, 3, 2)
yw = Ship.Ship("Y-Wing", 2, 1, 5, 3)
bw = Ship.Ship("B-Wing", 3, 1, 3, 5)
aw = Ship.Ship("A-Wing", 2, 3, 2, 2)

# Imperial ships
tie = Ship.Ship("TIE", 2, 3, 3, 0)
advtie = Ship.Ship("Adv TIE", 2, 3, 3, 2)

ar1 = AttackResults.AttackResults(xw, tie)
ar1.focuscombos()
ar2 = AttackResults.AttackResults(yw, tie)
ar2.focuscombos()
ar3 = AttackResults.AttackResults(bw, tie)
ar3.focuscombos()
ar4 = AttackResults.AttackResults(aw, tie)
ar4.focuscombos()