more items
This commit is contained in:
parent
ad5d6bc1ab
commit
198edc6556
@ -27,7 +27,7 @@ pub fn render_shop(
|
|||||||
Color::BLACK,
|
Color::BLACK,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Items
|
// Stun Gun
|
||||||
let stun_gun_buy_ui = ShopItemUi::new(
|
let stun_gun_buy_ui = ShopItemUi::new(
|
||||||
"Stun Gun".to_string(),
|
"Stun Gun".to_string(),
|
||||||
match &game_core.player.inventory.stun_gun {
|
match &game_core.player.inventory.stun_gun {
|
||||||
@ -48,6 +48,69 @@ pub fn render_shop(
|
|||||||
game_core.player.coins >= stun_gun_buy_ui.cost,
|
game_core.player.coins >= stun_gun_buy_ui.cost,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Flippers
|
||||||
|
let flippers_buy_ui = ShopItemUi::new(
|
||||||
|
"Flippers".to_string(),
|
||||||
|
match &game_core.player.inventory.flippers {
|
||||||
|
Some(x) => x.level,
|
||||||
|
None => 0,
|
||||||
|
},
|
||||||
|
3,
|
||||||
|
10,
|
||||||
|
);
|
||||||
|
flippers_buy_ui.render(
|
||||||
|
draw_handle,
|
||||||
|
Rectangle {
|
||||||
|
x: bounds.x + 5.0,
|
||||||
|
y: bounds.y + 160.0,
|
||||||
|
width: bounds.width - 10.0,
|
||||||
|
height: 50.0,
|
||||||
|
},
|
||||||
|
game_core.player.coins >= flippers_buy_ui.cost,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Flashlight
|
||||||
|
let flashlight_buy_ui = ShopItemUi::new(
|
||||||
|
"Flashlight".to_string(),
|
||||||
|
match &game_core.player.inventory.flashlight {
|
||||||
|
Some(x) => x.level,
|
||||||
|
None => 0,
|
||||||
|
},
|
||||||
|
3,
|
||||||
|
10,
|
||||||
|
);
|
||||||
|
flashlight_buy_ui.render(
|
||||||
|
draw_handle,
|
||||||
|
Rectangle {
|
||||||
|
x: bounds.x + 5.0,
|
||||||
|
y: bounds.y + 220.0,
|
||||||
|
width: bounds.width - 10.0,
|
||||||
|
height: 50.0,
|
||||||
|
},
|
||||||
|
game_core.player.coins >= flashlight_buy_ui.cost,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Air Bag
|
||||||
|
let air_bag_buy_ui = ShopItemUi::new(
|
||||||
|
"Bag of Air".to_string(),
|
||||||
|
match &game_core.player.inventory.air_bag {
|
||||||
|
Some(x) => x.level,
|
||||||
|
None => 0,
|
||||||
|
},
|
||||||
|
3,
|
||||||
|
10,
|
||||||
|
);
|
||||||
|
air_bag_buy_ui.render(
|
||||||
|
draw_handle,
|
||||||
|
Rectangle {
|
||||||
|
x: bounds.x + 5.0,
|
||||||
|
y: bounds.y + 280.0,
|
||||||
|
width: bounds.width - 10.0,
|
||||||
|
height: 50.0,
|
||||||
|
},
|
||||||
|
game_core.player.coins >= air_bag_buy_ui.cost,
|
||||||
|
);
|
||||||
|
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ impl Screen for ShopScreen {
|
|||||||
x: win_width as f32 - (win_width as f32 / 2.0) - 130.0,
|
x: win_width as f32 - (win_width as f32 / 2.0) - 130.0,
|
||||||
y: 10.0,
|
y: 10.0,
|
||||||
width: 120.0,
|
width: 120.0,
|
||||||
height: 120.0,
|
height: 30.0,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Render the shop UI
|
// Render the shop UI
|
||||||
|
Reference in New Issue
Block a user