Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
JTankTrouble
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
9831111
JTankTrouble
Commits
24c4d441
Commit
24c4d441
authored
Aug 04, 2020
by
nargessalehi98
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add prize boolean .
parent
0ea412a7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
Tank.java
src/Tank.java
+34
-0
No files found.
src/Tank.java
View file @
24c4d441
...
@@ -14,8 +14,13 @@ public class Tank {
...
@@ -14,8 +14,13 @@ public class Tank {
boolean
alive
;
boolean
alive
;
String
prize
;
String
prize
;
int
Health
;
int
Health
;
boolean
bulletEffect
;
boolean
laser
;
boolean
bullet2
;
boolean
bullet3
;
public
Tank
(
String
path
,
int
x
,
int
y
,
double
rotateAmount
)
{
public
Tank
(
String
path
,
int
x
,
int
y
,
double
rotateAmount
)
{
prize
=
"empty"
;
Health
=
100
;
Health
=
100
;
try
{
try
{
icon
=
ImageIO
.
read
(
new
File
(
path
));
icon
=
ImageIO
.
read
(
new
File
(
path
));
...
@@ -60,4 +65,33 @@ public class Tank {
...
@@ -60,4 +65,33 @@ public class Tank {
public
void
setPrize
(
String
prize
)
{
public
void
setPrize
(
String
prize
)
{
this
.
prize
=
prize
;
this
.
prize
=
prize
;
}
}
public
void
applyPrize
()
{
if
(!
prize
.
equals
(
"empty"
))
{
if
(
prize
.
equals
(
"life"
))
Health
+=
10
;
// if (Health > 100)
// Health = 100;
if
(
prize
.
equals
(
"shield"
))
{
if
(
Controller
.
renderCountLimit
-
50
==
Controller
.
renderCount
)
bulletEffect
=
true
;
else
bulletEffect
=
false
;
}
if
(
prize
.
equals
(
"bullet2"
))
{
if
(!
bullet2
)
bullet2
=
true
;
}
if
(
prize
.
equals
(
"bullet3"
))
{
if
(!
bullet3
)
bullet3
=
true
;
}
if
(
prize
.
equals
(
"laser"
))
{
if
(
Controller
.
renderCountLimit
-
410
==
Controller
.
renderCount
)
laser
=
false
;
else
laser
=
true
;
}
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment