init -2 python:
Room(**{
"name":"flowershop",
"exits": ["mall","bakery","bookstore","clothesshop","publicpool","arcade","jewelrystore","coffeeshop","electronic"],
"alternate_exits": ["mall"],
"hours": (9,18),
"days": "1234567",
"display_name": "Flower Shop",
"buy": [
Consumable("+ Good Stuff", money_cost = 15, effects = [("grooming",3),("energy",3),("hunger",3),("fun",3)]),
Consumable("+ Bad Stuff", money_cost = 15, effects = [("grooming",-2),("energy",-2),("hunger",-2),("fun",-2)]),
Consumable("+ Medicine", money_cost = 50, label=["cured"]),
Gift("- Red Stuff", money_cost = 30, love_bonus = 50),
Gift("- White Stuff", money_cost = 30, sub_bonus = 50, love_bonus = 10),
Gift("- Black Stuff", money_cost = 30, sub_bonus = -50, love_bonus = 10),
Gift("- Pink Stuff", money_cost = 30, les_bonus = 50, love_bonus = 10),
Gift("- Blue Stuff", money_cost = 30, les_bonus = -50, love_bonus = 10),
Consumable("Morgans glitter", money_cost = 100, label=["morgans_glitter"]),
Consumable("xONCEx Superbox", money_cost = 100, label=["Superbox"]),
Gift("flowers",money_cost=50,label="flowers",love_bonus=1, limit=50, bonus_traits=["artsy"]),
Gift("lots of flowers",money_cost=100,label="flowers",love_bonus=2, limit=50, bonus_traits=["princess", "artsy"])
],
"music": "music/roa_music/walk_around.ogg",
"outfit":"casual"
})
Activity(**{
"name": "flowershop_shop",
"duration": 0,
"display_name": "Shop",
"icon":"shop",
"game_conditions": {"room":["flowershop"]},
"label": ["flowershop_shop"]
})
label flowershop_shop:
python:
hero.shop(ROOMS["flowershop"].buy)
return
label Superbox:
python:
# <--- This makes a row a comment. Place it at line start to deaktivate
hero.money+=15000
# hero.money+=500000
hero.gain_skill("cooking")
hero.gain_skill("massage")
hero.gain_skill("guitar")
hero.gain_skill("martial_arts")
hero.gain_skill("golf")
hero.gain_skill("dance")
hero.gain_skill("shooting")
hero.gain_skill("video_games")
hero.gain_skill("work")
hero.gain_skill("iron_stomach")
hero.gain_skill("luck")
hero.knowledge += 60
hero.charm += 60
hero.fitness += 60
aletta.set_flag("pill",True)
aletta.set_flag("unpilled",False)
alexis.set_flag("pill",True)
alexis.set_flag("unpilled",False)
bree.set_flag("pill",True)
bree.set_flag("unpilled",False)
sasha.set_flag("pill",True)
sasha.set_flag("unpilled",False)
anna.set_flag("pill",True)
anna.set_flag("unpilled",False)
audrey.set_flag("pill",True)
audrey.set_flag("unpilled",False)
cassidy.set_flag("pill",True)
cassidy.set_flag("unpilled",False)
cherie.set_flag("pill",True)
cherie.set_flag("unpilled",False)
hanna.set_flag("pill",True)
hanna.set_flag("unpilled",False)
harmony.set_flag("pill",True)
harmony.set_flag("unpilled",False)
kleio.set_flag("pill",True)
kleio.set_flag("unpilled",False)
kylie.set_flag("pill",True)
kylie.set_flag("unpilled",False)
lavish.set_flag("pill",True)
lavish.set_flag("unpilled",False)
lexi.set_flag("pill",True)
lexi.set_flag("unpilled",False)
morgan.set_flag("pill",True)
morgan.set_flag("unpilled",False)
palla.set_flag("pill",True)
palla.set_flag("unpilled",False)
samantha.set_flag("pill",True)
samantha.set_flag("unpilled",False)
shiori.set_flag("pill",True)
shiori.set_flag("unpilled",False)
return
label morgans_glitter:
python:
morgan.male.val -= 10
# hero.money+=5000
return