Skip to content

Commit

Permalink
забыл как лениться
Browse files Browse the repository at this point in the history
  • Loading branch information
FaDeOkno committed Jan 6, 2025
1 parent 37faf3d commit a2d0a34
Show file tree
Hide file tree
Showing 19 changed files with 80 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Content.Client/ADT/Lobby/UI/SpeciesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,10 @@ public void SelectSpecies(ProtoId<SpeciesPrototype> protoId)

if (proto.Pros.Count <= 0 && proto.Special.Count <= 0 && proto.Cons.Count <= 0)
{
var noProsConsLabel = new Label()
var noProsConsLabel = new RichTextLabel()
{
Text = Loc.GetString("ui-species-no-pros-cons"),
Margin = new(2f),
Margin = new(4f),
};
DetailInfoContainer.AddChild(noProsConsLabel);
}
Expand All @@ -215,9 +215,9 @@ public void SelectSpecies(ProtoId<SpeciesPrototype> protoId)
{
var label = new RichTextLabel()
{
Text = "[color=#13f244] - " + Loc.GetString(item) + "[/color]",
Text = "[color=#13f244]- " + Loc.GetString(item) + "[/color]",
StyleClasses = { StyleBase.ClassLowDivider },
Margin = new(2f, 2f),
Margin = new(4f, 2f),
};
prosConsContainer.AddChild(label);
}
Expand All @@ -230,9 +230,9 @@ public void SelectSpecies(ProtoId<SpeciesPrototype> protoId)
{
var label = new RichTextLabel()
{
Text = " - " + Loc.GetString(item),
Text = "- " + Loc.GetString(item),
StyleClasses = { StyleBase.ClassLowDivider },
Margin = new(2f, 2f),
Margin = new(4f, 2f),
};
prosConsContainer.AddChild(label);
}
Expand All @@ -245,9 +245,9 @@ public void SelectSpecies(ProtoId<SpeciesPrototype> protoId)
{
var label = new RichTextLabel()
{
Text = "[color=#d63636] - " + Loc.GetString(item) + "[/color]",
Text = "[color=#d63636]- " + Loc.GetString(item) + "[/color]",
StyleClasses = { StyleBase.ClassLowDivider },
Margin = new(2f, 2f),
Margin = new(4f, 2f),
};
prosConsContainer.AddChild(label);
}
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/ADT/Species/Tajaran.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
femaleLastNames: TajaranLast
naming: firstlast
category: Unusual
description: "/ServerInfo/ADT/SpeciesDescriptions/Tajaran.xml"
special:
- Имеют общий язык с унатхами.

- type: speciesBaseSprites
id: MobTajaranSprites
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/ADT/Species/Ursus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
naming: firstlast
category: Unusual
#sponsorOnly: true # Пока снимаем до решения проблем
description: "/ServerInfo/ADT/SpeciesDescriptions/Urs.xml"
pros:
- Урсов не атакует космическая (карпы, клещи и т.д.) фауна.

- type: speciesBaseSprites
id: MobUrsusSprites
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/ADT/Species/Vulpkanin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
femaleLastNames: VulpLast # ADT-LastnameGender
naming: firstlast
category: Unusual
description: "/ServerInfo/ADT/SpeciesDescriptions/Vulpa.xml"

- type: speciesBaseSprites
id: MobVulpkaninSprites
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/ADT/Species/demon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
femaleLastNames: names_last_female
naming: firstlast
category: Unusual
description: "/ServerInfo/ADT/SpeciesDescriptions/Arkan.xml"

- type: speciesBaseSprites
id: MobDemonSprites
Expand Down
6 changes: 6 additions & 0 deletions Resources/Prototypes/ADT/Species/drask.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
femaleLastNames: Draskfrist
naming: FirstDashFirstDashFirst
category: Unusual
description: "/ServerInfo/ADT/SpeciesDescriptions/Drask.xml"
pros:
- Наносят 10 урона ушибами в ближнем бою.
- Лечатся в холоде.
cons:
- Получают повышенный урон от ожогов.

- type: speciesBaseSprites
id: MobDraskSprites
Expand Down
11 changes: 11 additions & 0 deletions Resources/Prototypes/ADT/Species/ipc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@
sexes:
- Unsexed
category: Special
description: "/ServerInfo/ADT/SpeciesDescriptions/IPC.xml"
pros:
- Не получают урона от токсинов, генетики и прочих, свойственных органикам.
- Имеют встроенный фонарик.
special:
- Вместо еды заряжаются от ЛКП (Alt+ЛКМ).
- Получают негативные эффекты от ЭМИ.
- Для использования ключей шифрования помещают их напрямую в тело.
- Лечатся не стандартными медикаментами, а сваркой, стеклом и проводами.
cons:
- Умирают при получении 125 урона.

# The lack of a layer means that
# this person cannot have round-start anything
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/ADT/Species/kobalt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
femaleFirstNames: names_reptilian_female #как у reptilian
naming: FirstDashFirst #как у reptilian
category: Unusual
description: "/ServerInfo/ADT/SpeciesDescriptions/Unfinished.xml"

- type: speciesBaseSprites
id: MobKoboltSprites
Expand Down
8 changes: 8 additions & 0 deletions Resources/Prototypes/ADT/Species/moth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@
femaleFirstNames: first_female_moth # ADT-name-custom
maleLastNames: last_moth # ADT-custom
femaleLastNames: last_moth # ADT-custom
description: "/ServerInfo/ADT/SpeciesDescriptions/Nian.xml"
pros:
- Могут быстро и манёвренно перемещаться без гравитации.
special:
- Могут есть ткань.
cons:
- Не могут переваривать мясную пищу.
- Получают повышенный урон от огня и высоких температур.

- type: speciesBaseSprites
id: MobMothSprites
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/ADT/Species/novakid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
femaleLastNames: NovakidLast
naming: firstlast
category: Special
description: "/ServerInfo/ADT/SpeciesDescriptions/Novakid.xml"
pros:
- Имеют крайне низкий урон от давления.
- Могут спокойно дышать смесью кислорода и плазмы.
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/ADT/Species/shadekin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
- Female
- Unsexed
category: Special
description: "/ServerInfo/ADT/SpeciesDescriptions/Shadekin.xml"
pros:
- Не нуждаются в дыхательной смеси.
- Удары наносят урон порезами вместо ушибов.
Expand Down
5 changes: 5 additions & 0 deletions Resources/Prototypes/Species/arachnid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
femaleLastNames: names_arachnid_last # Corvax-LastnameGender
sexes:
- Unsexed
pros:
- Наносят 7 проникающего урона в ближнем бою.
special:
- Могут плести шёлк, из которого создаются некоторые вещи.
description: "/ServerInfo/ADT/SpeciesDescriptions/Unfinished.xml"

- type: speciesBaseSprites
id: MobArachnidSprites
Expand Down
9 changes: 9 additions & 0 deletions Resources/Prototypes/Species/diona.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@
femaleLastNames: DionaLast # Corvax-LastnameGender
naming: TheFirstofLast
description: "/ServerInfo/ADT/SpeciesDescriptions/Diona.xml"
pros:
- Не получают негативных эффектов от кудзу.
special:
- В критическом состоянии дионы могут распасться на нимф, после чего вернуться к жизни. Для этого нужна кровь.
- Выпив достаточно удобрений превращаются в дерево.
- Имеют коллективный разум.
cons:
- Получают гораздо больше урона от ожогов.
- Не могут носить обувь.

- type: speciesBaseSprites
id: MobDionaSprites
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/Species/dwarf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
markingLimits: MobHumanMarkingLimits
dollPrototype: MobDwarfDummy
skinColoration: HumanToned
description: "/ServerInfo/ADT/SpeciesDescriptions/Unfinished.xml"
7 changes: 7 additions & 0 deletions Resources/Prototypes/Species/reptilian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
maleFirstNames: names_reptilian_male
femaleFirstNames: names_reptilian_female
naming: FirstDashFirst
description: "/ServerInfo/ADT/SpeciesDescriptions/Unath.xml"
pros:
- Могут таскать объекты хвостом.
special:
- Имеют общий язык с таярами.
cons:
- Шприцы не могут пройти через чешую унатхов.

- type: speciesBaseSprites
id: MobReptilianSprites
Expand Down
8 changes: 8 additions & 0 deletions Resources/Prototypes/Species/slime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
markingLimits: MobSlimeMarkingLimits
dollPrototype: MobSlimePersonDummy
skinColoration: Hues
description: "/ServerInfo/ADT/SpeciesDescriptions/Slime.xml"
pros:
- Могут хранить внутри себя небольшие объекты.
special:
- Могут дышать чистым азотом, но не чистым кислородом.
- Могут менять стиль своей причёски в любой момент.
cons:
- Получают урон от попадания воды на тело.

- type: speciesBaseSprites
id: MobSlimeSprites
Expand Down
3 changes: 3 additions & 0 deletions Resources/Prototypes/Species/vox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
naming: First
sexes:
- Unsexed
description: "/ServerInfo/ADT/SpeciesDescriptions/Vox.xml"
cons:
- Получают урон при вдыхании кислорода.

- type: speciesBaseSprites
id: MobVoxSprites
Expand Down
3 changes: 3 additions & 0 deletions Resources/ServerInfo/ADT/SpeciesDescriptions/Unfinished.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<Document>
## Лор находится в разработке.
</Document>
1 change: 0 additions & 1 deletion Resources/ServerInfo/ADT/SpeciesDescriptions/Vulpa.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
Вульпканин (Вульп-ка-нин) — это вид гуманоидных собакоподобных организмов. Вульпканин происходит из двойной системы Ваззенда, ныне проживают на планетах Келлун и Далштадт, хотя их первоначальной родиной был Алтам, на текущий момент не пригодный к жизни.

## Рекомендации к отыгрышу
-Придерживайтесь схемы именования:
-Соблюдайте нормы внешности: При создании персонажа используйте цвета с низкой насыщенностью.
-Отыгрывайте течение или культ, к которому относится вульпканин. Вы можете выбрать существующее или создать своё интересное течение, либо же культ.

Expand Down

0 comments on commit a2d0a34

Please sign in to comment.