Skip to content

Commit

Permalink
changed config path for windows, need to adjust mana bar
Browse files Browse the repository at this point in the history
  • Loading branch information
eseverett committed Apr 14, 2024
1 parent eeeb616 commit d8dadb0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions conf.csv
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Name,Category,Cost,Level,Description
Basic Enchantment,Enchantment,50,1,Level 1 enchantment cost.
Knife,Conjuration,10,1,Knife with D4+1 damage. Gone after 5 round.
Flame Thrower,Distruction,10,1,Flame thrower with D8 fire damage. 10ft range 5ft arch.
Basic Enchantment,Enchantment,50,1,Level 1 enchantment cost.
Stobe,Illusion,5,1,Stobe light with enemy disadvantage withing 20 ft. 120 ft range.
Minor Healing,Restoration,10,1,2 hit points.
Silent Step,Alteration,5,1,Quite foot steps.
Silent Step,Illusion,5,1,Quite foot steps.
Displacement,Illusion,25,1,Imposes disadvantage. 10ft distance.
3 changes: 2 additions & 1 deletion mana.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ def castSpell(self, manaCost):
self.currentValueLabel.setText(f'Current Value: {newValue}')

def main():
configFile = 'DND_Chance_GUI/conf.csv'
# configFile = 'DND_Chance_GUI/conf.csv'
configFile = 'conf.csv'
app = QApplication(sys.argv)
mainWin = MainWindow(configFile)
mainWin.show()
Expand Down

0 comments on commit d8dadb0

Please sign in to comment.