– GameRaid` || `` || ``,
"product.id" : `8604398944549`,
"product.title" : `"NAMCO Little Nightmares 1 + 2 PS4"`,
"product.description" : `"LITTLE NIGHTMARESDo you remember your childhood fears? LITTLE NIGHTMARES, developed by Tarsier Studios, will allow you to embark on a grim adventure as you help our hero \u0026quot;Six\u0026quot; in her yellow raincoat escape The Maw – a vast, mysterious vessel inhabited by corrupted souls looking for their next meal!CHILD\u0026#39;S PLAY: Reconnect with your inner child, and unleash your imagination to stay out of harm\u0026#39;s way. In this oversized world you must be smart, resourceful and ready for anything, for even the smallest doubt can lead to a fatal misstep.GRIM UNIVERSE: Confront your childhood fears in this darkly whimsical tale of Six and The Maw. Trapped in this grim world with nothing but her wits and a lighter, Six must find light in the darkness and strength in her weakness if she is to surviveTHE DISTURBING DOLLHOUSE: Explore Six\u0026#39;s world, a disturbingly charming dollhouse that is both a prison and a playground. Part dream, part nightmare, every step through The Maw feels like a leap, and every shadow a vast darkness!The box includes the original soundtrack CD composed by Tobias Lilja from Tarsier Studios.LITTLE NIGHTMARES 2Do you dare to face your nightmares? Little Nightmares II gives you an exciting suspense adventure that will surely give you goosebumps.Little Nightmares II is a thriller adventure game where you play as Mono, a young boy trapped in a world that has been distorted by a humming transmission from a distant tower. With Six, the girl in a yellow raincoat, as her guide, Mono sets out to discover the dark secrets of the Signal Tower and save Six from her terrible fate; but their journey will not be straightforward as Mono and Six face a sea of new threats from the horrible inhabitants of this world.Do you dare to face this collection of new nightmares?PLAY A THRILLING SUSPENSE ADVENTURE THAT WILL GIVE YOU THE CREEPS Take Mono and Six on their adventure while a host of brand-new Residents lie in wait to haunt your steps and disturb your sleep. Outsmart the sadistic Teacher, survive the bloodthirsty Hunter and more hair-raising characters down to the roots of evil. DISCOVER A FANTASTICAL HORROR WORLD CORRUPTED BY THE SIGNAL TOWEREscape a world that’s rotten from the inside. Your journey will take you from creepy woodlands, to sinister schools, on your way to the dreadful Signal Tower to find the source of the evil that spreads through the TV screens of the world. REKINDLE YOUR DORMANT HEROIC CHILD TO SAVE SIX FROM THE DARKNESS Six is fading from this world and her only hope is to guide Mono to the Signal Tower. In this world of nightmares, you are her only beacon of hope. Can you muster the courage to fend off your tormenters, and co-operate with Six to somehow make sense of The Signal Tower?"`,
"product.type": `Video Game`,
"product.price": `29.99`,
"product.vendor": `Bandai Namco`,
"product.variants.title": `Default Title`,
"product.variants.sku": `B4-BQLG-PP8F`,
"collection.title": ``,
"collection.description": ``,
"collection.products_count": ``,
"article.title": ``,
"article.author": ``,
"article.excerpt_or_content": ``,
"article.content": ``,
"article.excerpt": ``,
};
const file_name = "81258610981";
const metaDescriptionTag = document.querySelector('meta[name="description"]');
const pageTypeMeta = "product";
function replaceVar(string) {
if(!string) return '';
var replacedString = string;
for (var key in preAsssignedValue) {
if (preAsssignedValue.hasOwnProperty(key)) {
replacedString = replacedString.replace(key, preAsssignedValue[key]);
}
}
return replacedString;
}
var instantPageUrl = "https://cdn.shopify.com/extensions/85902c17-fbef-44bf-b1a6-f65ab1b4b12d/tapita-seo-speed-101/assets/instantpage.js";
var tptMetaDataConfigUrl = false;
// ADD META WHEN tptMetaDataConfigUrl valid
const createMetaTag = (descriptionValue) => {
const metaTag = document.createElement('meta');
metaTag.setAttribute('name', 'description');
metaTag.setAttribute('content', descriptionValue);
const headTag = document.querySelector('head');
headTag.appendChild(metaTag);
}
const replaceMetaTagContent = (titleValue, descriptionValue, needReplaceVar) => {
const disableReplacingTitle = !!window._tpt_no_replacing_plain_title
const disableReplacingDescription = !!window._tpt_no_replacing_plain_desc
const config = { attributes: true, childList: true, subtree: true};
const header = document.getElementsByTagName('head')[0];
let i = 0;
const callback = (mutationList, observer) => {
i++;
const title = document.getElementsByTagName('title')[0];
const ogTitle = document.querySelector('meta[property="og:title"]');
const twitterTitle = document.querySelector('meta[name="twitter:title"]');
const newTitle = needReplaceVar ? replaceVar(titleValue) : titleValue;
const newDescription = needReplaceVar ? replaceVar(descriptionValue) : descriptionValue;
if(document && document.title != newTitle && !disableReplacingTitle){
document.title = newTitle;
}
if(ogTitle && (ogTitle?.content != newTitle)){
ogTitle?.setAttribute('content', newTitle);
}
if(twitterTitle && (twitterTitle?.content != newTitle)){
twitterTitle?.setAttribute('content', newTitle);
}
const metaDescriptionTagList = document.querySelectorAll('meta[name="description"]');
const ogDescriptionTagList = document.querySelector('meta[property="og:description"]');
const twitterDescriptionTagList = document.querySelector('meta[name="twitter:description"]');
try {
if(ogDescriptionTagList && newDescription && (ogDescriptionTagList?.content != newDescription)) {
ogDescriptionTagList?.setAttribute('content', newDescription);
}
if(twitterDescriptionTagList && newDescription && (twitterDescriptionTagList?.content != newDescription)){
twitterDescriptionTagList?.setAttribute('content', newDescription);
}
} catch (err) {
}
if(metaDescriptionTagList?.length == 0){
try {
createMetaTag(descriptionValue);
} catch (err) {
//
}
}
metaDescriptionTagList?.forEach(metaDescriptionTag=>{
if(metaDescriptionTag.content != newDescription && !disableReplacingDescription){
metaDescriptionTag.content = newDescription;
}
})
if(observer && i > 1000){
observer.disconnect();
}
};
callback();
setTimeout(callback, 100);
const observer = new MutationObserver(callback);
if(observer){
observer.observe(header, config);
}
}
if (tptMetaDataConfigUrl) {
fetch(tptMetaDataConfigUrl)
.then(response => response.json())
.then((data) => {
if(!data) return;
const language = document.documentElement.lang || 'en';
let languageMeta = false;
if (data.metaData && data.metaData[language]) {
languageMeta = data.metaData[language];
} else {
if (data.metaData) {
languageMeta = data.metaData;
} else {
languageMeta = {};
}
}
const productTitle = languageMeta.products?.meta_title_value || '';
const productDescription = languageMeta.products?.meta_description_value || '';
const productTurnOn = data?.metaData?.turnOnObject?.products || data?.metaData?.products?.turnOn || false;
const collectionTitle = languageMeta.collections?.meta_title_value || '';
const collectionDescription = languageMeta.collections?.meta_description_value || '';
const collectionTurnOn = data?.metaData?.turnOnObject?.collections || data?.metaData?.collections?.turnOn || false;
const articleTitle = languageMeta.articles?.meta_title_value || '';
const articleDescription = languageMeta.articles?.meta_description_value || '';
const articleTurnOn = data?.metaData?.turnOnObject?.articles || data?.metaData?.collections?.turnOn || false;
if (window.tapita_meta_page_title || window.tapita_meta_page_description) {
replaceMetaTagContent(window.tapita_meta_page_title, window.tapita_meta_page_description, false);
} else {
if(productTurnOn){
if(pageTypeMeta == 'product'){
replaceMetaTagContent(productTitle, productDescription, true);
}
}
if(collectionTurnOn){
if(pageTypeMeta == 'collection'){
replaceMetaTagContent(collectionTitle, collectionDescription, true);
}
}
if(articleTurnOn){
if(pageTypeMeta == 'article'){
replaceMetaTagContent(articleTitle, articleDescription, true);
}
}
}
const instantPage = data?.instantPage || false;
const excludedPaths = [
'/cart',
'/checkout',
'/account',
'/account/login',
'/account/logout'
];
if (!window.FPConfig || !window.FPConfig.ignoreKeywords || !Array.isArray(window.FPConfig.ignoreKeywords)) {
window.FPConfig = { ignoreKeywords : excludedPaths };
} else {
window.FPConfig.ignoreKeywords = window.FPConfig.ignoreKeywords.concat(excludedPaths);
}
var toEnableInstantPageByPath = true;
if (window.location.pathname && window.location.pathname.includes) {
excludedPaths.forEach(excludedPath => {
if (window.location.pathname.includes(excludedPath)) {
toEnableInstantPageByPath = false;
}
});
}
if (window.document &&
window.document.location &&
window.document.location.pathname &&
window.document.location.pathname.includes) {
excludedPaths.forEach(excludedPath => {
if (window.document.location.pathname.includes(excludedPath)) {
toEnableInstantPageByPath = false;
}
});
}
if(instantPage && toEnableInstantPageByPath){
const tptAddInstantPage = setInterval(function () {
if(document && document.body){
var instantScript = document.createElement('script');
instantScript.src = instantPageUrl;
document.body.appendChild(instantScript);
clearInterval(tptAddInstantPage);
}}, 500);
}
});
} else {
if (window.tapita_meta_page_title || window.tapita_meta_page_description) {
replaceMetaTagContent(window.tapita_meta_page_title, window.tapita_meta_page_description, false);
}
}
Do you remember your childhood fears? LITTLE NIGHTMARES, developed by Tarsier Studios, will allow you to embark on a grim adventure as you help our hero "Six" in her yellow raincoat escape The Maw – a vast, mysterious vessel inhabited by corrupted souls looking for their next meal!
CHILD'S PLAY: Reconnect with your inner child, and unleash your imagination to stay out of harm's way. In this oversized world you must be smart, resourceful and ready for anything, for even the smallest doubt can lead to a fatal misstep.
GRIM UNIVERSE: Confront your childhood fears in this darkly whimsical tale of Six and The Maw. Trapped in this grim world with nothing but her wits and a lighter, Six must find light in the darkness and strength in her weakness if she is to survive
THE DISTURBING DOLLHOUSE: Explore Six's world, a disturbingly charming dollhouse that is both a prison and a playground. Part dream, part nightmare, every step through The Maw feels like a leap, and every shadow a vast darkness!
The box includes the original soundtrack CD composed by Tobias Lilja from Tarsier Studios.
LITTLE NIGHTMARES 2
Do you dare to face your nightmares? Little Nightmares II gives you an exciting suspense adventure that will surely give you goosebumps.
Little Nightmares II is a thriller adventure game where you play as Mono, a young boy trapped in a world that has been distorted by a humming transmission from a distant tower. With Six, the girl in a yellow raincoat, as her guide, Mono sets out to discover the dark secrets of the Signal Tower and save Six from her terrible fate; but their journey will not be straightforward as Mono and Six face a sea of new threats from the horrible inhabitants of this world.
Do you dare to face this collection of new nightmares?
PLAY A THRILLING SUSPENSE ADVENTURE THAT WILL GIVE YOU THE CREEPS
Take Mono and Six on their adventure while a host of brand-new Residents lie in wait to haunt your steps and disturb your sleep. Outsmart the sadistic Teacher, survive the bloodthirsty Hunter and more hair-raising characters down to the roots of evil.
DISCOVER A FANTASTICAL HORROR WORLD CORRUPTED BY THE SIGNAL TOWER
Escape a world that’s rotten from the inside. Your journey will take you from creepy woodlands, to sinister schools, on your way to the dreadful Signal Tower to find the source of the evil that spreads through the TV screens of the world.
REKINDLE YOUR DORMANT HEROIC CHILD TO SAVE SIX FROM THE DARKNESS
Six is fading from this world and her only hope is to guide Mono to the Signal Tower. In this world of nightmares, you are her only beacon of hope. Can you muster the courage to fend off your tormenters, and co-operate with Six to somehow make sense of The Signal Tower?
LITTLE NIGHTMARES
Do you remember your childhood fears? LITTLE NIGHTMARES, developed by Tarsier Studios, will allow you to embark on a grim adventure as you help our hero "Six" in her yellow raincoat escape The Maw – a vast, mysterious vessel inhabited by corrupted souls looking for their next meal!
CHILD'S PLAY: Reconnect with your inner child, and unleash your imagination to stay out of harm's way. In this oversized world you must be smart, resourceful and ready for anything, for even the smallest doubt can lead to a fatal misstep.
GRIM UNIVERSE: Confront your childhood fears in this darkly whimsical tale of Six and The Maw. Trapped in this grim world with nothing but her wits and a lighter, Six must find light in the darkness and strength in her weakness if she is to survive
THE DISTURBING DOLLHOUSE: Explore Six's world, a disturbingly charming dollhouse that is both a prison and a playground. Part dream, part nightmare, every step through The Maw feels like a leap, and every shadow a vast darkness!
The box includes the original soundtrack CD composed by Tobias Lilja from Tarsier Studios.
LITTLE NIGHTMARES 2
Do you dare to face your nightmares? Little Nightmares II gives you an exciting suspense adventure that will surely give you goosebumps.
Little Nightmares II is a thriller adventure game where you play as Mono, a young boy trapped in a world that has been distorted by a humming transmission from a distant tower. With Six, the girl in a yellow raincoat, as her guide, Mono sets out to discover the dark secrets of the Signal Tower and save Six from her terrible fate; but their journey will not be straightforward as Mono and Six face a sea of new threats from the horrible inhabitants of this world.
Do you dare to face this collection of new nightmares?
PLAY A THRILLING SUSPENSE ADVENTURE THAT WILL GIVE YOU THE CREEPS
Take Mono and Six on their adventure while a host of brand-new Residents lie in wait to haunt your steps and disturb your sleep. Outsmart the sadistic Teacher, survive the bloodthirsty Hunter and more hair-raising characters down to the roots of evil.
DISCOVER A FANTASTICAL HORROR WORLD CORRUPTED BY THE SIGNAL TOWER
Escape a world that’s rotten from the inside. Your journey will take you from creepy woodlands, to sinister schools, on your way to the dreadful Signal Tower to find the source of the evil that spreads through the TV screens of the world.
REKINDLE YOUR DORMANT HEROIC CHILD TO SAVE SIX FROM THE DARKNESS
Six is fading from this world and her only hope is to guide Mono to the Signal Tower. In this world of nightmares, you are her only beacon of hope. Can you muster the courage to fend off your tormenters, and co-operate with Six to somehow make sense of The Signal Tower?
Shipping & Delivery
Free tracked shipping on all orders.
Same-day dispatch before 9AM (Mon–Fri). Delivery in 1–3 working days via Royal Mail or Amazon Logistics.
Free tracked shipping on all orders.
Same-day dispatch before 9AM (Mon–Fri). Delivery in 1–3 working days via Royal Mail or Amazon Logistics.
Subscribe to our emails
Be the first to know about new collections and exclusive offers.
Choosing a selection results in a full page refresh.