forked from Corvax-Frontier/Frontier
-
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 branch 'Corvax-Frontier:master' into CvarFrontier
- Loading branch information
Showing
7 changed files
with
191 additions
and
61 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
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
89 changes: 89 additions & 0 deletions
89
Resources/Prototypes/_NF/Catalog/Fills/Items/briefcases.yml
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,89 @@ | ||
- type: entity | ||
parent: BaseItem | ||
id: SpaceCashExpedition | ||
name: spesos | ||
description: Hard-earned credits. Fresh from the digital cash mint. Smells like success and unpaid taxes. | ||
abstract: true | ||
categories: [ HideSpawnMenu ] | ||
suffix: Money | ||
components: | ||
- type: Sprite | ||
sprite: Objects/Storage/Briefcases/briefcase_brown.rsi | ||
state: icon | ||
- type: Item | ||
size: Ginormous | ||
sprite: Objects/Storage/Briefcases/briefcase_brown.rsi | ||
- type: CargoSellBlacklist # We dont want this to be sold by mistake, and so you cannot sell this on a cargo depo | ||
|
||
- type: entity | ||
parent: SpaceCashExpedition | ||
id: SpaceCashExpeditionT1 | ||
name: spesos (5,000) | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: SpawnItemsOnUse | ||
items: | ||
- id: SpaceCash5000 | ||
sound: | ||
collection: storageRustle | ||
- type: StaticPrice # Require since you can still sell a ship that have it on it | ||
price: 5000 | ||
|
||
- type: entity | ||
parent: SpaceCashExpedition | ||
id: SpaceCashExpeditionT2 | ||
name: spesos (10,000) | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: SpawnItemsOnUse | ||
items: | ||
- id: SpaceCash10000 | ||
sound: | ||
collection: storageRustle | ||
- type: StaticPrice # Require since you can still sell a ship that have it on it | ||
price: 10000 | ||
|
||
- type: entity | ||
parent: SpaceCashExpedition | ||
id: SpaceCashExpeditionT3 | ||
name: spesos (20,000) | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: SpawnItemsOnUse | ||
items: | ||
- id: SpaceCash20000 | ||
sound: | ||
collection: storageRustle | ||
- type: StaticPrice # Require since you can still sell a ship that have it on it | ||
price: 20000 | ||
|
||
- type: entity | ||
parent: SpaceCashExpedition | ||
id: SpaceCashExpeditionT4 | ||
name: spesos (40,000) | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: SpawnItemsOnUse | ||
items: | ||
- id: SpaceCash20000 | ||
amount: 2 | ||
sound: | ||
collection: storageRustle | ||
- type: StaticPrice # Require since you can still sell a ship that have it on it | ||
price: 40000 | ||
|
||
- type: entity | ||
parent: SpaceCashExpedition | ||
id: SpaceCashExpeditionT5 | ||
name: spesos (70,000) | ||
categories: [ HideSpawnMenu ] | ||
components: | ||
- type: SpawnItemsOnUse | ||
items: | ||
- id: SpaceCash25000 | ||
amount: 2 | ||
- id: SpaceCash20000 | ||
sound: | ||
collection: storageRustle | ||
- type: StaticPrice # Require since you can still sell a ship that have it on it | ||
price: 70000 |
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,24 @@ | ||
- type: weightedRandomEntity | ||
id: ExpeditionRewardT1 | ||
weights: | ||
SpaceCashExpeditionT1: 1.0 | ||
|
||
- type: weightedRandomEntity | ||
id: ExpeditionRewardT2 | ||
weights: | ||
SpaceCashExpeditionT2: 1.0 | ||
|
||
- type: weightedRandomEntity | ||
id: ExpeditionRewardT3 | ||
weights: | ||
SpaceCashExpeditionT3: 1.0 | ||
|
||
- type: weightedRandomEntity | ||
id: ExpeditionRewardT4 | ||
weights: | ||
SpaceCashExpeditionT4: 1.0 | ||
|
||
- type: weightedRandomEntity | ||
id: ExpeditionRewardT5 | ||
weights: | ||
SpaceCashExpeditionT5: 1.0 |