Skip to content

Commit

Permalink
Butlertron Rebalance (#1771)
Browse files Browse the repository at this point in the history
* Update RoboisseurComponent.cs

Signed-off-by: Stop-Signs <[email protected]>

* Update RoboisseurSystem.cs

Signed-off-by: Stop-Signs <[email protected]>

---------

Signed-off-by: Stop-Signs <[email protected]>
  • Loading branch information
Stop-Signs authored Sep 8, 2024
1 parent c05ce9b commit 33a2d12
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,33 +94,39 @@ public sealed partial class RoboisseurComponent : Component
{
"FoodBurgerEmpowered",
"FoodSoupClown",
"FoodSoupChiliClown",
"FoodPiePumpkin",
"FoodSoupTomato",
"FoodBreadMeat",
"FoodBreadCreamcheese",
"FoodCheeseCurds",
"FoodBurgerSuper",
"FoodNoodlesCopy",
// "FoodMothMallow",
"FoodPizzaCorncob",
"FoodPizzaDonkpocket",
"FoodSoupMonkey",
"FoodMothSeedSoup",
"FoodTartGrape",
"FoodMealCubancarp",
"FoodMealSashimi",
"FoodBurgerCarp",
"FoodMothMacBalls",
"FoodSoupNettle",
"FoodBurgerDuck",
"FoodBurgerBear",
"FoodBurgerBaseball"
};

[DataField("tier3Protos")]
public List<String> Tier3Protos = new()
{
"FoodBurgerGhost",
"FoodSoupChiliClown",
"FoodSaladWatermelonFruitBowl",
"FoodMealCubancarp",
"FoodBakedCannabisBrownieBatch",
"FoodPizzaDank",
"FoodBurgerBear",
"FoodBurgerMime",
"FoodMothSeedSoup",
"FoodBreadBanana",
"FoodMothFleetSalad",
"FoodCakeSuppermatter",
"FoodSoupChiliCold",
"FoodSoupBisque",
Expand Down Expand Up @@ -151,14 +157,12 @@ public sealed partial class RoboisseurComponent : Component
public IReadOnlyList<String> BlacklistedProtos = new[]
{
"FoodBurgerSpell",
"FoodBreadBanana",
"FoodMothSqueakingFry",
"FoodMothFleetSalad",
"FoodBurgerMime",
"FoodBreadMeatSpider",
"FoodBurgerHuman",
"FoodNoodlesBoiled",
"FoodMothOatStew",
"FoodSoupTomato",
"FoodDonkpocketBerryWarm",
"FoodBreadButteredToast",
"FoodMothCottonSoup",
Expand All @@ -172,7 +176,6 @@ public sealed partial class RoboisseurComponent : Component
"FoodSoupTomatoBlood",
"FoodMothSaladBase",
"FoodPieXeno",
"FoodPiePumpkin",
"FoodPiePumpkinSlice",
"FoodDonkpocketTeriyakiWarm",
"FoodMothBakedCheese",
Expand All @@ -186,12 +189,10 @@ public sealed partial class RoboisseurComponent : Component
// "FoodBreadMoldySlice",
"FoodRiceBoiled",
"FoodMothEyeballSoup",
"FoodBreadCreamcheese",
"FoodSoupOnion",
"FoodBurgerAppendix",
"FoodBurgerRat",
"RegenerativeMesh",
"FoodCheeseCurds",
"FoodDonkpocketHonkWarm",
"FoodOatmeal",
"FoodBreadJellySlice",
Expand All @@ -200,7 +201,6 @@ public sealed partial class RoboisseurComponent : Component
"FoodDonkpocketSpicyWarm",
"FoodCannabisButter",
"FoodNoodles",
"FoodBreadMeat",
"LeavesCannabisDried",
"FoodBurgerCheese",
"FoodDonkpocketDankWarm",
Expand Down
2 changes: 1 addition & 1 deletion Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override void Update(float frameTime)
private void RewardServicer(EntityUid uid, RoboisseurComponent component, int tier)
{
var r = new Random();
int rewardToDispense = r.Next(100, 350) + 250 * tier;
int rewardToDispense = r.Next(500, 1000) + 350 * tier;

_material.SpawnMultipleFromMaterial(rewardToDispense, "Credit", Transform(uid).Coordinates);
if(tier > 1)
Expand Down

0 comments on commit 33a2d12

Please sign in to comment.