mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-15 00:07:39 -04:00
32 lines
408 B
Python
32 lines
408 B
Python
import sys
|
|
|
|
def jedi_robe_Faint():
|
|
return 1400
|
|
|
|
def jedi_robe_Weak():
|
|
return 3000
|
|
|
|
def jedi_robe_Lucent():
|
|
return 4000
|
|
|
|
def jedi_robe_Luminous():
|
|
return 5000
|
|
|
|
def jedi_robe_Radiant():
|
|
return 6500
|
|
|
|
def jedi_cloak_Faint():
|
|
return 0
|
|
|
|
def jedi_cloak_Weak():
|
|
return 0
|
|
|
|
def jedi_cloak_Lucent():
|
|
return 4500
|
|
|
|
def jedi_cloak_Luminous():
|
|
return 5600
|
|
|
|
def jedi_cloak_Radiant():
|
|
return 6500
|
|
|