游戏开发论坛

 找回密码
 立即注册
搜索
查看: 7339|回复: 0

[原创] 《魔法卡片》上线项目开发文档分享 - 首款卡片消除游戏

[复制链接]

6

主题

40

帖子

609

积分

高级会员

Rank: 4

积分
609
发表于 2014-7-31 16:24:09 | 显示全部楼层 |阅读模式
下载链接:

下载二维码:

下载二维码

下载二维码



产品合作:http://bbs.gameres.com/forum.php?mod=viewthread&tid=261642
核心玩法设计1.1    棋盘设计
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  棋盘定义
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  棋盘为6*8的长方形,共48格,按从上到下从左到右的顺序,格子id依次从1到48,如图
  
1
  
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
1.2    消除规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  基础消除规则:
n   当同一花色相邻牌数 >= 3 时,消除该颜色的牌
n   保留最后玩家放置的牌作为下次初始牌
n   牌相邻定义如下图:
  
  
 
  
 B
 
 C
 A
 E
 
 D
 
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  joker消除规则
n   与joker相邻两张牌跟joker为同一花色时,消除该颜色的牌
n   保留最后玩家放置的牌作为下次初始牌
n   相邻定义同上图
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  消除操作
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  点击相邻未遮挡格子出牌,一次出一张牌,即只能走一格,如初始牌位
id=21,即只能点击id15  id=20  id22  id=27格子出牌。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  未遮挡:玩家未放置牌的空格。
1.3    出牌规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  下一张牌出现规则
还能继续出牌的情况下,随机出牌,玩家无法进行下一步时,结束。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  joker牌出现规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  joker模式下,游戏开始除初始牌之外,任意格子出现n = 1张joker,当joker被消除后,任意没有遮挡的空格出现另一张任意花色的joker。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  再出现的joker应位于放置后不会出现被消除的位置,如有此情况,不出joker,直到出现不会被消除的位置,出牌。
1.4    积分规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  积分获得规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  通过消除相同花色牌及joker获得积分
   无限及限时模式:
   G=10+5*(N-2)
   G:消除每格获得积分
   N:消除的格数
  
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  joker模式积分=消除格子积分+消除joker积分
1.5    模式规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  街机模式
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  没有时间限制,不出现joker,一直出牌,玩家无法进行下一步时,结束,纪录积分。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  定时模式
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  不出现joker,限时3分钟,时间限制之内玩家无法进行下一步时或一直进行到时间截至,结束,纪录积分。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  joker模式
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  没有时间限制,出现joker,一直出牌,玩家无法进行下一步时,结束,纪录积分。
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  暂停,每个模式都有,点击后弹出面板,重玩,继续,回到主界面
1.6    通用模块
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  分享功能
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  道具与内购功能
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  gamecenter排行
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif  广告条,插屏,积分墙
1.7    充值规则
file://localhost/Users/lintong/Library/Caches/TemporaryItems/msoclip/0/clip_image001.gif   6dollor10熊币
游戏充值分5
  
Free
  
10
6
30
30
200
128
1000
328
5000

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

作品发布|文章投稿|广告合作|关于本站|游戏开发论坛 ( 闽ICP备17032699号-3 )

GMT+8, 2025-6-24 13:44

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表