Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- G.AddData({
- name: 'More Atmosphere Messages',
- author: 'jmooroof',
- desc: 'A mod that adds more lines for each new day.',
- engineVersion: 1,
- requires: ['Default dataset*'],
- func: function() {
- const newDayLines = [
- "It is raining.",
- "A sense of foreboding fills the air.",
- "In the stillness, the rustle of leaves hints at unseen watchers."
- //"The sun is shining, and adventure awaits!",
- "The song of a lone bird pierces the stillness.",
- "The scent of [herb,herbs] assails your nostrils.",
- "It feels as if the day itself is alive.",
- "The air is heavy with the scent of damp earth.",
- "The sun is hidden between thick clouds.",
- "The night is eerily quiet.",
- "The temperature drops sharply at dusk.",
- "A faint whiff of flowers linger in the air.",
- "Your skin prickles with the anticipation of the unknown.",
- "Your pulse quickens, caught in the grip of an unbidden déjà vu.",
- "Your dream fades away, leaving only a whisper in the back of your mind.",
- "A fleeting image flickers in your mind, accompanied by an unsettling sense of dread that you can't quite place.<br>You shake it off, convincing yourself that it’s just your imagination.",
- "Leaves tremble and rustle as a hidden beast thrashes in the branches, echoing the sound of thunder.",
- "The distant cry of an animal echoes.",
- "Something reeks.",
- "A carpet of moss cusions your steps.",
- "Can you really blame yourself?",
- "A distant storm rumbles, promising a tempest on the horizon",
- "A vibrant rainbow arcs across the sky.",
- "What if the answers you seek are hidden within you?",
- "The journey is as important as the destination."
- ];
- if (!G.props['new day lines']) {
- G.props['new day lines'] = [];
- G.Message({type:'important tall',text:"Please load the More Atmosphere Messages after data.js or magix.",icon:[0,3]});
- }
- G.props['new day lines'] = G.props['new day lines'].concat(newDayLines);
- shuffle(G.props['new day lines']);
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement