Mushroom Camp
An experimental field exploring simulation
keywords
wide field
cellular field
field editor
collects mushrooms
NPCs speak
web browser canvas based app
The fields are defined as set of XMLs
Controls
arrows - PC
swipe-keep or tap target - mobile - will be supported later
Designs
The fields are composed of cells
Each cell should have natural textures like ones in 模様 page. https://gyazo.com/86431542c2878e808cc3992fbd01da1b
The space where the character would walk will have uniform color
We only use 52 colors which can be displayed in NES system
https://gyazo.com/a1ca84e1a7cd7e4124eac0add646b2d2
pixel editor - how save it?
download
Field Models
code:js
interface Cell {
x: number;
y: number;
}
interface Field {
id: string;
x: number;
y: number;
width: number;
height: number;
cells: Cell[];
}