diff --git a/assets/voxygen/voxel/sprite/ember/1.vox b/assets/voxygen/voxel/sprite/ember/1.vox new file mode 100644 index 0000000000..3e90fa7a2c --- /dev/null +++ b/assets/voxygen/voxel/sprite/ember/1.vox @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d670e5a5e3ba552154e19ce963fe83bdbe8556ebf3f907c59a93e9d6e853f5d7 +size 2232 diff --git a/common/src/terrain/block.rs b/common/src/terrain/block.rs index 0c5c97155a..efb815f024 100644 --- a/common/src/terrain/block.rs +++ b/common/src/terrain/block.rs @@ -40,6 +40,7 @@ pub enum BlockKind { Fern, DeadBush, Blueberry, + Ember, } impl BlockKind { @@ -81,13 +82,14 @@ impl BlockKind { BlockKind::Fern => true, BlockKind::DeadBush => true, BlockKind::Blueberry => true, + BlockKind::Ember => true, _ => false, } } pub fn is_fluid(&self) -> bool { match self { - BlockKind::Water => true, + BlockKind::Water => true, _ => false, } } @@ -123,7 +125,7 @@ impl BlockKind { BlockKind::LeafyPlant => false, BlockKind::Fern => false, BlockKind::DeadBush => false, - BlockKind::Blueberry => false, + BlockKind::Blueberry => false, _ => true, } } @@ -159,6 +161,7 @@ impl BlockKind { BlockKind::Fern => false, BlockKind::DeadBush => false, BlockKind::Blueberry => false, + BlockKind::Ember => false, _ => true, } } @@ -180,7 +183,7 @@ impl BlockKind { BlockKind::Velorite => true, BlockKind::VeloriteFrag => true, BlockKind::Chest => true, - BlockKind::Pumpkin => true, + BlockKind::Pumpkin => true, _ => false, } } diff --git a/voxygen/src/scene/terrain.rs b/voxygen/src/scene/terrain.rs index 8ae5b602a2..b432b64e13 100644 --- a/voxygen/src/scene/terrain.rs +++ b/voxygen/src/scene/terrain.rs @@ -170,6 +170,10 @@ fn sprite_config_for(kind: BlockKind) -> Option { variations: 4, wind_sway: 0.1, }), + BlockKind::Ember => Some(SpriteConfig { + variations: 1, + wind_sway: 4.0, + }), _ => None, } @@ -1066,6 +1070,14 @@ impl Terrain { Vec3::new(-6.0, -6.0, -0.0), ), ), + // Ember + ( + (BlockKind::Ember, 0), + make_model( + "voxygen.voxel.sprite.ember.1", + Vec3::new(-6.0, -6.0, -0.0), + ), + ), ] .into_iter() .collect(), diff --git a/world/src/block/mod.rs b/world/src/block/mod.rs index 3a6cfd571a..75994a3738 100644 --- a/world/src/block/mod.rs +++ b/world/src/block/mod.rs @@ -604,7 +604,7 @@ pub fn block_from_structure( StructureBlock::Fruit => Some(if field.get(pos + structure_pos) % 3 > 0 { Block::empty() } else { - Block::new(BlockKind::Apple, Rgb::new(194, 30, 37)) + Block::new(BlockKind::Ember, Rgb::new(0, 0, 0)) }), StructureBlock::Chest => Some(if structure_seed % 10 < 7 { Block::empty()