All Projects → cuixiping → 99points

cuixiping / 99points

Licence: LGPL-2.1 license
99points is a multi-player online card game developed by html5 and javascript. 九十九分,是一个适合多人一起玩的扑克牌游戏,我们做了这个游戏的HTML5版本,可以多人联机玩。

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to 99points

Ancientbeast
Turn Based Strategy Game. Master your beasts! 🐺
Stars: ✭ 907 (+3259.26%)
Mutual labels:  html5-game
Tap Tap Adventure
Tap Tap Adventure is a massively online 2D MMORPG set in the medieval times with twists.
Stars: ✭ 123 (+355.56%)
Mutual labels:  html5-game
Slither.io Clone
Learn how to make Slither.io with JavaScript and Phaser! This game clones all the core features of Slither.io, including mouse-following controls, snake collisions, food, snake growth, eyes, and more. Progress through each part of the source code with our Slither.io tutorial series.
Stars: ✭ 168 (+522.22%)
Mutual labels:  html5-game
Phaser Node Kit
Rapid Game Development with PhaserJS and Node for Modern Browsers
Stars: ✭ 39 (+44.44%)
Mutual labels:  html5-game
Vlackjack
Blackjack built with Vue.js and vuex
Stars: ✭ 109 (+303.7%)
Mutual labels:  html5-game
Phaser Examples
Contains hundreds of source code examples and related media for the Phaser HTML5 Game Framework.
Stars: ✭ 1,680 (+6122.22%)
Mutual labels:  html5-game
Phaser3 Typescript
Phaser 3 and TypeScript
Stars: ✭ 676 (+2403.7%)
Mutual labels:  html5-game
Phaser Project Template
🕹️ Phaser 3 - Starter Template with TypeScript and webpack.
Stars: ✭ 186 (+588.89%)
Mutual labels:  html5-game
Caveexpress
CaveExpress is a classic 2D platformer with physics-based gameplay and dozens of levels. CavePacker is a Sokoban game.
Stars: ✭ 111 (+311.11%)
Mutual labels:  html5-game
C4
🔴🔵 Connect Four game in JS + Canvas
Stars: ✭ 156 (+477.78%)
Mutual labels:  html5-game
Antipacman
HTML5 Pac-Man game with gesture recognition
Stars: ✭ 81 (+200%)
Mutual labels:  html5-game
The Matrix Effect
The incredible effect of rain of letters in the style of the Matrix trilogy.
Stars: ✭ 109 (+303.7%)
Mutual labels:  html5-game
Kaetram Open
An open-source 2D HTML5 adventure based off BrowserQuest (BQ).
Stars: ✭ 138 (+411.11%)
Mutual labels:  html5-game
Strider
💣 Strider is a 2D sci-fi platformer (Game Off 2015 entry)
Stars: ✭ 9 (-66.67%)
Mutual labels:  html5-game
P1
一个基于EgretEngine的开发框架
Stars: ✭ 168 (+522.22%)
Mutual labels:  html5-game
Pacman
Pacman based on HTML5. 基于HTML5的吃豆人游戏 - 经典游戏开发样例
Stars: ✭ 707 (+2518.52%)
Mutual labels:  html5-game
Reldens
Reldens - You can make it - Open Source MMORPG Platform
Stars: ✭ 130 (+381.48%)
Mutual labels:  html5-game
One Html Page Challenge
Can you create something cool without modern tools?
Stars: ✭ 205 (+659.26%)
Mutual labels:  html5-game
Devil Glitches
My entry for the js13k 2016 game jam
Stars: ✭ 181 (+570.37%)
Mutual labels:  html5-game
Phaser Project Template Es6
Phaser 3 - Starter Template with ES6 (ESNext features included) and webpack.
Stars: ✭ 142 (+425.93%)
Mutual labels:  html5-game

99points

99points is a multi-player online card game developed by html5 and javascript.

screenshot01

“99分”html5游戏项目简介:

  • 在浏览器里玩的多人99分扑克牌游戏;

  • 代码分前后端两部分,都使用Javascript构建;

  • 前端代码基于HTML5 Canvas;

  • 服务器端代码使用Node.Js + Socket.io + Node.static构建;

  • 前后端都开源。

    目前正在开发中,可能无法完整运行。

    依赖的第三方库有Node.Js, Socket.io, Node.static, 请自行下载安装。

主创人员

游戏规则介绍

游戏过程

  • 游戏至少2人参与,可以分成两组对战或各自单战;
  • 游戏时每个玩家抓5张牌,然后轮流出牌,剩下的牌为底牌;
  • 打出的如果是功能牌,则执行相应的功能;
  • 打出的如果是分数牌,则分值计入分数池累积。
  • 分数池分值上限为99分;
  • 除4,J外,其余牌打出后可以再补一张牌;

牌面

  • 4/7/10/J/Q/K/A/小王/大王是“功能牌”;
  • 其他的牌都是“分数牌”,牌面数值即代表分值。
  • 根据人数多少使用一到两副扑克牌;
  • 牌面不分花色;

出局

  • 如果某玩家出牌后使分数池分值大于99分,则该人丢弃手中全部牌并出局。
  • 如果某玩家出牌后手上无牌,则出局。

功能牌

  • 4: 转换出牌方向(顺时针变逆时针,逆时针变顺时针);
  • 7: 和指定的某人交换手头的全部牌,操作结束不补牌;
  • 10:可以选择让分数池分值减10分或加10分;
  • J: 从其它玩家手中抽一张牌给自己,操作结束不补牌;
  • Q: 可以选择让分数池分值减20分或加20分;
  • K: 分数池加至99分,如果分数池本来就是99分则不作用;
  • A: 指定某玩家出牌;
  • 小王:加害,从某玩家该人手上任意抽取一张牌,该人只能留下这张牌,其他牌都放回底牌;
  • 大王:拯救,指定复活某个已出局的玩家并补全5张牌,或让某个未出局的玩家补全5张牌;

胜负

  • 如果不分组,则剩下最后一人为赢家。
  • 如果分组游戏,组员全部出局的一方为输家,另一方为赢家。

Dependences

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].