mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Custom loadout updates
Adds sorting to the custom gear menu list. Adds the white cheongsam as a custom gear item. Moves the purple comb out of the custom item defines as it is no longer just a custom item. Adds pockets to the bomber jacket. Reduces the cost of ponchos to 3.
This commit is contained in:
@@ -66,3 +66,16 @@
|
|||||||
user << "<span class='notice'>Where are the lips on that?</span>"
|
user << "<span class='notice'>Where are the lips on that?</span>"
|
||||||
|
|
||||||
//you can wipe off lipstick with paper! see code/modules/paperwork/paper.dm, paper/attack()
|
//you can wipe off lipstick with paper! see code/modules/paperwork/paper.dm, paper/attack()
|
||||||
|
|
||||||
|
|
||||||
|
/obj/item/weapon/haircomb //sparklysheep's comb
|
||||||
|
name = "purple comb"
|
||||||
|
desc = "A pristine purple comb made from flexible plastic."
|
||||||
|
w_class = 1.0
|
||||||
|
icon_state = "purplecomb"
|
||||||
|
item_state = "purplecomb"
|
||||||
|
|
||||||
|
/obj/item/weapon/haircomb/attack_self(mob/user)
|
||||||
|
if(user.r_hand == src || user.l_hand == src)
|
||||||
|
user.visible_message(text("\red [] uses [] to comb their hair with incredible style and sophistication. What a [].", user, src, user.gender == FEMALE ? "lady" : "guy"))
|
||||||
|
return
|
||||||
|
|||||||
@@ -1,18 +1,45 @@
|
|||||||
var/global/list/gear_datums = list()
|
var/global/list/gear_datums = list()
|
||||||
|
|
||||||
/hook/startup/proc/populate_gear_list()
|
/hook/startup/proc/populate_gear_list()
|
||||||
|
var/list/sort_categories = list(
|
||||||
|
"[slot_head]" = list(),
|
||||||
|
"[slot_glasses]" = list(),
|
||||||
|
"[slot_wear_mask]" = list(),
|
||||||
|
"[slot_w_uniform]" = list(),
|
||||||
|
"attachments" = list(),
|
||||||
|
"[slot_wear_suit]" = list(),
|
||||||
|
"[slot_gloves]" = list(),
|
||||||
|
"[slot_shoes]" = list(),
|
||||||
|
"utility" = list(),
|
||||||
|
"misc" = list(),
|
||||||
|
"unknown" = list(),
|
||||||
|
)
|
||||||
|
|
||||||
|
//create a list of gear datums to sort
|
||||||
for(var/type in typesof(/datum/gear)-/datum/gear)
|
for(var/type in typesof(/datum/gear)-/datum/gear)
|
||||||
var/datum/gear/G = new type()
|
var/datum/gear/G = new type()
|
||||||
gear_datums[G.display_name] = G
|
|
||||||
|
var/category = (G.sort_category in sort_categories)? G.sort_category : "unknown"
|
||||||
|
sort_categories[category][G.display_name] = G
|
||||||
|
|
||||||
|
for (var/category in sort_categories)
|
||||||
|
gear_datums.Add(sortAssoc(sort_categories[category]))
|
||||||
|
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
/datum/gear
|
/datum/gear
|
||||||
var/display_name //Name/index.
|
var/display_name //Name/index. Must be unique.
|
||||||
var/path //Path to item.
|
var/path //Path to item.
|
||||||
var/cost //Number of points used.
|
var/cost //Number of points used.
|
||||||
var/slot //Slot to equip to.
|
var/slot //Slot to equip to.
|
||||||
var/list/allowed_roles //Roles that can spawn with this item.
|
var/list/allowed_roles //Roles that can spawn with this item.
|
||||||
var/whitelisted //Term to check the whitelist for..
|
var/whitelisted //Term to check the whitelist for..
|
||||||
|
var/sort_category
|
||||||
|
|
||||||
|
/datum/gear/New()
|
||||||
|
..()
|
||||||
|
if (!sort_category)
|
||||||
|
sort_category = "[slot]"
|
||||||
|
|
||||||
// This is sorted both by slot and alphabetically! Don't fuck it up!
|
// This is sorted both by slot and alphabetically! Don't fuck it up!
|
||||||
// Headslot items
|
// Headslot items
|
||||||
@@ -230,7 +257,7 @@ var/global/list/gear_datums = list()
|
|||||||
/datum/gear/sterilemask
|
/datum/gear/sterilemask
|
||||||
display_name = "sterile mask"
|
display_name = "sterile mask"
|
||||||
path = /obj/item/clothing/mask/surgical
|
path = /obj/item/clothing/mask/surgical
|
||||||
slot = slot_w_uniform
|
slot = slot_wear_mask
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
// Uniform slot
|
// Uniform slot
|
||||||
@@ -260,7 +287,7 @@ var/global/list/gear_datums = list()
|
|||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
/datum/gear/skirt_red
|
/datum/gear/skirt_red
|
||||||
display_name = " plaid skirt, red"
|
display_name = "plaid skirt, red"
|
||||||
path = /obj/item/clothing/under/dress/plaid_red
|
path = /obj/item/clothing/under/dress/plaid_red
|
||||||
slot = slot_w_uniform
|
slot = slot_w_uniform
|
||||||
cost = 2
|
cost = 2
|
||||||
@@ -277,6 +304,12 @@ var/global/list/gear_datums = list()
|
|||||||
slot = slot_w_uniform
|
slot = slot_w_uniform
|
||||||
cost = 3
|
cost = 3
|
||||||
|
|
||||||
|
/datum/gear/cheongsam
|
||||||
|
display_name = "cheongsam, white"
|
||||||
|
path = /obj/item/clothing/under/cheongsam
|
||||||
|
slot = slot_w_uniform
|
||||||
|
cost = 3
|
||||||
|
|
||||||
/datum/gear/uniform_captain
|
/datum/gear/uniform_captain
|
||||||
display_name = "uniform, captain's dress"
|
display_name = "uniform, captain's dress"
|
||||||
path = /obj/item/clothing/under/dress/dress_cap
|
path = /obj/item/clothing/under/dress/dress_cap
|
||||||
@@ -324,74 +357,88 @@ var/global/list/gear_datums = list()
|
|||||||
/datum/gear/armband_cargo
|
/datum/gear/armband_cargo
|
||||||
display_name = "armband, cargo"
|
display_name = "armband, cargo"
|
||||||
path = /obj/item/clothing/tie/armband/cargo
|
path = /obj/item/clothing/tie/armband/cargo
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armband_emt
|
/datum/gear/armband_emt
|
||||||
display_name = "armband, EMT"
|
display_name = "armband, EMT"
|
||||||
path = /obj/item/clothing/tie/armband/medgreen
|
path = /obj/item/clothing/tie/armband/medgreen
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
/datum/gear/armband_engineering
|
/datum/gear/armband_engineering
|
||||||
display_name = "armband, engineering"
|
display_name = "armband, engineering"
|
||||||
path = /obj/item/clothing/tie/armband/engine
|
path = /obj/item/clothing/tie/armband/engine
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armband_hydroponics
|
/datum/gear/armband_hydroponics
|
||||||
display_name = "armband, hydroponics"
|
display_name = "armband, hydroponics"
|
||||||
path = /obj/item/clothing/tie/armband/hydro
|
path = /obj/item/clothing/tie/armband/hydro
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armband_medical
|
/datum/gear/armband_medical
|
||||||
display_name = "armband, medical"
|
display_name = "armband, medical"
|
||||||
path = /obj/item/clothing/tie/armband/med
|
path = /obj/item/clothing/tie/armband/med
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armband
|
/datum/gear/armband
|
||||||
display_name = "armband, red"
|
display_name = "armband, red"
|
||||||
path = /obj/item/clothing/tie/armband
|
path = /obj/item/clothing/tie/armband
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armband_science
|
/datum/gear/armband_science
|
||||||
display_name = "armband, science"
|
display_name = "armband, science"
|
||||||
path = /obj/item/clothing/tie/armband/science
|
path = /obj/item/clothing/tie/armband/science
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/armpit
|
/datum/gear/armpit
|
||||||
display_name = "shoulder holster"
|
display_name = "shoulder holster"
|
||||||
path = /obj/item/clothing/tie/holster/armpit
|
path = /obj/item/clothing/tie/holster/armpit
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 2
|
cost = 2
|
||||||
allowed_roles = list("Captain", "Head of Personnel", "Security Officer", "Head of Security")
|
allowed_roles = list("Captain", "Head of Personnel", "Security Officer", "Head of Security")
|
||||||
|
|
||||||
/datum/gear/tie_blue
|
/datum/gear/tie_blue
|
||||||
display_name = "tie, blue"
|
display_name = "tie, blue"
|
||||||
path = /obj/item/clothing/tie/blue
|
path = /obj/item/clothing/tie/blue
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/tie_red
|
/datum/gear/tie_red
|
||||||
display_name = "tie, red"
|
display_name = "tie, red"
|
||||||
path = /obj/item/clothing/tie/red
|
path = /obj/item/clothing/tie/red
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/tie_horrible
|
/datum/gear/tie_horrible
|
||||||
display_name = "tie, socially disgraceful"
|
display_name = "tie, socially disgraceful"
|
||||||
path = /obj/item/clothing/tie/horrible
|
path = /obj/item/clothing/tie/horrible
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/brown_vest
|
/datum/gear/brown_vest
|
||||||
display_name = "webbing, engineering"
|
display_name = "webbing, engineering"
|
||||||
path = /obj/item/clothing/tie/storage/brown_vest
|
path = /obj/item/clothing/tie/storage/brown_vest
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 2
|
cost = 2
|
||||||
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer")
|
allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer")
|
||||||
|
|
||||||
/datum/gear/black_vest
|
/datum/gear/black_vest
|
||||||
display_name = "webbing, security"
|
display_name = "webbing, security"
|
||||||
path = /obj/item/clothing/tie/storage/black_vest
|
path = /obj/item/clothing/tie/storage/black_vest
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 2
|
cost = 2
|
||||||
allowed_roles = list("Security Officer","Head of Security","Warden")
|
allowed_roles = list("Security Officer","Head of Security","Warden")
|
||||||
|
|
||||||
/datum/gear/webbing
|
/datum/gear/webbing
|
||||||
display_name = "webbing, simple"
|
display_name = "webbing, simple"
|
||||||
path = /obj/item/clothing/tie/storage/webbing
|
path = /obj/item/clothing/tie/storage/webbing
|
||||||
|
sort_category = "attachments"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
// Suit slot
|
// Suit slot
|
||||||
@@ -404,7 +451,7 @@ var/global/list/gear_datums = list()
|
|||||||
|
|
||||||
/datum/gear/bomber
|
/datum/gear/bomber
|
||||||
display_name = "bomber jacket"
|
display_name = "bomber jacket"
|
||||||
path = /obj/item/clothing/suit/bomber
|
path = /obj/item/clothing/suit/storage/bomber
|
||||||
cost = 4
|
cost = 4
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
@@ -430,31 +477,31 @@ var/global/list/gear_datums = list()
|
|||||||
/datum/gear/gponcho
|
/datum/gear/gponcho
|
||||||
display_name = "poncho, blue"
|
display_name = "poncho, blue"
|
||||||
path = /obj/item/clothing/suit/poncho/blue
|
path = /obj/item/clothing/suit/poncho/blue
|
||||||
cost = 4
|
cost = 3
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
/datum/gear/gponcho
|
/datum/gear/gponcho
|
||||||
display_name = "poncho, green"
|
display_name = "poncho, green"
|
||||||
path = /obj/item/clothing/suit/poncho/green
|
path = /obj/item/clothing/suit/poncho/green
|
||||||
cost = 4
|
cost = 3
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
/datum/gear/rponcho
|
/datum/gear/rponcho
|
||||||
display_name = "poncho, purple"
|
display_name = "poncho, purple"
|
||||||
path = /obj/item/clothing/suit/poncho/purple
|
path = /obj/item/clothing/suit/poncho/purple
|
||||||
cost = 4
|
cost = 3
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
/datum/gear/rponcho
|
/datum/gear/rponcho
|
||||||
display_name = "poncho, red"
|
display_name = "poncho, red"
|
||||||
path = /obj/item/clothing/suit/poncho/red
|
path = /obj/item/clothing/suit/poncho/red
|
||||||
cost = 4
|
cost = 3
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
/datum/gear/poncho
|
/datum/gear/poncho
|
||||||
display_name = "poncho, tan"
|
display_name = "poncho, tan"
|
||||||
path = /obj/item/clothing/suit/poncho
|
path = /obj/item/clothing/suit/poncho
|
||||||
cost = 4
|
cost = 3
|
||||||
slot = slot_wear_suit
|
slot = slot_wear_suit
|
||||||
|
|
||||||
/datum/gear/unathi_robe
|
/datum/gear/unathi_robe
|
||||||
@@ -613,16 +660,24 @@ var/global/list/gear_datums = list()
|
|||||||
cost = 1
|
cost = 1
|
||||||
slot = slot_shoes
|
slot = slot_shoes
|
||||||
|
|
||||||
// "Useful" items
|
// "Useful" items - I'm guessing things that might be used at work?
|
||||||
|
|
||||||
/datum/gear/briefcase
|
/datum/gear/briefcase
|
||||||
display_name = "briefcase"
|
display_name = "briefcase"
|
||||||
path = /obj/item/weapon/storage/briefcase
|
path = /obj/item/weapon/storage/briefcase
|
||||||
|
sort_category = "utility"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
|
/datum/gear/clipboard
|
||||||
|
display_name = "clipboard"
|
||||||
|
path = /obj/item/weapon/clipboard
|
||||||
|
sort_category = "utility"
|
||||||
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/matchbook
|
/datum/gear/matchbook
|
||||||
display_name = "matchbook"
|
display_name = "matchbook"
|
||||||
path = /obj/item/weapon/storage/box/matches
|
path = /obj/item/weapon/storage/box/matches
|
||||||
|
sort_category = "utility"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
// The rest of the trash.
|
// The rest of the trash.
|
||||||
@@ -630,49 +685,53 @@ var/global/list/gear_datums = list()
|
|||||||
/datum/gear/ashtray
|
/datum/gear/ashtray
|
||||||
display_name = "ashtray, plastic"
|
display_name = "ashtray, plastic"
|
||||||
path = /obj/item/ashtray/plastic
|
path = /obj/item/ashtray/plastic
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/cane
|
/datum/gear/cane
|
||||||
display_name = "cane"
|
display_name = "cane"
|
||||||
path = /obj/item/weapon/cane
|
path = /obj/item/weapon/cane
|
||||||
|
sort_category = "misc"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|
||||||
/datum/gear/clipboard
|
|
||||||
display_name = "clipboard"
|
|
||||||
path = /obj/item/weapon/clipboard
|
|
||||||
cost = 1
|
|
||||||
|
|
||||||
/datum/gear/dice
|
/datum/gear/dice
|
||||||
display_name = "d20"
|
display_name = "d20"
|
||||||
path = /obj/item/weapon/dice/d20
|
path = /obj/item/weapon/dice/d20
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/cards
|
/datum/gear/cards
|
||||||
display_name = "deck of cards"
|
display_name = "deck of cards"
|
||||||
path = /obj/item/weapon/deck
|
path = /obj/item/weapon/deck
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/blipstick
|
/datum/gear/blipstick
|
||||||
display_name = "lipstick, black"
|
display_name = "lipstick, black"
|
||||||
path = /obj/item/weapon/lipstick/black
|
path = /obj/item/weapon/lipstick/black
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/jlipstick
|
/datum/gear/jlipstick
|
||||||
display_name = "lipstick, jade"
|
display_name = "lipstick, jade"
|
||||||
path = /obj/item/weapon/lipstick/jade
|
path = /obj/item/weapon/lipstick/jade
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/plipstick
|
/datum/gear/plipstick
|
||||||
display_name = "lipstick, purple"
|
display_name = "lipstick, purple"
|
||||||
path = /obj/item/weapon/lipstick/purple
|
path = /obj/item/weapon/lipstick/purple
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/rlipstick
|
/datum/gear/rlipstick
|
||||||
display_name = "lipstick, red"
|
display_name = "lipstick, red"
|
||||||
path = /obj/item/weapon/lipstick
|
path = /obj/item/weapon/lipstick
|
||||||
|
sort_category = "misc"
|
||||||
cost = 1
|
cost = 1
|
||||||
|
|
||||||
/datum/gear/comb
|
/datum/gear/comb
|
||||||
display_name = "purple comb"
|
display_name = "purple comb"
|
||||||
path = /obj/item/weapon/fluff/cado_keppel_1
|
path = /obj/item/weapon/haircomb
|
||||||
|
sort_category = "misc"
|
||||||
cost = 2
|
cost = 2
|
||||||
|
|||||||
@@ -378,7 +378,7 @@
|
|||||||
icon_state = "blueponcho"
|
icon_state = "blueponcho"
|
||||||
item_state = "blueponcho"
|
item_state = "blueponcho"
|
||||||
|
|
||||||
/obj/item/clothing/suit/bomber
|
/obj/item/clothing/suit/storage/bomber
|
||||||
name = "bomber jacker"
|
name = "bomber jacker"
|
||||||
desc = "A well-worn WW2 leather bomber jacket."
|
desc = "A well-worn WW2 leather bomber jacket."
|
||||||
icon_state = "bomber"
|
icon_state = "bomber"
|
||||||
|
|||||||
@@ -460,4 +460,12 @@
|
|||||||
desc = "The very image of a working man. Not that you're probably doing work."
|
desc = "The very image of a working man. Not that you're probably doing work."
|
||||||
icon_state = "mechanic_s"
|
icon_state = "mechanic_s"
|
||||||
item_state = "mechanic_s"
|
item_state = "mechanic_s"
|
||||||
item_color = "mechanic_s"
|
item_color = "mechanic_s"
|
||||||
|
|
||||||
|
/obj/item/clothing/under/cheongsam
|
||||||
|
name = "White Cheongsam"
|
||||||
|
desc = "It is a white cheongsam dress."
|
||||||
|
icon_state = "mai_yang"
|
||||||
|
item_state = "mai_yang"
|
||||||
|
item_color = "mai_yang"
|
||||||
|
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS
|
||||||
@@ -301,19 +301,9 @@
|
|||||||
icon_on = "engravedzippoon"
|
icon_on = "engravedzippoon"
|
||||||
icon_off = "engravedzippo"
|
icon_off = "engravedzippo"
|
||||||
|
|
||||||
/obj/item/weapon/fluff/cado_keppel_1 //sparklysheep: Cado Keppel
|
/obj/item/weapon/haircomb/fluff/cado_keppel_1 //sparklysheep: Cado Keppel
|
||||||
name = "purple comb"
|
name = "purple comb"
|
||||||
desc = "A pristine purple comb made from flexible plastic. It has a small K etched into its side."
|
desc = "A pristine purple comb made from flexible plastic. It has a small K etched into its side."
|
||||||
w_class = 1.0
|
|
||||||
icon = 'icons/obj/custom_items.dmi'
|
|
||||||
icon_state = "purplecomb"
|
|
||||||
item_state = "purplecomb"
|
|
||||||
|
|
||||||
attack_self(mob/user)
|
|
||||||
if(user.r_hand == src || user.l_hand == src)
|
|
||||||
for(var/mob/O in viewers(user, null))
|
|
||||||
O.show_message(text("\red [] uses [] to comb their hair with incredible style and sophistication. What a [].", user, src, user.gender == FEMALE ? "lady" : "guy"), 1)
|
|
||||||
return
|
|
||||||
|
|
||||||
/obj/item/weapon/fluff/hugo_cinderbacth_1 //thatoneguy: Hugo Cinderbatch
|
/obj/item/weapon/fluff/hugo_cinderbacth_1 //thatoneguy: Hugo Cinderbatch
|
||||||
name = "Old Cane"
|
name = "Old Cane"
|
||||||
@@ -1364,14 +1354,9 @@
|
|||||||
icon = 'icons/obj/custom_items.dmi'
|
icon = 'icons/obj/custom_items.dmi'
|
||||||
icon_state = "yuri_kornienkovich_flask"
|
icon_state = "yuri_kornienkovich_flask"
|
||||||
|
|
||||||
/obj/item/clothing/under/fluff/mai_yang_dress // Mai Yang's pretty pretty dress.
|
/obj/item/clothing/under/cheongsam/fluff/mai_yang_dress // Mai Yang's pretty pretty dress.
|
||||||
name = "White Cheongsam"
|
name = "White Cheongsam"
|
||||||
desc = "It is a white cheongsam dress."
|
desc = "It is a white cheongsam dress."
|
||||||
icon = 'icons/obj/custom_items.dmi'
|
|
||||||
icon_state = "mai_yang"
|
|
||||||
item_state = "mai_yang"
|
|
||||||
item_color = "mai_yang"
|
|
||||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO
|
|
||||||
|
|
||||||
/obj/item/clothing/under/fluff/sakura_hokkaido_kimono
|
/obj/item/clothing/under/fluff/sakura_hokkaido_kimono
|
||||||
name = "Sakura Kimono"
|
name = "Sakura Kimono"
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 57 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 61 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
Reference in New Issue
Block a user