Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix prototypes and adds poker cards to gaming vending machine #111

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@
PaperCNCSheet: 6
MysteryFigureBox: 2
BooksBag: 3
CardBoxPokerFilled: 4
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
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
Loading
Loading