Add backgammon and board game crate (#5884)

* [ADD] backgammon, made pieces generic

* [ADD] board game crate

* [REMOVE] minor whitespace

* Fix BOM

* [CHANGE] feedback changes, condensed backgammon setup

* [CHANGE] swapped backgammon y positions to correct ones

Co-authored-by: fishfish458 <fishfish458>
Co-authored-by: Visne <39844191+Visne@users.noreply.github.com>
This commit is contained in:
Fishfish458
2021-12-24 06:20:20 -06:00
committed by GitHub
parent 81df9f0601
commit 16d96c9dcc
20 changed files with 228 additions and 51 deletions

View File

@@ -11,16 +11,16 @@ namespace Content.Server.Tabletop
public string ParchisBoardPrototype { get; } = "ParchisBoardTabletop";
[DataField("redPiecePrototype")]
public string RedPiecePrototype { get; } = "RedParchisPiece";
public string RedPiecePrototype { get; } = "RedTabletopPiece";
[DataField("greenPiecePrototype")]
public string GreenPiecePrototype { get; } = "GreenParchisPiece";
public string GreenPiecePrototype { get; } = "GreenTabletopPiece";
[DataField("yellowPiecePrototype")]
public string YellowPiecePrototype { get; } = "YellowParchisPiece";
public string YellowPiecePrototype { get; } = "YellowTabletopPiece";
[DataField("bluePiecePrototype")]
public string BluePiecePrototype { get; } = "BlueParchisPiece";
public string BluePiecePrototype { get; } = "BlueTabletopPiece";
public override void SetupTabletop(TabletopSession session, IEntityManager entityManager)
{