Skip to content

Commit

Permalink
Split out more game_data and cleaned up redundant functions
Browse files Browse the repository at this point in the history
  • Loading branch information
RPINerd committed Aug 1, 2024
1 parent 0faf504 commit 3a554fc
Show file tree
Hide file tree
Showing 5 changed files with 293 additions and 437 deletions.
29 changes: 28 additions & 1 deletion src/commander.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,34 @@

import random

from constants import INSURANCE_RATE, INTEREST_RATE, MAXSKILL, MERCENARYNAMES, Skills
from .constants import INSURANCE_RATE, INTEREST_RATE, MAXSKILL, MERCENARYNAMES, Skills


class CriminalRecord:
PSYCHOPATH = 0
VILLAIN = 1
CRIMINAL = 2
CROOK = 3
DUBIOUS = 4
CLEAN = 5
LAWFUL = 6
TRUSTED = 7
LIKED = 8
HERO = 9
ERRNO = 10


class CombatReputation:
HARMLESS = 0
MOSTLY_HARMLESS = 1
POOR = 2
AVERAGE = 3
ABOVE_AVERAGE = 4
COMPETENT = 5
DANGEROUS = 6
DEADLY = 7
ELITE = 8
BORG = 9


class Commander:
Expand Down
Loading

0 comments on commit 3a554fc

Please sign in to comment.