-
Notifications
You must be signed in to change notification settings - Fork 639
Smoke.mp4 #931
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
Merged
deltanedas
merged 22 commits into
DeltaV-Station:master
from
KittenColony:cigarette-collection-1
Apr 19, 2024
Merged
Smoke.mp4 #931
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
94ea316
added De' Jure and Sugar Rush cigarettes
KittenColony 7b06326
making life easier in the future
KittenColony cdade7f
candy carton :)
KittenColony ce9ff24
Merge branch 'master' into cigarette-collection-1
KittenColony d832b28
Merge branch 'master' into cigarette-collection-1
KittenColony 68ed163
Merge branch 'master' into cigarette-collection-1
KittenColony 6289690
trying to get this to work
KittenColony 98592cd
Merge branch 'master' into cigarette-collection-1
KittenColony 7719da7
!!!
KittenColony 6776016
YOU CAN EAT EM NOW >:D
KittenColony 0b6e84c
Merge branch 'master' into cigarette-collection-1
KittenColony 479eee2
Merge branch 'master' into cigarette-collection-1
KittenColony 227beab
Merge branch 'master' into cigarette-collection-1
KittenColony 75073ba
Merge branch 'master' into cigarette-collection-1
KittenColony 2b9ddb2
Merge branch 'master' into cigarette-collection-1
KittenColony e12124f
added to cig machine / loot spawners
KittenColony 916a64c
Merge branch 'master' into cigarette-collection-1
KittenColony dcaed7b
# DeltaV (thank you Death)
KittenColony bdb190a
Merge branch 'master' into cigarette-collection-1
KittenColony af409f3
thank also
KittenColony 187d0d6
Merge branch 'DeltaV-Station:master' into cigarette-collection-1
KittenColony 2bd676b
Merge branch 'master' into cigarette-collection-1
KittenColony File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
33 changes: 33 additions & 0 deletions
33
Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cartons.yml
This file contains hidden or 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,33 @@ | ||
| - type: entity | ||
| id: CigCartonPurple | ||
| parent: CigCartonGreen | ||
| name: De Jure carton | ||
| description: A carton containing 6 packets of De Jure. | ||
| components: | ||
| - type: Sprite | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi | ||
| layers: | ||
| - state: closed | ||
| - type: Item | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi | ||
| - type: StorageFill | ||
| contents: | ||
| - id: CigPackPurple | ||
| amount: 5 | ||
|
|
||
| - type: entity | ||
| id: CigCartonCandy | ||
| parent: CigCartonGreen | ||
| name: Sugar Rush carton | ||
| description: A carton containing 6 packets of Sugar Rush. | ||
| components: | ||
| - type: Sprite | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi | ||
| layers: | ||
| - state: closed | ||
| - type: Item | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi | ||
| - type: StorageFill | ||
| contents: | ||
| - id: CigPackCandy | ||
| amount: 5 | ||
45 changes: 45 additions & 0 deletions
45
Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml
This file contains hidden or 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,45 @@ | ||
| - type: entity | ||
| id: CigaretteOlive | ||
| suffix: olive | ||
| parent: Cigarette | ||
| name: cigarette | ||
| description: A roll of tobacco and nicotine soaked in some chemical, smells like olives. | ||
| components: | ||
| - type: SolutionContainerManager | ||
| solutions: | ||
| smokable: | ||
| maxVol: 15 | ||
| reagents: | ||
| - ReagentId: Nicotine | ||
| Quantity: 10 | ||
| - ReagentId: OilOlive | ||
| Quantity: 5 | ||
|
|
||
| - type: entity | ||
| id: CigaretteCandy | ||
| suffix: candy | ||
| parent: [Cigarette, FoodBase] | ||
| name: cigarette | ||
| description: Sugar sticks designed to look like a roll of nicotine and tobacco. | ||
| components: | ||
| - type: Appearance | ||
| - type: Food | ||
| - type: Tag | ||
| tags: | ||
| - FoodSnack | ||
| - type: FlavorProfile | ||
| flavors: | ||
| - sweet | ||
| - type: Sprite | ||
| sprite: Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi | ||
| state: unlit-icon | ||
| - type: Clothing | ||
| sprite: Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi | ||
| slots: [ mask ] | ||
| - type: SolutionContainerManager | ||
| solutions: | ||
| food: | ||
| maxVol: 10 | ||
| reagents: | ||
| - ReagentId: Sugar | ||
| Quantity: 10 | ||
|
KittenColony marked this conversation as resolved.
|
||
29 changes: 29 additions & 0 deletions
29
Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml
This file contains hidden or 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,29 @@ | ||
| - type: entity | ||
| id: CigPackPurple | ||
| parent: CigPackBase | ||
| name: De Jure packet | ||
| description: Your divine right to smoke. Tastes like olives and fake gold. | ||
| components: | ||
| - type: Sprite | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi | ||
| - type: Item | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi | ||
| - type: StorageFill | ||
| contents: | ||
| - id: CigaretteOlive | ||
| amount: 10 | ||
|
|
||
| - type: entity | ||
| id: CigPackCandy | ||
|
KittenColony marked this conversation as resolved.
|
||
| parent: CigPackBase | ||
| name: Sugar Rush packet | ||
| description: It's sweetened! | ||
| components: | ||
| - type: Sprite | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi | ||
| - type: Item | ||
| sprite: DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi | ||
| - type: StorageFill | ||
| contents: | ||
| - id: CigaretteCandy | ||
| amount: 10 | ||
This file contains hidden or 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
Binary file added
BIN
+254 Bytes
...res/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+289 Bytes
...eltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+295 Bytes
...ltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...urces/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/meta.json
This file contains hidden or 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,25 @@ | ||
| { | ||
| "version": 1, | ||
| "license": "CC-BY-SA-3.0", | ||
| "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", | ||
| "size": { | ||
| "x": 32, | ||
| "y": 32 | ||
| }, | ||
| "states": [ | ||
| { | ||
| "name": "open" | ||
| }, | ||
| { | ||
| "name": "closed" | ||
| }, | ||
| { | ||
| "name": "inhand-left", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "inhand-right", | ||
| "directions": 4 | ||
| } | ||
| ] | ||
| } |
Binary file added
BIN
+271 Bytes
...tures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/pink.rsi/open.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+253 Bytes
...s/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+289 Bytes
...taV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+295 Bytes
...aV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
...ces/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/meta.json
This file contains hidden or 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,25 @@ | ||
| { | ||
| "version": 1, | ||
| "license": "CC-BY-SA-3.0", | ||
| "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", | ||
| "size": { | ||
| "x": 32, | ||
| "y": 32 | ||
| }, | ||
| "states": [ | ||
| { | ||
| "name": "open" | ||
| }, | ||
| { | ||
| "name": "closed" | ||
| }, | ||
| { | ||
| "name": "inhand-left", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "inhand-right", | ||
| "directions": 4 | ||
| } | ||
| ] | ||
| } |
Binary file added
BIN
+280 Bytes
...res/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Cartons/purple.rsi/open.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+248 Bytes
...tures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...eltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/equipped-BELT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+289 Bytes
.../DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+295 Bytes
...DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions
32
Resources/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/meta.json
This file contains hidden or 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,32 @@ | ||
| { | ||
| "version": 1, | ||
| "license": "CC-BY-SA-3.0", | ||
| "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", | ||
| "size": { | ||
| "x": 32, | ||
| "y": 32 | ||
| }, | ||
| "states": [ | ||
| { | ||
| "name": "closed" | ||
| }, | ||
| { | ||
| "name": "open" | ||
| }, | ||
| { | ||
| "name": "trash" | ||
| }, | ||
| { | ||
| "name": "inhand-left", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "inhand-right", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "equipped-BELT", | ||
| "directions": 4 | ||
| } | ||
| ] | ||
| } |
Binary file added
BIN
+262 Bytes
...extures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/open.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+258 Bytes
...xtures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/pink.rsi/trash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+248 Bytes
...res/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/closed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+159 Bytes
...taV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/equipped-BELT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+289 Bytes
...eltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+295 Bytes
...ltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/inhand-right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions
32
...urces/Textures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/meta.json
This file contains hidden or 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,32 @@ | ||
| { | ||
| "version": 1, | ||
| "license": "CC-BY-SA-3.0", | ||
| "copyright": "Sprites by Github KittenColony / Discord kittencolony (297865728374210561)", | ||
| "size": { | ||
| "x": 32, | ||
| "y": 32 | ||
| }, | ||
| "states": [ | ||
| { | ||
| "name": "closed" | ||
| }, | ||
| { | ||
| "name": "open" | ||
| }, | ||
| { | ||
| "name": "trash" | ||
| }, | ||
| { | ||
| "name": "inhand-left", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "inhand-right", | ||
| "directions": 4 | ||
| }, | ||
| { | ||
| "name": "equipped-BELT", | ||
| "directions": 4 | ||
| } | ||
| ] | ||
| } |
Binary file added
BIN
+270 Bytes
...tures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/open.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+261 Bytes
...ures/DeltaV/Objects/Consumable/Smokeables/Cigarettes/Packs/purple.rsi/trash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.