Changeset 9986 for trunk/src/dialogs.py

Show
Ignore:
Timestamp:
07/22/08 23:08:52 (4 months ago)
Author:
js
Message:

Show mood in chat window.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/dialogs.py

    r9960 r9986  
    3838 
    3939from random import randrange 
     40from common.pep import MOODS 
    4041 
    4142try: 
     
    443444 
    444445class ChangeMoodDialog: 
    445         moods = ['None', 'afraid', 'amazed', 'angry', 'annoyed', 'anxious', 
    446                 'aroused', 'ashamed', 'bored', 'brave', 'calm', 
    447                 'cold', 'confused', 'contented', 'cranky', 'curious', 
    448                 'depressed', 'disappointed', 'disgusted', 'distracted',  
    449                 'embarrassed', 'excited', 'flirtatious', 'frustrated',  
    450                 'grumpy', 'guilty', 'happy', 'hot', 'humbled',  
    451                 'humiliated', 'hungry', 'hurt', 'impressed', 'in_awe',  
    452                 'in_love', 'indignant', 'interested', 'intoxicated',  
    453                 'invincible', 'jealous', 'lonely', 'mean', 'moody',  
    454                 'nervous', 'neutral', 'offended', 'playful', 'proud',  
    455                 'relieved', 'remorseful', 'restless', 'sad', 'sarcastic',  
    456                 'serious', 'shocked', 'shy', 'sick', 'sleepy',  
    457                 'stressed', 'surprised', 'thirsty', 'worried'] 
     446        moods = MOODS 
    458447        def __init__(self, account): 
    459448                self.account = account