diff --git a/characters.json b/characters.json index f370e67..7a73a41 100644 --- a/characters.json +++ b/characters.json @@ -1,73 +1,2 @@ { - "Nikolaj": { - "Name": "Jar Jar Bonks", - "Species": "Gungan", - "Career": "Idiot", - "Specialization Trees": [], - "Soak": 0, - "Wound Threshold": 0, - "Wounds": 0, - "Strain Threshold": 0, - "Strain": 0, - "Defense, Ranged": 0, - "Defense, Melee": 0, - "Force Rating": 0, - "Characteristics": { - "Brawn": 0, - "Agility": 0, - "Intellect": 0, - "Cunning": 0, - "Willpower": 0, - "Presence": 0 - }, - "Skills": { - "Astrogation": 0, - "Computers": 0, - "Cool": 0, - "Vigilance": 0, - "Mechanics": 0, - "Melee": 0, - "Perception": 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, - "Streetwise": 0, - "Survival": 0, - "Xenology": 0, - "Lightsaber": 0 - }, - "Lightsaber Characteristic": "Brawn", - "Obligations": {}, - "Morality": { - "Emotional Weakness": "", - "Emotional Strength": "", - "Conflict": "", - "Morality": "" - }, - "Credits": 0, - "Equipment": [], - "Armor": "", - "Critical Injuries": {}, - "Weapons": {}, - "Talents": {}, - "Force Powers": {} - } } \ No newline at end of file diff --git a/swchar.py b/swchar.py index a91cb11..95bc88e 100644 --- a/swchar.py +++ b/swchar.py @@ -20,7 +20,7 @@ def setUpDict(cmd : dict): else: for x in range(len(keys)): if x%3 != 2: - result += "**" + keys[x] + "**" + ": " + str(values[x]) + " " + result += "**" + keys[x] + "**" + ": " + str(values[x]) + " " else: result += "**" + keys[x] + "**" + ": " + str(values[x]) + "\n" return result