Kérdése van? Írjon nekünk! info@oxfordcorner.hu

Cthonia's Reckoning Hb (English)
Cthonia's Reckoning Hb (English)
9 144 Ft 
8 230 Ft

Cthonia's Reckoning Hb (English)

Angol nyelvű regény a Warhammer 40 000 világából

A Black Library könyvek a megszokottnál, minden esetben hosszabb beszerzésűek. Cégünk mindent megtesz annak érdekében, hogy a könyveket beszerezzük. Azonban előfordulhat az, hogy rajtunk kívülálló okok miatt (nem kapható,-kifutott termék) nem tudjuk beszerezni. Ennek elkerülése érdekében azt javasoljuk, hogy a raktáron lévő könyveink közül válogassanak, hogy biztosan megérkezzen a kívánt könyv Önökhöz.

A Horus Heresy Anthology

In the final years of the Horus Heresy, all eyes were on the Siege of Terra. But out in the vast darkness of space, war raged over a thousand other worlds – including the home world of the Sons of Horus, Cthonia.

READ IT BECAUSE

Witness the bitter, spiteful struggle between the Imperial Fists and the Sons of Horus over the Warmaster's home planet of Cthonia, in seven stories from a variety of authors.

DESCRIPTION

After seven long years of conflict, the Horus Heresy nears its end. But now, as the Warmaster Horus marches on Terra to rip his father from the Throne, the seat of the arch-traitor’s power lies empty. Cthonia, a world once dominated by brutal murder-gangs, is occupied by the Emperor’s praetorians – the indomitable Imperial Fists. For the Sons of Horus, this outrage demands a reckoning. From the towering heights of Traitor’s Gate, stronghold of the VII Legion, to the unending warrens in the planet’s crust, the two sides slaughter one another without remorse. It is a war of spite, and only the most ruthless will rise to claim Cthonia.

CONTENTS

– Sons of Cthonia by John French
– To the Last by Michael F Haspil
– The Gangs Beneath by Gary Kloster
– The Flesh Harvest by Nicholas Wolf
– Traitor's Faith by Noah Van Nguyen
– For Hate's Sake by Gav Thorpe
– Postulant by Chris Forrester

Raktáron   (1 db)
10
9 144 Ft 
8 230 Ft
Kedvezmény: 10
Megtakarítás 914 Ft
A vásárlás után járó pontok: 165 Ft
Adatok
Cikkszám
BL3006
Csomagajánlatok
Hasonló termékek
// Globális objektum a kosár események nyomon követésére const cartTracking = {}; // Data Layer figyelése window.dataLayer = window.dataLayer || []; window.dataLayer.push = function (event) { Array.prototype.push.apply(this, arguments); // Figyeljük az add_to_cart eseményt if (event.event === 'add_to_cart') { const eventValue = event.value || 0; // Az add_to_cart esemény értéke const userId = event.userId || 'anonymous_user'; // Tároljuk az értéket és indítunk egy timeoutot cartTracking[userId] = { value: eventValue, timeout: setTimeout(() => { gtag('event', 'cart_abandonment', { value: eventValue, // A kosár értéke }); delete cartTracking[userId]; }, 3600000); // 1 óra timeout }; } // Figyeljük a purchase eseményt if (event.event === 'purchase') { const userId = event.userId || 'anonymous_user'; if (cartTracking[userId]) { clearTimeout(cartTracking[userId].timeout); delete cartTracking[userId]; } } };