Skip to content

Instantly share code, notes, and snippets.

@Halftroll0
Halftroll0 / rpg_creator.py
Created October 7, 2025 16:39
fCC RPG Creator
full_dot = '●'
empty_dot = '○'
def create_character(name, strength, intelligence, charisma):
if type(name) != str:
return "The character name should be a string"
elif len(name) > 10:
return "The character name is too long"