Skip to content

Commit

Permalink
Merge pull request #14 from Coffee-fueled-deadlines/Development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
Coffee-fueled-deadlines authored Sep 6, 2024
2 parents 8dff75e + f3ce9c7 commit 3d09e0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if __name__ == '__main__':
print( "\n\t--Stats--\n")
print( "\t\tStrength is: " + str( newPlayer.strength ))
print( "\t\tDexterity is: " + str( newPlayer.dexterity ))
print( "\t\tConsitution is: " + str( newPlayer.constitution ))
print( "\t\tConstitution is: " + str( newPlayer.constitution ))
print( "\t\tWisdom is: " + str( newPlayer.wisdom ))
print( "\t\tIntelligence is: " + str( newPlayer.intelligence ))
print( "\t\tCharisma is: " + str( newPlayer.charisma ))
Expand All @@ -63,7 +63,7 @@ if __name__ == '__main__':
print( "\n\t--Stats--\n")
print( "\t\tStrength is: " + str( newPlayer.strength ))
print( "\t\tDexterity is: " + str( newPlayer.dexterity ))
print( "\t\tConsitution is: " + str( newPlayer.constitution ))
print( "\t\tConstitution is: " + str( newPlayer.constitution ))
print( "\t\tWisdom is: " + str( newPlayer.wisdom ))
print( "\t\tIntelligence is: " + str( newPlayer.intelligence ))
print( "\t\tCharisma is: " + str( newPlayer.charisma ))
Expand All @@ -89,7 +89,7 @@ if __name__ == '__main__':
print( "\n\t--Stats--\n")
print( "\t\tStrength is: " + str( newPlayer.strength ))
print( "\t\tDexterity is: " + str( newPlayer.dexterity ))
print( "\t\tConsitution is: " + str( newPlayer.constitution ))
print( "\t\tConstitution is: " + str( newPlayer.constitution ))
print( "\t\tWisdom is: " + str( newPlayer.wisdom ))
print( "\t\tIntelligence is: " + str( newPlayer.intelligence ))
print( "\t\tCharisma is: " + str( newPlayer.charisma ))
Expand Down Expand Up @@ -240,7 +240,7 @@ print( f"Strength Stat is: {strength_stat[0]} and the rolls where: {strength_sta

## Serialization/Deserialization (JSON)

PyDnD now supports JSON Serialization and Deserialization (This means that you can easily export your character to and from a .json file). Below are some examples of how to do Serialize a character:
PyDnD now supports JSON Serialization and Deserialization (This means that you can easily export your character to and from a .json file). Below are some examples of how to Serialize a character:

### Examples
```python
Expand Down

0 comments on commit 3d09e0c

Please sign in to comment.