A checklist to help you keep track of which type of Decor Pikmin you have collected in the Pikmin Bloom game.
Published on pikmin-bloom-checklist.notuom.com.
This is a Next.js project bootstrapped with create-next-app
and hosted on GitHub Pages.
Developed & tested with Node.JS 20.
First, run the development server:
npm install
npm run dev
Open http://localhost:3000 with your browser to see the result.
Contributions are welcome!
The most common type of update is adding missing decors. Here are the steps required:
- Find a suitable icon for the decor. Usually, a 24px transparent square png in black or an outline works well.
- Usually, free icons online come with an attribution license. Copy the attribution link into your clipboard.
- Download the image from the icon website; copy it to the
/public/decors
folder. Its filename should match the existing naming patterns. - Edit
src/utils/constants.ts
. Change thedecors
array. The order is important; ensure the logical order is respected (regular -> special -> exhaustive). See existing decors for plentiful examples. Thekey
should match the filename of the downloaded icon. - In the same file, change the
attributions
array. Add thelink
,text
, andtitle
required by the site you downloaded the icon from. - Run the app locally using
npm run dev
; validate it works as expected.
For new features, please create an issue to discuss the feature and the suggested approach first. Once the general idea and design is approved, you can create a pull request.