maybe i am dumb.
but this block of code
if cow['mood'] = 0: cow_base_price += 50
if cow['mood'] = 1: cow_base_price += 100
if cow['mood'] = 2: cow_base_price += 150
if cow['mood'] = 3: cow_base_price += 200
if cow['mood'] = 4: cow_base_price += 250
if cow['mood'] = 5: cow_base_price += 300
if cow['mood'] = 6: cow_base_price -= 20
if cow['mood'] = 7: cow_base_price -= 40
if cow['mood'] = 8: cow_base_price -= 60
if cow['mood'] = 9: cow_base_price -= 100
if cow['mood'] = 10: cow_base_price -= 250
and this block of code
if cow['mood'] = 0: $csell_mood = 'Hmm, she seems <font color="#0000D8">calm</font>. We do not like depressive cows, it can be disastrous for their productivity.'
if cow['mood'] = 1: $csell_mood = 'Hmm, she seems <font color="#0000D8">calm</font>. We do not like depressive cows, it can be disastrous for their productivity.'
if cow['mood'] = 2: $csell_mood = 'It seems that you have a <font color="#0000D8">pleased</font> cow: it’s a good point, they always are a bit more productive.'
if cow['mood'] = 3: $csell_mood = 'It seems that you have a <font color="#0000D8">pleased</font> cow: it’s a good point, they always are a bit more productive.'
if cow['mood'] = 4: $csell_mood = 'She looks really <font color="#0000D8">happy</font> with her fate, it’s enjoyable to see. Happiness is good for business, in a farm.'
if cow['mood'] = 5: $csell_mood = 'She looks really <font color="#0000D8">happy</font> with her fate, it’s enjoyable to see. Happiness is good for business, in a farm.'
if cow['mood'] = -1: $csell_mood = 'She looks pretty <font color="#0000D8">sad</font>… Not a big deal, but happy cows always are more productive, you see?'
if cow['mood'] = -2: $csell_mood = 'She looks pretty <font color="#0000D8">sad</font>… Not a big deal, but happy cows always are more productive, you see?'
if cow['mood'] = -3: $csell_mood = 'She looks pretty <font color="#0000D8">sad</font>… Not a big deal, but happy cows always are more productive, you see?'
if cow['mood'] = -4: $csell_mood = 'Well… This slave is <font color="#0000D8">depressed</font>… You know, it’s bad for business, it can impacts very badly the productivity of our cows.'
if cow['mood'] = -5: $csell_mood = 'Well… This slave is <font color="#0000D8">depressed</font>… You know, it’s bad for business, it can impacts very badly the productivity of our cows.'
feels like they dont line up.
am i stupid about how mood works?