-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
196 additions
and
172 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 was deleted.
Oops, something went wrong.
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,18 @@ | ||
using Content.Shared.Actions; | ||
using Content.Shared.Storage; | ||
using Content.Shared.Magic; | ||
|
||
namespace Content.Shared.ADT.Events; | ||
|
||
// TODO: This class needs combining with InstantSpawnSpellEvent | ||
public sealed partial class SpawnXenoQueenEvent : WorldTargetActionEvent, ISpeakSpell | ||
{ | ||
[DataField] | ||
public List<EntitySpawnEntry> Prototypes = new(); | ||
|
||
[DataField] | ||
public string? Speech { get; private set; } | ||
|
||
[DataField] | ||
public int? Cost { get; private set; } | ||
} |
19 changes: 10 additions & 9 deletions
19
Resources/Locale/ru-RU/ADT/prototypes/Actions/XenoQueen.ftl
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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
ent-ActionXenoQeenTurret = Создать ксено турель. | ||
ent-ActionXenoQeenTurret = Создать ксено турель. [color=green]25[/color] | ||
.desc = Создаёт перед вами ксену турель, если хватает места. | ||
create-turret-failed = Найдите другое место. | ||
create-turret = Арргхсс. Шшшшш! | ||
ent-ActionSpawnMobXenoSpitter = Призвать Плевальщик | ||
ent-ActionSpawnMobXenoSpitter = Призвать Плевальщик [color=green]20[/color] | ||
.desc = Родите Плевальщика, который будет плеваться! | ||
ent-ActionSpawnMobXenoPraetorian = Призвать Преторианеца | ||
ent-ActionSpawnMobXenoPraetorian = Призвать Преторианеца [color=green]50[/color] | ||
.desc = Родите Преторианеца, который будет сражаться за вас! | ||
ent-ActionSpawnMobXenoDrone = Просто Дрон. Кому он нужен? | ||
ent-ActionSpawnMobXenoDrone = Просто Дрон [color=green]30[/color]. Кому он нужен? | ||
.desc = Родите рабочего, Дрон. | ||
ent-ActionSpawnMobXenoRavager = Призвать Разрушителя | ||
ent-ActionSpawnMobXenoRavager = Призвать Разрушителя [color=green]80[/color] | ||
.desc = Родите [color=red]смерть[/color] во плоти! | ||
ent-ActionSpawnMobXenoRunner = Призвать Бегуна | ||
ent-ActionSpawnMobXenoRunner = Призвать Бегуна [color=green]40[/color] | ||
.desc = Родите самую быструю личинку! | ||
ent-ActionSpawnMobXenoBurrower = Призвать рабочего | ||
ent-ActionSpawnMobXenoBurrower = Призвать рабочего [color=green]10[/color] | ||
.desc = Стандартный ксено. | ||
ent-ActionSpawnMobXenoQueen = Призвать [color=violet]Королеву[/color]. | ||
.desc = [color=red]Новое потомство! Новое поколение! Эволюция![/color] | ||
ent-ActionSpawnMobXenoQueen = Призвать [color=violet]Королеву[/color] [color=green]100[/color] | ||
.desc = [color=red]Новое потомство! Новое поколение! Эволюция![/color] | ||
queen-no-bloob-count = Недостаточно {$CountBloob} очков. |
Oops, something went wrong.