curses UI improvements

This commit is contained in:
luxick
2015-08-25 16:34:16 +02:00
parent e82f89d689
commit 0d22dc1251
6 changed files with 13 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
from config import *
from mayorgotchi import Mayorgotchi
@@ -19,7 +20,7 @@ class Kinggotchi:
result = 'I am Kinggotchi '+str(self.name)+'.\nIn my Kingdom live '+str(self.all_tamagotchis())+' Tamagotichs.\nIn my Kingdom '+str(self.all_dead())+' Tamagotchis have died so far.\n\nThese are the '+str(len(self.myvillages))+' Villages in my Kingdom:\n'
for n in self.myvillages:
result += '-------------------------------------------------------------------------------\n'
# result += '-----------------------------------------------------------------------------------------\n'
result += n.give_overview()
return result