WTS/game/scripts/characters/hooch/wardrobe.rpy

69 lines
4.8 KiB
Plaintext

###############
## Character ##
###############
default hooch = Doll(name="hooch",
clothes={"headgear": [None, 15, True],
"hair": [None, 4, True],
"glasses": [None, 12, True],
"earrings": [None, 14, True],
"neckwear": [None, 16, True],
"robe": [None, 22, True],
"gloves": [None, 14, True],
"top": [None, 15, True],
"bra": [None, 9, True],
"bottom": [None, 8, True],
"garterbelt": [None, 7, True],
"panties": [None, 6, True],
"stockings": [None, 5, True],
"buttplug": [None, -1, True],
"pubes": [None, 3, True],
"tattoo0": [None, 1, True],
"tattoo1": [None, 1, True],
"tattoo2": [None, 1, True],
"tattoo3": [None, 1, True],
"tattoo4": [None, 1, True],
"piercing0": [None, 2, True],
"piercing1": [None, 2, True],
"piercing2": [None, 2, True],
"piercing3": [None, 2, True],
"piercing4": [None, 2, True],
"accessory0": [None, 12, True],
"accessory1": [None, 12, True],
"accessory2": [None, 12, True],
"accessory3": [None, 12, True],
"accessory4": [None, 12, True],
"makeup0": [None, 3, True],
"makeup1": [None, 3, True],
"makeup2": [None, 3, True],
"makeup3": [None, 3, True],
"makeup4": [None, 3, True]},
face={"tears": [None, 12, True],
"cheeks": [None, 7, True],
"eyebrows": ["base", 11, True],
"eyes": ["base", 8, True],
"pupils": ["mid", 9, True],
"mouth": ["base", 13, True]},
body={"base": ["front", 0],
"breasts": [None, 2],
"backside": [None, 1]}
)
###############
## Hair ##
###############
default hoo_hair_base = DollCloth("hooch", ("head", "hair"), "hair", "base", [[125, 72, 42, 255]], unlocked=True)
default hoo_panties_sport = DollCloth("hooch", ("lower undergarment", "panties"), "panties", "sport", [[192, 65, 54, 255], [237, 225, 255, 255]], unlocked=True)
default hoo_bra_sport = DollCloth("hooch", ("upper undergarment", "bras"), "bra", "sport", [[192, 65, 54, 255], [237, 225, 255, 255]], unlocked=True)
default hoo_top_sport = DollCloth("hooch", ("upper body", "shirts"), "top", "sport_shirt", [[237, 225, 255, 255], [139, 104, 192, 255]], unlocked=True)
default hoo_bottom_sport = DollCloth("hooch", ("lower body", "skirts"), "bottom", "sport_trousers", [[139, 104, 192, 255], [237, 225, 255, 255]], unlocked=True)
default hoo_gloves_sport = DollCloth("hooch", ("upper body", "gloves"), "gloves", "sport_gloves", [[78, 72, 115, 255]], unlocked=True)
default hoo_robe_sport = DollCloth("hooch", ("upper body", "robes"), "robe", "sport_robe", [[59, 63, 88, 255], [112, 34, 111, 255], [198, 118, 198, 255]], unlocked=True)
default hoo_headgear_sport = DollCloth("hooch", ("head", "headgear"), "headgear", "sport_goggles", [[96, 134, 145, 255], [154, 98, 50, 255], [49, 60, 91, 255]], unlocked=True)
default hoo_accessory_broom = DollCloth("hooch", ("misc", "accessory"), "accessory1", "broom", [[144, 83, 64, 255], [121, 87, 71, 255], [163, 159, 112, 255]], unlocked=True, zorder=22)
default hoo_accessory_broom_dildo = DollCloth("hooch", ("misc", "accessory"), "accessory1", "broom_dildo", [[144, 83, 64, 255], [121, 87, 71, 255], [163, 159, 112, 255]], unlocked=True, zorder=22)
default hoo_outfit_default = DollOutfit([hoo_hair_base, hoo_panties_sport, hoo_bra_sport, hoo_top_sport, hoo_bottom_sport, hoo_gloves_sport, hoo_robe_sport, hoo_headgear_sport, hoo_accessory_broom], unlocked=True)
default hoo_outfit_last = DollOutfit([hoo_hair_base, hoo_panties_sport, hoo_bra_sport, hoo_top_sport, hoo_bottom_sport, hoo_gloves_sport, hoo_robe_sport, hoo_headgear_sport, hoo_accessory_broom], hidden=True)