not enough information C#

1.Mouse
2.Cat
3.Flowers
4.Trap
5.Garden Keeper
6.Rabbits
Money: Based on the flower amount, Each round
Good:
Cat Flowers Butterfly Garden Keeper
Bad:
Mouse
Rabbits
Goal:
To protect the flowers as many rounds as possible until the center part of the grid is full of flowers. Player survive until 9 flower wins
Gameplay:
A flower is automatically placed at the center of the grid.
Flower will spawn every 2 rounds
Mouse and Rabbits will spawn at the outer grid of each round, and as the round goes on more mice and rabbits will be spawned. They will move toward the center where the flower is at automatically. The mouse speed will be 2 grid per round and moving randomly towards the flowerpot.
Rabbit will spawn every 2 rounds and the speed is 4 grid per round.
Players can place a trap when they get 2 dollars each round to kill the mice and rabbits, however the trap can be placed outside the garden Once a player gets 5 dollars, the player can start placing a Cat. Cat will move each round randomly in the garden, Once a player gets 10 dollars, the player can pay for a garden keeper. The garden keeper will protect a radius of 4 grid around him.
The game will spawn a mouse each round,
Goal of Game:
Replace "Object" with the actual name and fill out the interaction
Mouse to Cat: Mouse will be scared away by Cat if Cat is within 1 square of mouse on Cat's turn
Mouse to Flowers: Mouse will eat flowers and disappear.
Mouse to Trap: When the mouse steps on the trap the mouse will be dead.
Mouse to Garden Keeper: The mouse couldn't enter within 2 radius of the garden keeper Mouse to Rabbits: Mouse will have a speed boost when it gets close to the rabbits Cat to Flowers: Cat can't get anywhere close to the flowers.
Cat to Trap: When a cat steps on a trap it will be stuck for one round.
Cat to Garden Keeper: Cat will go the opposite way if it sees a garden keeper within 3 grids.
Cat to Rabbits: Cat will scare away the rabbit within 2 square.
Flowers to Trap: Only one trap can be placed within the flowers.
Flowers to Garden Keeper: Garden Keeper will gain a radius of defense for one round if it walks through flowers.
Flowers to Rabbits: Rabbit will continue eating flowers, it won't disappear.

相关推荐
xiaoye-duck8 小时前
《算法题讲解指南:递归,搜索与回溯算法--递归》--3.反转链表,4.两两交换链表中的节点,5.快速幂
数据结构·c++·算法·递归
山栀shanzhi8 小时前
归并排序(Merge Sort)原理与实现
数据结构·c++·算法·排序算法
Trouvaille ~8 小时前
【递归、搜索与回溯】专题(七):FloodFill 算法——勇往直前的洪水灌溉
c++·算法·leetcode·青少年编程·面试·蓝桥杯·递归搜索回溯
zhooyu9 小时前
二维坐标转三维坐标的实现原理
c++·3d·opengl
10Eugene10 小时前
C++/Qt自制八股文
java·开发语言·c++
「QT(C++)开发工程师」10 小时前
C++11 新特性 正则表达式、随机数库、元组
c++·正则表达式
free-elcmacom11 小时前
C++ 默认参数详解:用法、规则与避坑指南
开发语言·c++
Albert Edison11 小时前
【ProtoBuf 语法详解】Any 类型
服务器·开发语言·c++·protobuf
无忧.芙桃12 小时前
C++11的部分内容(上)
c++
小璐资源网12 小时前
C++中如何正确区分`=`和`==`的使用场景?
java·c++·算法