Add airbag item data
Co-authored-by: wm-c <wcmeathrel@gmail.com>
This commit is contained in:
parent
7452803ba9
commit
c4dd17f25d
22
src/items.rs
22
src/items.rs
@ -22,7 +22,27 @@ impl StunGun {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
pub struct AirBag;
|
pub struct AirBag{
|
||||||
|
extra_oxygen: u32,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AirBag {
|
||||||
|
pub fn lvl1() -> Self {
|
||||||
|
Self {
|
||||||
|
extra_oxygen: 15,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn lvl2() -> Self {
|
||||||
|
Self {
|
||||||
|
extra_oxygen: 30,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
pub fn lvl3() -> Self {
|
||||||
|
Self {
|
||||||
|
extra_oxygen: 45,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
|
||||||
pub struct Flashlight {
|
pub struct Flashlight {
|
||||||
|
Reference in New Issue
Block a user