mirror of
https://github.com/Steffo99/patched-porobot.git
synced 2024-12-23 01:54:22 +00:00
Make attack
, cost
, and health
into u64
s
This commit is contained in:
parent
7597e073bd
commit
33f7cf02db
1 changed files with 3 additions and 3 deletions
|
@ -18,11 +18,11 @@ pub struct Card {
|
||||||
pub regions: Vec<CardRegion>,
|
pub regions: Vec<CardRegion>,
|
||||||
|
|
||||||
/// Base attack of the card.
|
/// Base attack of the card.
|
||||||
pub attack: i64,
|
pub attack: u64,
|
||||||
/// Base cost of the card.
|
/// Base cost of the card.
|
||||||
pub cost: i8,
|
pub cost: u64,
|
||||||
/// Base health of the card.
|
/// Base health of the card.
|
||||||
pub health: i8,
|
pub health: u64,
|
||||||
|
|
||||||
/// Localized description of the card, in XML.
|
/// Localized description of the card, in XML.
|
||||||
pub description: String,
|
pub description: String,
|
||||||
|
|
Loading…
Reference in a new issue