Skip to content

Commit

Permalink
Merge pull request #62 from new-frontiers-14/syndie_outpost
Browse files Browse the repository at this point in the history
Listening Point Bravo
  • Loading branch information
Cheackraze committed Jul 21, 2023
2 parents d962b66 + 108eeff commit 19b1baa
Show file tree
Hide file tree
Showing 35 changed files with 3,894 additions and 17 deletions.
11 changes: 7 additions & 4 deletions Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,10 @@ private void OnStartup(RoundStartingEvent ev)
{
var depotMap = "/Maps/cargodepot.yml";
var tinnia = "/Maps/tinnia.yml";
var lpbravo = "/Maps/lpbravo.yml";
var depotColor = new Color(55, 200, 55);
var tinniaColor = new Color(55, 55, 200);
var lpbravoColor = new Color(200, 55, 55);
var mapId = GameTicker.DefaultMap;
var depotOffset = _random.NextVector2(1500f, 2400f);
if (_map.TryLoad(mapId, depotMap, out var depotUids, new MapLoadOptions
Expand Down Expand Up @@ -146,14 +148,15 @@ private void OnStartup(RoundStartingEvent ev)
}

;
if (_map.TryLoad(mapId, depotMap, out var depotUid4s, new MapLoadOptions
if (_map.TryLoad(mapId, lpbravo, out var depotUid4s, new MapLoadOptions
{
Offset = -depotOffset
Offset = _random.NextVector2(1400f, 3000f)
}))
{
var meta = EnsureComp<MetaDataComponent>(depotUid4s[0]);
meta.EntityName = "Cargo Depot C";
_shuttle.SetIFFColor(depotUid4s[0], depotColor);
meta.EntityName = "Listening Point Bravo";
_shuttle.SetIFFColor(depotUid4s[0], lpbravoColor);
_shuttle.AddIFFFlag(depotUid4s[0], IFFFlags.HideLabel);
}

;
Expand Down
32 changes: 32 additions & 0 deletions Resources/Locale/en-US/advertisements/vending/syndiedrobe.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
advertisement-syndiedrobe-1 = Brand new outfits!
advertisement-syndiedrobe-2 = Roof-top outfits for any occasion!
advertisement-syndiedrobe-3 = Being a scoundrel can be stylish.
advertisement-syndiedrobe-4 = According to the analysis: by dressing more stylishly, the chance of success of your actions increases by 0.0098%!
advertisement-syndiedrobe-5 = Hey, it seems to me you haven't looked at my assortment for a long time!
advertisement-syndiedrobe-6 = Death to NT!
advertisement-syndiedrobe-7 = Hey handsome dude, take a free outfit at our expense!
advertisement-syndiedrobe-8 = The truth is told — it's not the bullet that kills, but the lack of style.
advertisement-syndiedrobe-9 = He doesn't have beautiful clothes, the station doesn't have beautiful clothes — but you have beautiful clothes, because I will give them to you. If you want to destroy NT, this is the first step — to dress nicely.
advertisement-syndiedrobe-10 = Who is looking for, he will always find ... if of course he is dressed beautifully.
advertisement-syndiedrobe-11 = If someone said that our outfits suck, it's not a reason to get upset, it's a reason to put a bullet!
advertisement-syndiedrobe-12 = You can transfer enemies to your side by dressing them in the best outfits in the universe!
advertisement-syndiedrobe-13 = If you want to live, dress beautifully!
advertisement-syndiedrobe-14 = Wake up, syndicate. We have a station to burn.
advertisement-syndiedrobe-15 = Hey! Come, take it apart, the most stylish clothes in the galaxy!
advertisement-syndiedrobe-16 = Have you always dreamed of dressing stylishly? Then come quickly!
advertisement-syndiedrobe-17 = I quote the great writer: "Look at my assortment of clothing assortment"
advertisement-syndiedrobe-18 = According to the scan of the area - it sucks here, you need to fix it by taking the best clothes from my assortment!
advertisement-syndiedrobe-19 = Have you dreamed of dressing stylishly? Then you come to us!
advertisement-syndiedrobe-20 = What could be better than new clothes from SyndieDrobe!
advertisement-syndiedrobe-21 = Frighten everyone with your appearance only in our clothes!
advertisement-syndiedrobe-22 = We don't sell bombs.
advertisement-syndiedrobe-23 = We are not responsible for increased aggression towards our uniforms.
advertisement-syndiedrobe-24 = Fashion and elegance! Practicality and charm! SyndieDrobe!
advertisement-syndiedrobe-25 = The best fibers in the underground!
advertisement-syndiedrobe-26 = Our uniform is not visible in the dark and it's hard to notice the blood, what could be better?
advertisement-syndiedrobe-27 = Do you want to cause a panic at the station just by looking? We are at your service!
advertisement-syndiedrobe-28 = Our suits are moisture-resistant, which means you can not be afraid to get dirty with blood!
advertisement-syndiedrobe-29 = The best in the galaxy!
advertisement-syndiedrobe-30 = What could be better than the smell of our uniform in the morning?
advertisement-syndiedrobe-31 = You can leave feedback about the convenience of the form by sending a request to our Taipan hotline, the main thing is not to the wrong number!

Loading

0 comments on commit 19b1baa

Please sign in to comment.