首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
data编程设计讲解、辅导Java程序语言、Java程序调试 辅导R语言程序|辅导R语言程序
项目预算:
开发周期:
发布时间:
要求地区:
Project 4: Monopoly X RPG
A. Introduction
" Monopoly is a board game currently published by Hasbro. In the game, players roll two sixsided
dice to move around the game board, buying and trading properties, and developing them
with houses and hotels. Players collect rent from their opponents, with the goal being to drive
them into bankruptcy."
- Monopoly (game) (Wikipedia)
" A role-playing game (sometimes spelled roleplaying game; abbreviated RPG) is a game in
which players assume the roles of characters in a fictional setting. Players take responsibility for
acting out these roles within a narrative, either through literal acting, or through a process of
structured decision-making regarding character development."
- Role-playing game (Wikipedia)
Emma and Ryan are boy-girl twins, both of them are your best friends. As their best
friend, you know that Emma is a board game enthusiast while Ryan loves to play role-playing
video games. Their birthday is on 7th January and you have decided to present a gift to them.
However, purchasing a board game and a video game as gifts will cost you an arm and leg.
While you are worrying about the gift, an idea comes to your mind — create a whole new game
by fusing the element of board game and RPG. Therefore, you would like to develop a game by
using the programming skill you have learnt, but keep in mind that there are only a few months
away from their next year birthday. Good luck!
B. Problem Statement
You are required to create a brand new Board Game mixed with the element of RPG system in
CLI using Java programming language.
Layout:
A 9 x 9 grid with total 32 tiles surrounded.
16
(Sample output)
Tiles:
Type of
Tiles
Number
of Tiles Description
START 1
Starting tile of every player. When player passes over this tile (finish a
circle), his Level will increase by 1.
SHOP 2
When player lands on this tile, he can buy items, sell items and upgrade
his weapon using Gold.
CHEST 1
When player lands on this tile, he can open a treasure chests and obtain
amount of Gold or item.
4
When player lands on this tile, he can heal himself using items or do
nothing.
SIN-M 12 When player lands on this tile, he will encounter one monster and trigger
a battle.
DUO-M 8
When player lands on this tile, he will encounter two monsters and
trigger a battle.
TRI-M 4
When player lands on this tile, he will encounter three monsters and
trigger a battle.
Player's basic statistic
Stats Initial Value
(suggested) Description
17
Level 1
Represents how powerful a player is, higher the level, higher the
other stats such as HP, Strength, Defence and Agility.
HP 25 Represents the amount of damage a player can take, a player
lose the game when his HP reaches 0.
Strength 5 Determines the amount of damage inflicts on the enemy.
Defence 5 Determines the amount of damage receives from the enemy.
Agility 5
Represents how agile a player is, determine the chance of fleeing
from battle and the chance of evading an attack.
EXP 0
A measurement required to increase the Level by 1 when
reaching certain limit.
Gold 200 Represents in-game money use to buy items or upgrade weapon
from shop.
Game rules/mechanics:
1. Number of players: 2 - 4
2. An unbiased six-sided dice is used.
3. Every player begins with same stats.
4. Starting by every player rolls the dice, highest number go first while lowest number go last.
5. Number of steps taken by player is determined by the dice, one roll per player's turn, no
special move or 'roll the dice twice'.
6. Battle (read Battle system section for more details):
a. Battle against monsters occurs when a player lands on SIN-M, DUO-M or TRI-M tile
immediately.
b. Battle against player occurs when 2 and only 2 players land on same tile. If another
player lands at that same tile again (3 players on same tile), no battle is triggered.
c. No battle occurs at START, CHEST and SHOP tiles.
7. End game conditions:
a. Only one player left in the game
b. All players decide to quit the game, the player with highest Level followed by amount
of Gold will be the winner.
C. Basic requirement
1. Game interface
• Game board
o An area to show the entire game board, including tiles and players' position
• Prompt message
o An output text area to display instructions, action taken by players, enemies state
etc.
• Command
o An output text area to display available option for player to perform an action
18
• Current player statistic
o An output text area or option to display current player's stats
(The sample output is just for reference, you can design your game interface)
2. OOP concept
• Create a Java abstract class named "Role" with relevant data fields and abstract
methods declared. The relevant data fields and abstract methods are related to stats
mentioned in Player's basic statistic and Battle system sections. This abstract class
must be extended by 2 or more Java classes. (Figure it yourself!)
3. Battle system
• Uses turn-based system, e.g. Player 1 -> Monster 1 -> Monster 2 -> Player 1 -> …
• One action per battle turn.
• Basic action options in battle:
1. Attack - Deals damage to enemy
2. Item - Let player uses his items
3. Flee - Escapes from battle
• Monsters have their own stats such as Level, HP, Strength, Defence and Agility.
• Formulae:
o Damage formula - To calculate amount of damage inflicts based on player's
Strength and target's Defence
E.g. Damage = Strength * (X / (Y + Defence)) where X and Y are constant values
o Other formulae to make the battle unpredictable, read Probabilities section.
• Battle against monsters
o Player always takes the first turn in this battle.
o Battle ends when:
▪ all encountered monsters are defeated
▪ player flee from battle
▪ player's HP reach 0
o Rewards for the player succeeded in this battle are Gold, EXP and drop item.
• Battle against player
o Higher priority than Battle against monsters - When Player A lands on a SIN-M
tile, Player A will have battle against monsters first. On the next turn (after Player
A finish the battle), Player B rolls and lands on the same tile as Player A, battle
against monsters will not trigger, instead battle against player will start
immediately. Player B will take the first turn in this battle.
o Both players must have reached at least minimum Level 5 in order to trigger this
battle.
19
o The only way a player can flee from this battle is using "Smoke bomb" item (no
flee action option)
o Battle ends when one of the players:
▪ defeated (HP reaches 0)
▪ flee from battle (no reward for both of the players)
o Rewards for the winner are Gold and EXP.
4. Level-up system
• EXP threshold increases for each subsequence Level.
E.g:
Level Required EXP
2 100
3 150
4 280
• When player levelling up, some of his stats values must have some increment.
5. Various items, weapons and monsters
• Sets some purchasable items such as "Potion", "Hi-Potion" (healing item), "Smoke
bomb" etc. Furthermore, set some rare items which can only obtain from treasure chest.
• Other than upgrading default weapon which is Sword, player can buy different types of
weapons for instance Hammer, Spear, War Axe, etc. which give extra value to player's
stats (with trade-offs) or special ability.
• Players are able to deal with different type of monsters (some monsters will have higher
HP, while others may have higher Strength or Agility).
• You can search for yourself or design your own items, weapons and monsters.
6. Probabilities
• Accuracy/Evasion
o Create a formula to determine the accuracy or evasion of an attack, use player's
stats and enemies' stats as variables for this formula.
• Flee
o The probability of escaping a battle against monsters depends on player's Agility
value and monsters' Agility value.
o Using "Smoke Bomb" item will guarantee 100% of chance for escaping any battle.
• Item drop system
o Integrate an algorithm to calculate the probabilities of getting an item after
defeating the monsters.
20
7. Apply and implement given game rules
• Build your own codes which satisfy all the game rules stated above. Try to avoid
repetitive code segments.
D. Additional Challenges
Extra Features
1. GUI
Make the game more attractive, try to implement graphical user interface to provide visual
impact. You can put some animations and sound effects into your game. (Tips: JavaFX)
2. Online multiplayer
Cloud base service? Socket programming? Explore it yourself!
3. Bot
If cannot make the game into online, try implement a game bot so you can play alone. 😢
4. Save & Load system
Player can save the game and resume it later. Uses Java IO knowledge you have learnt in
lectures to accomplish this features. File encryption is another extra point, you can
implement it to protect your saved files.
5. Random arrangement
The arrangement of tiles in game board is generated randomly for every new game.
6. Packaging your game
Learn how to deploy your product, make your game into a runnable application. (Tips: jar,
jlink, JDK 14 jpackage, Launch4j)
7. Any other extra features that can impress us or make the game more thrilling.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!