(game "Adere" (players 2) (equipment { (board (hex Triangle 8) ) (piece "Disc" Each) (regions P1 {(sites Side NE) (sites Side NW) (sites Side S)}) (regions P2 {(sites Side NE) (sites Side NW) (sites Side S)}) }) (rules (play (or (move Add (to (sites Empty))) (move Select (from (sites Occupied by:Mover top:True) ) (to (intersection (sites Around (from)) (sites Occupied by:Prev top:True)) if:(= (size Stack at:(to)) (size Stack at:(from))) ) (then (fromTo (from (last From)) (to (last To)) ) ) ) ) ) (end { (if (and (not (all Sites (sites Occupied by:P1 top:True) if:(not (is Connected at:(site) P1)) )) (= (mover) P2) ) (result P1 Win) ) (if (and (not (all Sites (sites Occupied by:P2 top:True) if:(not (is Connected at:(site) P2)) )) (= (mover) P1) ) (result P2 Win) ) }) ) ) //------------------------------------------------------------------------- (metadata (info { (description "Adere is a 2-player strategy game that lasts about 20 minutes.") (rules "The game is played on a triangular board made up of hexagonal tiles. On each turn, a player can either place a stone of their color on an empty space on the board, or they can move a stone of their color from the top of a stack onto a neighboring opponent's stack of exactly the same height. A player wins the game if, at the start of their turn, a single group of their stones connects all three sides of the board. A stack belongs to the player who has a stone of their color on top of it.") (id "4258") (source "agere.drew-edwards") (version "1.3.14") (classification "board/space/group") (author "Drew Edwards") (credit "Achille Morenville") (date "2023") } ) )