Things
This commit is contained in:
@ -20,9 +20,9 @@ def setUpDict(cmd : dict):
|
||||
else:
|
||||
for x in range(len(keys)):
|
||||
if x%3 != 2:
|
||||
result += keys[x] + ": " + str(values[x]) + "\t"
|
||||
result += "**" + keys[x] + "**" + ": " + str(values[x]) + " "
|
||||
else:
|
||||
result += keys[x] + ": " + str(values[x]) + "\n"
|
||||
result += "**" + keys[x] + "**" + ": " + str(values[x]) + "\n"
|
||||
return result
|
||||
else:
|
||||
return "There doesn't seem to be anything here..."
|
||||
@ -78,7 +78,7 @@ def characterSheet(character : dict):
|
||||
text2 = setUpDict(character["Characteristics"])
|
||||
text3 = setUpDict(character["Skills"])
|
||||
|
||||
return name, text1+"\n"+text2+divider+text3
|
||||
return name, text1+"\n\n"+text2+divider+text3
|
||||
|
||||
def charData(user : str,cmd : str):
|
||||
with open("characters.json", "r") as f:
|
||||
|
@ -22,37 +22,37 @@
|
||||
},
|
||||
"Skills": {
|
||||
"Astrogation": 0,
|
||||
"Athletics": 0,
|
||||
"Brawl": 0,
|
||||
"Charm": 0,
|
||||
"Coercion": 0,
|
||||
"Computers": 0,
|
||||
"Cool": 0,
|
||||
"Vigilance": 0,
|
||||
"Coordination": 0,
|
||||
"Core Worlds": 0,
|
||||
"Discipline": 0,
|
||||
"Gunnery": 0,
|
||||
"Leadership": 0,
|
||||
"Lightsaber": 0,
|
||||
"Lore": 0,
|
||||
"Mechanics": 0,
|
||||
"Medicine": 0,
|
||||
"Melee": 0,
|
||||
"Negotiation": 0,
|
||||
"Outer Rim": 0,
|
||||
"Perception": 0,
|
||||
"Piloting - Planetary": 0,
|
||||
"Piloting - Space": 0,
|
||||
"Ranged - Heavy": 0,
|
||||
"Ranged - Light": 0,
|
||||
"Athletics": 0,
|
||||
"Coercion": 0,
|
||||
"Coordination": 0,
|
||||
"Charm": 0,
|
||||
"Medicine": 0,
|
||||
"Negotiation": 0,
|
||||
"Piloting - Planetary": 0,
|
||||
"Stealth": 0,
|
||||
"Skullduggery": 0,
|
||||
"Brawl": 0,
|
||||
"Discipline": 0,
|
||||
"Gunnery": 0,
|
||||
"Core Worlds": 0,
|
||||
"Outer Rim": 0,
|
||||
"Underworld": 0,
|
||||
"Leadership": 0,
|
||||
"Lore": 0,
|
||||
"Resilience": 0,
|
||||
"Skullduggery": 0,
|
||||
"Stealth": 0,
|
||||
"Streetwise": 0,
|
||||
"Survival": 0,
|
||||
"Xenology": 0,
|
||||
"Lightsaber": 0
|
||||
"Underworld": 0,
|
||||
"Vigilance": 0,
|
||||
"Xenology": 0
|
||||
},
|
||||
"Lightsaber Characteristic": "Brawn",
|
||||
"Obligations": {},
|
||||
|
Reference in New Issue
Block a user