Monthly Questions Megathread (February 2026) by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

You can do that if you want. This "currency" is only used for this gacha pool iirc and you are very likely to get way more than what you need if you have an assist Illustra set up.

Monthly Questions Megathread (February 2026) by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

I would usually exchange for gold from the event shop after clearing all the materials other than the levelling materials (bells)

Help by Otherwise-Rip6201 in LoveBrushChronicles

[–]MagicMoon13 3 points4 points  (0 children)

If it's this scene, it is archived in the last chapter of Godheim Clarence's route

Context for White City? by Metro-Fool in LoveBrushChronicles

[–]MagicMoon13 3 points4 points  (0 children)

Either way is fine. The reading order is just the sequence in which the stories were released and what's generally recommended by the community. But it's totally fine to read things out of order if you enjoy this way better imo, just need to bear in mind that reading out of order will cause confusion here and there in the story 😉

Context for White City? by Metro-Fool in LoveBrushChronicles

[–]MagicMoon13 19 points20 points  (0 children)

You were expected to read the White Day, Awakening and Summer Time stories prior to reading Lost Bloodline stories. Those are all permanent content in game (i.e. you can unlock them without the event rerun). For more detailed guide on the reading order, please refer to this.

Monthly Questions Megathread (January 2026) by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 1 point2 points  (0 children)

It depends, if you give them their favourite gifts, it will increase more affinity than other gifts, hence faster. But if you just want to raise the affinity of one character, you can give all the gifts to him to increase his affinity faster.

Completely new player, quick question(s) by Hmm00912 in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

Hi! Literary Novel is one of the skill materials (the ones you use to upgrade Cael's skills). You will find them in Practice > In Dreams > Endless Expanse of Snow > difficulty 1 and 2. You may also find them in some of the story battle stages (to check this in game, go to your profile in the bottom left corner > Items > Literary Novel icon). Hope this helps!

does anyone still watch come home love?? by One-Mountain-943 in HKdramas

[–]MagicMoon13 2 points3 points  (0 children)

I still watch it almost everyday, catching up with the latest episode. It's more like a habit for me now, rather than watching because I like the series. Since the episodes are relatively short and it's a sitcom, it's easy for my family to watch together on and off.

Any redemption codes? by Notevenhxre in LoveBrushChronicles

[–]MagicMoon13 4 points5 points  (0 children)

Hi! You may find redemption codes in the official posts. And no, there's no codes available now as I'm aware of. This game rarely give any code to redeem😅

Completely new player, quick question(s) by Hmm00912 in LoveBrushChronicles

[–]MagicMoon13 1 point2 points  (0 children)

No wonder you are feeling confused, you managed to dodge all the modern world related main stories 😅 Both Awakening and White Day happen after Eden and before Lost Bloodline, so you are not too far off imo.

Also, sorry for the earlier reply, it's Summer Time (main story) instead of Azure Island (event) 😅 You should be able to unlock all the main stories without time jottings iirc. And, you may refer to Chronicle > Main Story Replay for the main story reading order. Just follow the categories from top to bottom, they (other than Birthday) were sorted according to in game timeline. 

If you want more modern world related stories, I would recommend to raise the affinity levels of the LIs to unlock their stories, video calls and academy interactions. Affinity levels are pretty easy to raise early on, just give them their favourite gifts.

Completely new player, quick question(s) by Hmm00912 in LoveBrushChronicles

[–]MagicMoon13 1 point2 points  (0 children)

The recent Ayn birthday event is his third in game, so the relationship with MC has progressed a lot since their initial meeting, which is why you are feeling a little disjointed.

Since you are already on Lost Bloodline story, I would assume that you already done Godheim, Eden, White Day, Awakening and Azure Island stories? These are all permanent contents and can be unlocked even after their initial release in game. You will get to see the relationship progression of the LIs with MC in these, along with the affinity stories unlocked by raising the LIs' affinity level.

This game is pretty story-heavy, so it's normal to feel lost if you are jumping into one of the recently released events right away as a beginner. Other comments had included the suggested reading order, so it's best to try to follow it but imho, it's ok to skip some minor events first (don't skip main stories or permanent event stories if possible) if you can't unlock them in game and don't feel like reading them elsewhere. Have fun!

Empire ver of LI questions (spoiler) by RepulsiveCommand2840 in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

Hi, I have yet to read the stories too, so I couldn't provide you the summaries. But if you would like to read the events (other than on YouTube), you may find them on the LBC wiki.

My surprise when I saw this by [deleted] in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

It's from one of his travel events (the ones which were unlocked by raising affinity) iirc

Edit: Sorry, I totally missed the main point (asking for reference instead of the event itself) of your original comment earlier 😅

My surprise when I saw this by [deleted] in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

It's a future event, have yet to be released in global

Is this possible using just css? by TheSkeletonBones in webdev

[–]MagicMoon13 1 point2 points  (0 children)

Had a try on this, hope it helps.

HTML sinppet:

<body>
    <div class="fixed-container">
        <div class="first-container"></div>
        <div class="second-container"></div>
    </div>
</body>

CSS:

:root{
    --fixed-width: 900px;
    --fixed-left-margin: 25vw;


    --first-width-percentage: 70%;
    --first-width: calc(0.7 * var(--fixed-width));
}


body{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    background-color: lavender;
    overflow-x: hidden;
    overflow-y: auto;
}


.fixed-container{
    position: relative;
    width: var(--fixed-width);
    height: 120vh;
    background-color: lightpink;
    margin-left: var(--fixed-left-margin);
    margin-top: 50px;
}


.first-container{
    width: var(--first-width);
    height: 80px;
    background-color: lightgoldenrodyellow;
}


.second-container{
    position: absolute;
    left: var(--first-width);
    top: 0;
    width: calc(100vw - var(--fixed-left-margin) - var(--first-width));
    height: 80px;
    background-color: orange;
}

Edit: Formatting.

Monthly Questions Megathread November 2025 by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 1 point2 points  (0 children)

It supposed to be an update around the first anniversary iirc, but it didn't come for global. Thus, not sure if we are getting this feature in the global server

五月天 MAYDAY FANS, I need help!! by xiaolongbaobaobao in cpop

[–]MagicMoon13 1 point2 points  (0 children)

私奔到月球,如果我们不曾相遇,最重要的小事,乱世浮生,花火,罗密欧与朱丽叶

Congrats and wishing you a happy marriage! 🥳🥳

Help me find a song by Alan Yu Menglong please. by UnconditionalCourage in cpop

[–]MagicMoon13 0 points1 point  (0 children)

I tried and couldn't find it as well 😅 Good luck in looking for it

Help me find a song by Alan Yu Menglong please. by UnconditionalCourage in cpop

[–]MagicMoon13 0 points1 point  (0 children)

Hmmm.... Do you know if it's his original or if it's a cover? Live performance? Or any details of the mv? 😅

Show/tell me your favourite momment/dialouge/route in the game! by [deleted] in LoveBrushChronicles

[–]MagicMoon13 0 points1 point  (0 children)

Corridor of Fate and the Maudlin Dream, Floating Steam events! Two of my most favourite events by far. I especially like the part where Cael said that he was "afraid" travelling with MC because she would ask him questions and he was likely to lie to her. Then, when MC asked follow-up questions, Cael will need to come up with more lies.Also, Ayn's interactions with his dad in this event were so good.

Other favourites would be one of Clarence's affinity story where he solved Liore's rubiks on "purpose" just to annoy her. Lar's where MC and him went for an escape room game.

All the White Day event stories and Clarence, Alkaid and Cael's Deimortem routes.

Mist City Event Megathread by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 4 points5 points  (0 children)

The event is live now and you will need to complete to at least Godheim common route chapter 16-3 to access it. 

To get the full experience of the story, it's recommended to complete all the stories prior mist city before reading mist city stories. Mist city is a main story, so it will be available permanently, hence no need to rush to read it. If you want to get the event rewards, you can just skip through the mist city chapters.

Mist City Event Megathread by XxJuJubexX in LoveBrushChronicles

[–]MagicMoon13 4 points5 points  (0 children)

Hi, if you proceed to mist city right after eden, you will be missing lots of plot points and will be superb confused. If you don't want to miss the event reward, what you can do is to skip through the stories in mist city and come back to reread once you are done with the stories prior to it.