Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

a ) You need to create a game where the player is going through a list, in a loop. Each element of this list is

a) You need to create a game where the player is going through a list, in a loop. Each element of
this list is either a Friend, Enemy or Button. This list can be filled either by hand (hard-coded) or
randomly by using random() function*. The game loops through this list and, the player has to
make a decision for every iteration.Game 1ist: [1,2,0,1,2]
There are 1 friends and 2 enemies
Your health is 10
Your score is 0
You see an enemy
1- Interact
2- Ignore
What will you do?1
What wi
Game 11st: 1,2,0,1,2
There are 1 friends and 2 enemies
Your health is 7
Your score is 1
You see a button
1- Interact
2- Ignore
What will you do?1
A.1 friends became enemies!
-----------"--"--
Game 11st: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 7
Your score is 1
Your see an eneny
You see an enemy
1- Interact
2- Ignore
What will you do?1
Game list: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 5
Your score is 2
Your------------
You see an eneny
1- Interact
2- Ignore
What will you do?1
What will you do
Game list: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 2
Your score is 3
You see a button
1- Interact
2- Ignore
What will you do?2
You won!
>1
Game list: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 10
Your score is 0
You see an enemy
1- Interact
2- Ignore
What will you do?1
Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 7
Your score is 1
You see an enemy
1- Interact
2- Ignore
What will you do?1Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 4
Your score is 2You see an enemy
1- Interact
2- Ignore
What will you do?1
Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 1
Your score is 3You see an enemy
1- Interact
2- Ignore
What will you do?1
You died!
>1a) You need to create a game where the player is going through a list, in a loop. Each element of
this list is either a Friend, Enemy or Button. This list can be filled either by hand (hard-coded) or
randomly by using random() function*. The game loops through this list and, the player has to
make a decision for every iteration.
Example list: .
Example list: .Game 1ist: [1,2,0,1,2]
There are 1 friends and 2 enemies
Your health is 10
Your score is 0
You see an enemy
1- Interact
2- Ignore
What will you do?1
What wi
Game 11st: 1,2,0,1,2
There are 1 friends and 2 enemies
Your health is 7
Your score is 1
You see a button
1- Interact
2- Ignore
What will you do?1
A.1 friends became enemies!
-----------"--"--
Game 11st: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 7
Your score is 1
Your see an eneny
You see an enemy
1- Interact
2- Ignore
What will you do?1
Game list: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 5
Your score is 2
Your------------
You see an eneny
1- Interact
2- Ignore
What will you do?1
What will you do
Game list: [1,2,1,1,2]
There are 0 friends and 3 enemies
Your health is 2
Your score is 3
You see a button
1- Interact
2- Ignore
What will you do?2
You won!
>1
Game list: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 10
Your score is 0
You see an enemy
1- Interact
2- Ignore
What will you do?1
Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 7
Your score is 1
You see an enemy
1- Interact
2- Ignore
What will you do?1Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 4
Your score is 2You see an enemy
1- Interact
2- Ignore
What will you do?1
Game 1ist: [1,1,1,1,0,2,0]
There are 2 friends and 4 enemies
Your health is 1
Your score is 3You see an enemy
1- Interact
2- Ignore
What will you do?1
You died!
>1 a) You need to create a game where the player is going through a list, in a loop. Each element of this list is either a Friend, Enemy or Button. This list can be filled either by hand (hard-coded) or randomly by using random() function*. The game loops through this list and, the player has to make a decision for every iteration.
Example list: [0,0,1,0,2...] where 0 means Friend; 1 means Enemy and 2 means Button
When the game begins, the player has 10 points for health and 0 for overall score.
b) At the beginning of each iteration, print the following:
The game list such as [0,0,1,0,2...]
How many Friends and Enemies there are, using the filter() function
Players current health points and overall score
The current items type either Friend, Enemy or Button
c) The player starts at the first element, and they can choose to either interact with the item or ignore it:
If the element is a Friend, interacting with it increases the players health randomly between 1-3, but makes him/her lose 1 sc
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What is job rotation ?

Answered: 1 week ago