Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # Attempted variant "Shogun Chess" by CouchTomato87, for use in Fairy-Stockfish
  2.  
  3. [shogun:chess]
  4.  
  5. pawn = p
  6. knight = n
  7. bishop = b
  8. rook = r
  9. queen = q
  10. king = k
  11. archbishop = a
  12. chancellor = c
  13. commoner = g
  14.  
  15. promotionRank = 7 8
  16. promotionLimit = q:1 a:1 c:1
  17. promotedPieceType = p:g r:c b:a n:c n:a
  18.  
  19. pocketSize = 5
  20.  
  21. pieceDrops = true
  22. capturesToHand = true
  23.  
  24. flagPiece = k
  25. whiteFlag = d8 e8
  26. blackFlag = d1 e1
  27. flagMove = true
  28.  
  29. # TODO: Restrict Queen drops to the throne room. Prevent pawn drops onto files with a pawn already present.
  30. # The rules below have to do with similar rules, but aren't likely to work as intended for Shogun Chess.
  31. # I am not sure whether the "promotedPieceType" as currently define for Knights will work or not.
  32. shogiDoubledPawn = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement