Skip to content

Commit

Permalink
more balance tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheackraze committed Jul 29, 2023
1 parent 1c89aa2 commit b679bb0
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 61 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Lathe/LatheSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public override void Update(float frameTime)
if (lathe.CurrentRecipe == null)
continue;

if (_timing.CurTime - comp.StartTime >= comp.ProductionLength)
if (_timing.CurTime - comp.StartTime >= (comp.ProductionLength * 3))
FinishProducing(uid, lathe);
}
}
Expand Down
112 changes: 56 additions & 56 deletions Resources/Prototypes/Procedural/salvage_loot.yml
Original file line number Diff line number Diff line change
@@ -1,98 +1,98 @@
# Ores
# - Low value
- type: salvageLoot
id: OreTin
desc: Veins of steel
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreTin
# desc: Veins of steel
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreTin
# Grasslands: OreTin
# Lava: BasaltOreTin
# Snow: SnowOreTin

- type: salvageLoot
id: OreQuartz
desc: Veins of quartz
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreQuartz
# desc: Veins of quartz
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreQuartz
# Grasslands: OreQuartz
# Lava: BasaltOreQuartz
# Snow: SnowOreQuartz

# - Medium value
- type: salvageLoot
id: OreGold
desc: Veins of gold ore
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreGold
# desc: Veins of gold ore
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreGold
# Grasslands: OreGold
# Lava: BasaltOreGold
# Snow: SnowOreGold

- type: salvageLoot
id: OreSilver
desc: Veins of silver ore
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreSilver
# desc: Veins of silver ore
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreSilver
# Grasslands: OreSilver
# Lava: BasaltOreSilver
# Snow: SnowOreSilver

# - High value
- type: salvageLoot
id: OrePlasma
desc: Veins of plasma ore
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OrePlasma
# desc: Veins of plasma ore
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OrePlasma
# Grasslands: OrePlasma
# Lava: BasaltOrePlasma
# Snow: SnowOrePlasma

- type: salvageLoot
id: OreUranium
desc: Veins of uranium ore
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreUranium
# desc: Veins of uranium ore
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreUranium
# Grasslands: OreUranium
# Lava: BasaltOreUranium
# Snow: SnowOreUranium

- type: salvageLoot
id: OreBananium
desc: Veins of bananium ore
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreBananium
# desc: Veins of bananium ore
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreBananium
# Grasslands: OreBananium
# Lava: BasaltOreBananium
# Snow: SnowOreBananium

- type: salvageLoot
id: OreArtifactFragment
desc: artifact fragment-embedded rock
guaranteed: true
loots:
- !type:BiomeMarkerLoot
proto:
# - type: salvageLoot
# id: OreArtifactFragment
# desc: artifact fragment-embedded rock
# guaranteed: true
# loots:
# - !type:BiomeMarkerLoot
# proto:
# Caves: OreArtifactFragment
# Grasslands: OreArtifactFragment
# Lava: BasaltOreArtifactFragment
Expand Down
5 changes: 2 additions & 3 deletions Resources/Prototypes/Procedural/salvage_rewards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,5 @@
EnergySword: 0.5
EnergyDagger: 0.5
EnergyCutlass: 0.5
Claymore: 0.25
Katana: 0.25
WeaponLauncherRocket: 1.0
Claymore: 0.5
WeaponLauncherRocket: 0.5
2 changes: 1 addition & 1 deletion Resources/Prototypes/_NF/Shipyard/sprinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
minPlayers: 0
stations:
Sprinter:
stationProto: StandardFrontierVessel
stationProto: StandardFrontierExpeditionVessel
components:
- type: StationNameSetup
mapNameTemplate: '{0} Sprinter {1}'
Expand Down

0 comments on commit b679bb0

Please sign in to comment.