diff options
Diffstat (limited to 'src/entities.rs')
-rw-r--r-- | src/entities.rs | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/src/entities.rs b/src/entities.rs index 51cefc1..c3ec262 100644 --- a/src/entities.rs +++ b/src/entities.rs @@ -13,12 +13,13 @@ pub struct Character { pub name: String,
pub class: String,
pub health: i32,
+ pub level: i32,
+ pub location: Point,
max_health: i32,
attack: i32,
dodge: i32,
luck: i32,
xp: i32,
- location: Point,
tile_type: TileType
}
@@ -29,6 +30,7 @@ pub trait Enemy { attack: i32,
dodge: i32,
luck: i32,
+ level: i32,
location: Point
) -> Self;
@@ -102,7 +104,9 @@ impl Player for Character { attack: i32,
dodge: i32,
luck: i32,
- location: Point
+ level: i32,
+ location: Point,
+ tile_type: TileType
) -> Character {
Character {
name: name,
@@ -113,6 +117,29 @@ impl Player for Character { dodge: dodge,
luck: luck,
xp: 0,
+ level: 0,
+ location: location,
+ tile_type: TileType::Player
+ }
+ }
+
+ fn place(&mut self, location: Point) {
+ self.location = location;
+ }
+
+ fn select(&self, player_name: String, player_luck: i32) -> Self {
+ Self::new(
+ player_name,
+ self.class.to_string(),
+ self.health,
+ self.attack,
+ self.dodge,
+ self.luck + player_luck,
+ 0,
+ (0,0)
+ )
+ }
+
location: location,
tile_type: TileType::Player
}
|