#=============================================================
# Name: macomber
# Date: 2025.10.21
# Program: Final Fantasy I: The Spell Forge of Coneria - FIRST PART
#=============================================================
import os
import time
#Clears The Screen
os.system('CLS')
# Step 1: Generate the Spells
spell_levels = []
spell_damage = 100
for level in range(10):
spell_levels.append(spell_damage)
spell_damage = int(spell_damage * 1.10)
print("==================================")
print(" FINAL FANTASY I: SPELL FORGE")
print("==================================")
print("LEVEL".ljust(10) + " | " + "POWER".ljust(10))
level_counter = 1
for damage in spell_levels:
print(f" {level_counter}".ljust(10) + " | " + f" {damage}".ljust(10))
level_counter = level_counter + 1