forked from NebulaSS13/Nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request NebulaSS13#4594 from MistakeNot4892/feature/doeicons
Adding various fancy goods from Doe's icon set.
- Loading branch information
Showing
21 changed files
with
108 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/obj/item/chems/glass/handmade/fancy | ||
abstract_type = /obj/item/chems/glass/handmade/fancy | ||
material = /decl/material/solid/metal/silver | ||
|
||
/obj/item/chems/glass/handmade/fancy/get_single_monetary_worth() | ||
. = ..() * 1.5 // Crafting value, todo proper crafting skill modifying sale price. | ||
|
||
/obj/item/chems/glass/handmade/fancy/decanter | ||
name = "decanter" | ||
desc = "A masterfully made decanter with a fluted neck and graceful handle." | ||
icon = 'icons/obj/items/handmade/decanter.dmi' | ||
amount_per_transfer_from_this = 10 | ||
volume = 120 | ||
obj_flags = OBJ_FLAG_HOLLOW | OBJ_FLAG_INSULATED_HANDLE | ||
|
||
/obj/item/chems/glass/handmade/fancy/goblet | ||
name = "goblet" | ||
desc = "An elegant goblet with a flared base, likely handmade by some master artisan." | ||
icon = 'icons/obj/items/handmade/cup_fancy.dmi' | ||
amount_per_transfer_from_this = 10 | ||
volume = 60 | ||
|
||
/obj/item/chems/glass/handmade/fancy/bowl | ||
name = "bowl" | ||
desc = "A sleek, polished bowl, likely handmade by some master artisan." | ||
icon = 'icons/obj/items/handmade/bowl_fancy.dmi' | ||
amount_per_transfer_from_this = 10 | ||
volume = 60 | ||
|
||
/obj/item/chems/glass/handmade/fancy/vase | ||
name = "vase" | ||
desc = "An elegant masterwork vase." | ||
icon = 'icons/obj/items/handmade/vase_fancy.dmi' | ||
amount_per_transfer_from_this = 20 | ||
volume = 240 | ||
material = /decl/material/solid/stone/ceramic | ||
|
||
/obj/item/chems/glass/handmade/fancy/vase/fluted | ||
desc = "An elegant masterwork vase with a fluted neck." | ||
icon = 'icons/obj/items/handmade/vase_fancy_fluted.dmi' | ||
|
||
/obj/item/chems/glass/handmade/fancy/vase/fluted/update_name() | ||
. = ..() | ||
SetName("fluted [name]") | ||
|
||
// Decorated subtypes for mapping/ | ||
/obj/item/chems/glass/handmade/fancy/vase/mapped | ||
decorations = list(/decl/material/solid/organic/bone) | ||
|
||
/obj/item/chems/glass/handmade/fancy/vase/fluted/mapped | ||
decorations = list(/decl/material/solid/organic/bone) | ||
|
||
/obj/item/chems/glass/handmade/fancy/goblet/mapped | ||
material = /decl/material/solid/metal/gold | ||
decorations = list(/obj/item/gemstone/octagon/ruby) | ||
|
||
/obj/item/chems/glass/handmade/fancy/bowl/mapped | ||
decorations = list(/obj/item/gemstone/octagon/sapphire) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Sort of a placeholder for future generalised decorations. | ||
/decl/item_decoration/inset | ||
name = "inlay material" | ||
icon_state_modifier = "-inlay" | ||
can_decorate_types = list( | ||
/obj/item/chems/glass/handmade/fancy/vase | ||
) | ||
can_decorate_with_types = list( | ||
/obj/item/stack/material/plank = 1, | ||
/obj/item/stack/material/bone = 1, | ||
/obj/item/stack/material/ingot = 1, | ||
/obj/item/stack/material/sheet = 1, | ||
/obj/item/stack/material/brick = 1 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters