names to file

This commit is contained in:
Llywelwyn 2023-08-27 03:13:58 +01:00
parent e1eae7efaf
commit 486807fc84
6 changed files with 41 additions and 10 deletions

View file

@ -11,6 +11,7 @@ use super::{
YStart,
};
use rltk::prelude::*;
use crate::data::names::*;
pub fn forest_builder(
new_id: i32,
@ -20,7 +21,15 @@ pub fn forest_builder(
difficulty: i32,
initial_player_level: i32
) -> BuilderChain {
let mut chain = BuilderChain::new(false, new_id, width, height, difficulty, "the woods", initial_player_level);
let mut chain = BuilderChain::new(
false,
new_id,
width,
height,
difficulty,
NAME_FOREST_BUILDER,
initial_player_level
);
chain.start_with(CellularAutomataBuilder::new());
chain.with(AreaStartingPosition::new(XStart::CENTRE, YStart::CENTRE));
chain.with(CullUnreachable::new());