mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
26 lines
458 B
Python
26 lines
458 B
Python
import sys
|
|
|
|
def Rifle():
|
|
return "expertise_critical_rifle"
|
|
|
|
def Carbine():
|
|
return "expertise_critical_carbine"
|
|
|
|
def Pistol():
|
|
return "expertise_critical_pistol"
|
|
|
|
def OneHandedMelee():
|
|
return "expertise_critical_1h"
|
|
|
|
def TwoHandedMelee():
|
|
return "expertise_critical_2h"
|
|
|
|
def Unarmed():
|
|
return "expertise_critical_unarmed"
|
|
|
|
def Polearm():
|
|
return "expertise_critical_polearm"
|
|
|
|
def FreeTargetingHeavyWeapon():
|
|
return "expertise_critical_heavy"
|