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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user