Check out Alice Chess, our featured variant for June, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Comments by sirius628

EarliestEarlier Reverse Order LaterLatest
Chess and a Half. Game with extra leapers.[All Comments] [Add Comment or Rating]
💡📝sirius628 wrote on Thu, Jul 20, 2017 09:58 PM UTC:

Sorry to be pedantic, but doesn't a knight have 8 moves, and a cat have 16, not 8? Do you know how I calculated the value of the cat?


💡📝sirius628 wrote on Fri, Jul 21, 2017 12:38 AM UTC:

Jetan. Martian Chess, coming from the book The Chessmen of Mars. (10x10, Cells: 100) [All Comments] [Add Comment or Rating]
sirius628 wrote on Thu, Aug 3, 2017 09:03 PM UTC:

Just putting this diagram out there. It assumes that the panthan can go diagonally backwards, just as the gryphon can skip the rook move. I also had to make the "escape move" on available on the intial move of the princess. The pieces are white and black like standard chess, but the board is orange and black.

files=10 ranks=10 promoZone=0 maxPromote=0 promoChoice=*J graphicsDir=../membergraphics/MSelven-chess/ whitePrefix=w blackPrefix=b graphicsType=png lightShade=#FF9000 darkShade=#707070 symmetry=none panthan:P:FfsW:pawn:b2,c2,d2,e2,f2,g2,h2,i2,,b9,c9,d9,e9,f9,g9,h9,i9 thoat:N:NW:knight:a2,j2,,a9,j9 warrior:R:asWnD:tower:a1,j1,,a10,j10 flier:F:CGF:marshall:d1,g1,,d10,g10 padwar:B:asFnA:bishop2:b1,i1,,b10,i10 dwar:D:aarlW:rook2:c1,h1,,c10,h10 chief:C:aaK:flag:e1,,f10 princess:Q:mWmFmNmAmDmHmCmZmGimU:princess:f1,,e10

Chess and a Half. Game with extra leapers.[All Comments] [Add Comment or Rating]
💡📝sirius628 wrote on Thu, Aug 3, 2017 10:38 PM UTC:

     


Metamachy. Large game with a variety of regular fairy pieces.[All Comments] [Add Comment or Rating]
sirius628 wrote on Wed, Aug 9, 2017 11:09 PM UTC:

There's a problem here. The Pawns and Princes promote only to Queen, and never to Lion or Eagle.


Quinquereme Chess. Large variant with a new piece, the Quinquereme. (12x12, Cells: 144) [All Comments] [Add Comment or Rating]
sirius628 wrote on Mon, Aug 14, 2017 10:54 PM UTC:

I think you should make the part where there is Leeloo, space Pentere, Leeloo become space, Leeloo, Pentere, space. The Leeloo is clearly stronger than a Chancellor (Rook + Knight), and a Chancellor (Rook + Knight) is about as strong as a Queen. Therefore, the Leeloo is stronger than a Queen, so there should just be 1.


Chess and a Half. Game with extra leapers.[All Comments] [Add Comment or Rating]
💡📝sirius628 wrote on Tue, Aug 15, 2017 07:02 PM UTC:

Hey, how do I upload the piece set used here?


Betza Notation. A primer on the leading shorthand for describing variant piece moves.[All Comments] [Add Comment or Rating]
sirius628 wrote on Sat, Aug 19, 2017 01:29 AM UTC:

Would you help me? I'm writing an interactive diagram for beastmaster chess, and don't know how to express the (1,4) and (1,5) leaps of the Pegasus and Wyvern. Could I use the bracket notation of [WL] and [DL], or would that crash it?


Home page of The Chess Variant Pages. Homepage of The Chess Variant Pages.[All Comments] [Add Comment or Rating]
sirius628 wrote on Tue, Aug 29, 2017 12:40 AM UTC:

I have a question. Is there any way to completely delete one of my comments?


Chess and a Half. Game with extra leapers.[All Comments] [Add Comment or Rating]
💡📝sirius628 wrote on Wed, Aug 30, 2017 12:37 AM UTC:
Somehow, this became hidden again. Could you fix that.

💡📝sirius628 wrote on Wed, Aug 30, 2017 01:59 AM UTC:

Help! My diagram is broken! Would you please fix it? It's turned into a regular chessboard with wierd images on it!


Interactive diagrams. Diagrams that interactively show piece moves.[All Comments] [Add Comment or Rating]
sirius628 wrote on Wed, Aug 30, 2017 03:50 AM UTC:

Hey, my diagram won't work. Could you help me? The code that I used is below. I am using my own uploaded images, just so you know.

<script type="text/javascript" src="../membergraphics/MSinteractive-diagrams/betza.js">
</script>
<div style="float:none;margin:0 40px 20px 0;">
  <div class="idiagram">
    files=12
    ranks=12
    royal=5
    castleFlip=1
    promoChoice=QCRGBN
    graphicsDir=../membergraphics/MSchess-and-a-half/
    whitePrefix=w
    blackPrefix=b
    graphicsType=gif
    squareSize=51
    lightShade=#DDDDDD
    darkShade=#B8B8B8
    startShade=#0000FF
    symmetry=mirror
    pawn:P:ifmnDifmnHifmR4fmWfceF:Pawn:a2-c2,e2-h2,j2-l2
    knight:N:NimpafN:Knight:b1,k1
    guard:G:WF:Guard:d2,i2
    cat:C:KADcafK:Cat:e1,h1
    king:K:KilO5isO4isO3isO2isO1isO0:King:g1
    queen:Q:QirO5isO4isO3isO2isO1isO0:Queen:f1
    nightrider:NN:NN:Nightrider:,
    centaur:X:WFN:Centaur:,
    star cat:S:KADGHcafKcafmpafKmpafcafK:StarCat:d1,i1
    kraken:∞:U:Kraken:,
    rook:R:R:Rook:a1,l1
    bishop:B:B:Bishop:c1,j1.
  </div>
</div>
<script>
  function WeirdPromotion(x1, y1, x2, y2, promo) {
    var typ = board[y1][x1], r = (typ & 1024 ? 0 : 11);
    if(y2 != r)  return promo;
    if((typ & 511) == 2) return 7;
    else if((typ & 511) == 3) return 8;
    else if((typ & 511) == 4) return 9;
    else if((typ & 511) == 5) return 10;
    else return promo;
  }
</script>

 


csipgs Chess. Design and buy new chess pieces during play. (8x8, Cells: 64) [All Comments] [Add Comment or Rating]
sirius628 wrote on Thu, Aug 31, 2017 11:34 PM UTC:

I would consider adding a (3,2) leaper as well as a lame modifier.


Apothecary Chess-Modern. Large board variant obtained through tinkering with known games.[All Comments] [Add Comment or Rating]
sirius628 wrote on Fri, Sep 1, 2017 02:07 AM UTC:

The champion is pretty strong and should be average.


Chess and a Half. Game with extra leapers.[All Comments] [Add Comment or Rating]
💡📝sirius628 wrote on Mon, Sep 4, 2017 09:13 PM UTC:

                                


💡📝sirius628 wrote on Tue, Sep 5, 2017 11:41 PM UTC:

Uploaded here.


Home page of The Chess Variant Pages. Homepage of The Chess Variant Pages.[All Comments] [Add Comment or Rating]
sirius628 wrote on Wed, Sep 13, 2017 12:09 AM UTC:

Another question: Can you delete an uploaded graphic?


sirius628 wrote on Wed, Sep 13, 2017 12:56 AM UTC:

Okay. I don't need space, but one of them had a capitalization error, and it's really bugging me. I could upload one with the right spelling, but then I would have a duplicate which would mess with my OCD. Would you delete this one?


Vu Vo's Home Page -- Quang Trung Chess A website
. Website of Vu Vo -- Quang Trung Chess.[All Comments] [Add Comment or Rating]
sirius628 wrote on Thu, Sep 14, 2017 03:05 PM UTC:

                                                                                                             


Interactive diagrams. Diagrams that interactively show piece moves.[All Comments] [Add Comment or Rating]
sirius628 wrote on Wed, Sep 27, 2017 11:58 PM UTC:

I have a few questions.

  1. Is it possible to describe pieces like the Rose or Crooked Bishop using this notation, which doesn't support the "q" or "z" modifier? Same goes with cylindrical piece
  2. What is the "j" modifier supposed to do?
  3. Can you merge multiple cells together for a masonry pattern?

MSsuper-tamerlane[All Comments] [Add Comment or Rating]
sirius628 wrote on Sat, Sep 30, 2017 12:03 AM UTC:
It is incomplete. I will finish it soon.

sirius628 wrote on Sat, Sep 30, 2017 12:06 AM UTC:
It is incomplete. I will finish it soon.

Chess and a Half. Members-Only Game with extra leapers.[All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

The Catastrophic Cats!. Members-Only Missing description[All Comments] [Add Comment or Rating]

Since this comment is for a page that has not been published yet, you must be signed in to read it.

Interactive diagrams. Diagrams that interactively show piece moves.[All Comments] [Add Comment or Rating]
sirius628 wrote on Sat, Sep 30, 2017 03:50 PM UTC:

The interactive diagrams are completely broken. If you click on a piece, none of the squares are highlighted, and clicking on the target square does nothing.


25 comments displayed

EarliestEarlier Reverse Order LaterLatest

Permalink to the exact comments currently displayed.