added cubic chess (no) rules notice

This commit is contained in:
mig 2017-05-17 17:53:57 +02:00
parent d9f25de47c
commit 87c59055e3
2 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,20 @@
<style>
@media screen and (max-width: 520px) {
.side {
float: none;
display: block;
max-width: 100%;
margin-right: auto;
margin-left: auto;
}
}
</style>
<p>This Cubic Chess implementation does not enforce any rule !</p>
<p>It is to be used as a support to invent your own rules. If you come up with interesting rules and want to see them implemented into Jocly,
please open an issue about it on the <a href="https://github.com/mi-g/jocly/issues/new" target="_blank">Jocly repository</a>.</p>
<p>A consequence of the fact that no enforced rule is that playing against an artificial intelligence is pointless. You should only use
this Cubic Chess in human-vs-human mode.</p>

View file

@ -1,4 +1,4 @@
exports.games = (function() {
exports.games = (function () {
var modelScripts = [
"base-model.js",
"grid-geo-model.js",
@ -2868,7 +2868,9 @@ exports.games = (function() {
"model": {
"title-en": "360 Chess Authoring",
"summary": "Inventing the 360 Chess variant on a cube",
"rules": config_model_rules,
"rules": {
"en": "cubic-rules.html"
},
"module": "chessbase",
"plazza": "true",
"thumbnail": "cubic-chess-thumb.png",