Beispiel #1
0
def make_teddy_bear(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=10.0, appreciate=0.0, 
                  ownerid='', forsale=True, solidinvestment=playerid, 
                  liquidaterate=0.3, tax=0.05, ratio=10.0)
Beispiel #2
0
def make_yacht(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=100000.0, appreciate=0.0, 
                  ownerid='', forsale=True, solidinvestment=playerid, 
                  liquidaterate=0.1, tax=0.15, ratio=300000.0)
    
Beispiel #3
0
def make_postcard(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=1.50, appreciate=0.0, 
                  ownerid='', solidinvestment=playerid, 
                  liquidaterate=0.8, total=0, forsale=0)
    
Beispiel #4
0
def make_red_rose(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=3.25, appreciate=0.0, 
                  ownerid='', solidinvestment=playerid, 
                  liquidaterate=0.8, total=0, forsale=0)
Beispiel #5
0
def make_muffin_burger(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=3.0, appreciate=0.0, 
                  ownerid='', solidinvestment=playerid, 
                  liquidaterate=0.17, total=0, forsale=0)
Beispiel #6
0
def make_yacht(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=400000.0, appreciate=0.0, 
                  ownerid='', solidinvestment=playerid, 
                  liquidaterate=0.6, total=0, forsale=0)
Beispiel #7
0
def make_employee(stuffname, playerid):
    return doo.makestuff(name=stuffname, price=50000.0, appreciate=0.0, 
                  ownerid='', solidinvestment=playerid, 
                  liquidaterate=0.465, total=0, forsale=0)