Extra Costumes - Rpym

You might also like

You are on page 1of 2

init python:

item_ino_kimono = Outfit(
__("Кимоно для Ино"),
200,
descr=__("Праздничное кимоно."),
char="Ino",
lust=6,
layer="costume",
val="kimono",
ptr=True,
shop="tenten",
icon=KTCharInventoryPreview(
"ino",
ino_preview_nude_layers + [("costume", "kimono")],
ino_costume_inv_preview
)
)

item_hinata_tape = Outfit(
__("Скотч для Хинаты"),
30,
descr=__(""),
char="Hinata",
lust=32,
layer="costume",
val="tape",
shop="tenten",
icon=KTCharInventoryPreview(
"hinata",
hinata_preview_layers + [("costume", "tape")],
ino_costume_inv_preview
)
)

item_sakura_tape = Outfit(
__("Скотч для Сакуры"),
30,
descr=__(""),
char="Sakura",
lust=32,
layer="costume",
val="tape",
shop="tenten",
icon=KTCharInventoryPreview(
"sakura",
sakura_preview_layers + [("costume", "tape")],
ino_costume_inv_preview
)
)

item_ino_tape = Outfit(
__("Скотч для Ино"),
30,
descr=__(""),
char="Ino",
lust=32,
layer="costume",
val="tape",
shop="tenten",
icon=KTCharInventoryPreview(
"ino",
ino_preview_nude_layers + [("costume", "tape")],
ino_costume_inv_preview
)
)

You might also like