1
Fork 0
mirror of https://github.com/Steffo99/patched-porobot.git synced 2024-12-22 17:44:22 +00:00

Make attack, cost, and health into u64s

This commit is contained in:
Steffo 2022-08-02 10:22:14 +02:00
parent 7597e073bd
commit 33f7cf02db
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -18,11 +18,11 @@ pub struct Card {
pub regions: Vec<CardRegion>,
/// Base attack of the card.
pub attack: i64,
pub attack: u64,
/// Base cost of the card.
pub cost: i8,
pub cost: u64,
/// Base health of the card.
pub health: i8,
pub health: u64,
/// Localized description of the card, in XML.
pub description: String,