forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 9
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 #111 from Merrokitsune/Fix-prototypes-and-adds-pok…
…er-cards-to-gaming-vending-machine Fix prototypes and adds poker cards to gaming vending machine
- Loading branch information
Showing
5 changed files
with
643 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ | |
PaperCNCSheet: 6 | ||
MysteryFigureBox: 2 | ||
BooksBag: 3 | ||
CardBoxPokerFilled: 4 |
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,62 @@ | ||
- type: entity | ||
name: poker card box | ||
parent: CardBoxPoker | ||
id: CardBoxPokerFilled | ||
suffix: Filled | ||
components: | ||
- type: StorageFill | ||
contents: | ||
- id: CardPokerSpadeAce | ||
- id: CardPokerSpadeTwo | ||
- id: CardPokerSpadeThree | ||
- id: CardPokerSpadeFour | ||
- id: CardPokerSpadeFive | ||
- id: CardPokerSpadeSix | ||
- id: CardPokerSpadeSeven | ||
- id: CardPokerSpadeEight | ||
- id: CardPokerSpadeNine | ||
- id: CardPokerSpadeTen | ||
- id: CardPokerSpadeJack | ||
- id: CardPokerSpadeQueen | ||
- id: CardPokerSpadeKing | ||
- id: CardPokerHeartAce | ||
- id: CardPokerHeartTwo | ||
- id: CardPokerHeartThree | ||
- id: CardPokerHeartFour | ||
- id: CardPokerHeartFive | ||
- id: CardPokerHeartSix | ||
- id: CardPokerHeartSeven | ||
- id: CardPokerHeartEight | ||
- id: CardPokerHeartNine | ||
- id: CardPokerHeartTen | ||
- id: CardPokerHeartJack | ||
- id: CardPokerHeartQueen | ||
- id: CardPokerHeartKing | ||
- id: CardPokerClubAce | ||
- id: CardPokerClubTwo | ||
- id: CardPokerClubThree | ||
- id: CardPokerClubFour | ||
- id: CardPokerClubFive | ||
- id: CardPokerClubSix | ||
- id: CardPokerClubSeven | ||
- id: CardPokerClubEight | ||
- id: CardPokerClubNine | ||
- id: CardPokerClubTen | ||
- id: CardPokerClubJack | ||
- id: CardPokerClubQueen | ||
- id: CardPokerClubKing | ||
- id: CardPokerDiamondAce | ||
- id: CardPokerDiamondTwo | ||
- id: CardPokerDiamondThree | ||
- id: CardPokerDiamondFour | ||
- id: CardPokerDiamondFive | ||
- id: CardPokerDiamondSix | ||
- id: CardPokerDiamondSeven | ||
- id: CardPokerDiamondEight | ||
- id: CardPokerDiamondNine | ||
- id: CardPokerDiamondTen | ||
- id: CardPokerDiamondJack | ||
- id: CardPokerDiamondKing | ||
- id: CardPokerDiamondQueen | ||
- id: CardPokerMiscellaneousJokerClown | ||
- id: CardPokerMiscellaneousJokerMime |
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,28 @@ | ||
- type: entity | ||
parent: BaseStorageItem | ||
id: CardBoxBase | ||
description: Useful for carrying items in your hands. | ||
abstract: true | ||
components: | ||
- type: Item | ||
size: Normal | ||
- type: Storage | ||
grid: | ||
- 0,0,12,4 | ||
quickInsert: true | ||
areaInsert: true | ||
whitelist: | ||
tags: | ||
- TabletopCard | ||
|
||
|
||
- type: entity | ||
parent: CardBoxBase | ||
id: CardBoxPoker | ||
name: poker card box | ||
components: | ||
- type: Sprite | ||
sprite: Ronstation/Objects/Storage/Fun/Card/poker_card_box.rsi | ||
state: icon | ||
- type: Item | ||
sprite: Ronstation/Objects/Storage/Fun/Card/poker_card_box.rsi |
Oops, something went wrong.