文件名称:skaat:skat游戏循环
文件大小:49KB
文件格式:ZIP
更新时间:2024-06-12 14:42:44
card-game game-loop skat JavaScript
斯卡特 游戏循环。 可以嵌入以构建功能齐全的Skat应用程序: 安装 npm install skaat 用法 import { Game , Clubs } from 'skaat' ; const game = new Game ( ) ; game . next ( 'start' ) ; // 'ask-bid', 2 game . next ( 'pass' , 2 ) ; // 'ask-bid', 0 game . next ( 'bid' , 0 , 24 ) ; // 'ask-ack', 1 game . next ( 'pass' , 1 ) ; // 'ask-declare', 0 game . next ( 'declare' , 0 , { suit : Clubs } ) ; // 'ask-card', 1 ...
【文件预览】:
skaat-main
----.gitignore(24B)
----.eslintrc(139B)
----package.json(1KB)
----package-lock.json(121KB)
----src()
--------Util.js(6KB)
--------types.d.ts(970B)
--------index.js(143B)
--------StateMachine.js(3KB)
--------Game.js(12KB)
--------Automa.js(4KB)
--------Results.js(4KB)
--------Constants.js(2KB)
----tsconfig.json(383B)
----.github()
--------workflows()
----rollup.config.js(454B)
----README.md(684B)
----.eslintignore(4B)
----.npmignore(84B)
----test()
--------.eslintrc(49B)
--------Constants.spec.js(290B)
--------Game.spec.js(11KB)
--------chai.js(39B)
--------AutomaSpec.js(1KB)
--------Util.spec.js(9KB)
--------Results.spec.js(627B)