Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion locales/en/apgames.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"omny": "Generalized connection game where players try to split star cells into different regions so that no single region contains a majority of star cells.",
"onager": "In Onager each player tries to reach the opponent's back rank. Onager is named after a Roman siege engine that is a type of catapult, as the way the pieces move resembles how projectiles are hurled forward with this device.",
"onyx": "A connection game on a modified snub-square board with a capture rule.",
"oonpia": "A hexagonal go-like where pieces come in two types. Only pieces of opposite type are connected, and a 4-arc of pieces of the same type (regardless of colour) is forbidden.",
"oonpia": "A hexagonal go-like where pieces come in two types. Only pieces of opposite type are connected, and a 4-arc of pieces of the same type (regardless of colour) is forbidden. Either use the legend to select a piece, or click the same location multiple times to cycle through all possible pieces.",
"orb": "Generatorb is 2-player game played on a standard chess board. Players start in opposite corners and attempt to reach their opponent's generator core or occupy the majority of cells on the front line. During play, you can stack up to three checkers in a space. Stacks of different heights behave differently, leading to engaging strategic options.",
"ordo": "Ordo is a \"get to your opponent's home row\" game in which you must always keep your pieces connected. Pieces can move singly and also as a group in certain situations. You can also win by breaking up your opponent's group in such a way that they can't reconnect it.",
"oust": "Oust is the classic \"exnihilation\" game where the game starts with an empty board and the goal is to eliminate all of your opponent's pieces. On your turn, you may make multiple capturing placements if available, but you must end it with a non-capturing placement. You must pass if you are not able to make any placements.",
Expand Down
4 changes: 2 additions & 2 deletions src/games/oonpia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ export class OonpiaGame extends GameBase {
if (this.isValidCapture(move.cell, move.tile)) {
return {
valid: true,
complete: 1,
complete: 0,
message: i18next.t("apgames:validation._general.VALID_MOVE")
}
} else {
Expand All @@ -595,7 +595,7 @@ export class OonpiaGame extends GameBase {
if (this.isValidPlace(move.cell, move.tile)) {
return {
valid: true,
complete: 1,
complete: 0,
message: i18next.t("apgames:validation._general.VALID_MOVE")
}
} else {
Expand Down