mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
11 lines
177 B
Python
11 lines
177 B
Python
import sys
|
|
|
|
def isAlly(ally):
|
|
if ally == 'rebel' or ally == 'imperial':
|
|
return 1
|
|
return 0
|
|
|
|
def isEnemy(enemy):
|
|
if enemy == 'thug' or enemy == 'bandit':
|
|
return 1
|
|
return 0 |