Récupération d'articles d'archives
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
const HIGHLIGHT_START = "__MEILI_HIGHLIGHT_START__";
|
||||||
|
const HIGHLIGHT_END = "__MEILI_HIGHLIGHT_END__";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lit la configuration exposee par le template Hugo.
|
* Lit la configuration exposee par le template Hugo.
|
||||||
* @param {HTMLElement} root Element principal de la page.
|
* @param {HTMLElement} root Element principal de la page.
|
||||||
@@ -67,14 +70,27 @@ function readSearchQuery(queryParam) {
|
|||||||
* @param {string} query Texte recherche.
|
* @param {string} query Texte recherche.
|
||||||
* @param {number} limit Nombre de resultats par lot.
|
* @param {number} limit Nombre de resultats par lot.
|
||||||
* @param {number} offset Position de depart.
|
* @param {number} offset Position de depart.
|
||||||
* @returns {{q: string, limit: number, offset: number, attributesToRetrieve: string[]}}
|
* @returns {object}
|
||||||
*/
|
*/
|
||||||
function buildSearchPayload(query, limit, offset) {
|
function buildSearchPayload(query, limit, offset) {
|
||||||
return {
|
return {
|
||||||
q: query,
|
q: query,
|
||||||
limit,
|
limit,
|
||||||
offset,
|
offset,
|
||||||
attributesToRetrieve: ["title", "path", "published_at"],
|
attributesToRetrieve: [
|
||||||
|
"title",
|
||||||
|
"description",
|
||||||
|
"content",
|
||||||
|
"path",
|
||||||
|
"section",
|
||||||
|
"published_at",
|
||||||
|
],
|
||||||
|
attributesToHighlight: ["title", "description", "content"],
|
||||||
|
attributesToCrop: ["content"],
|
||||||
|
cropLength: 24,
|
||||||
|
cropMarker: "...",
|
||||||
|
highlightPreTag: HIGHLIGHT_START,
|
||||||
|
highlightPostTag: HIGHLIGHT_END,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -179,7 +195,7 @@ function setSectionVisibility(section, visible) {
|
|||||||
/**
|
/**
|
||||||
* Convertit un hit brut en resultat exploitable.
|
* Convertit un hit brut en resultat exploitable.
|
||||||
* @param {any} hit Resultat brut.
|
* @param {any} hit Resultat brut.
|
||||||
* @returns {{title: string, path: string, published_at: string} | null}
|
* @returns {{title: string, titleMarkup: string, summary: string, summaryMarkup: string, path: string, section: string, published_at: string} | null}
|
||||||
*/
|
*/
|
||||||
function normalizeHit(hit) {
|
function normalizeHit(hit) {
|
||||||
if (typeof hit !== "object" || hit === null) {
|
if (typeof hit !== "object" || hit === null) {
|
||||||
@@ -194,19 +210,110 @@ function normalizeHit(hit) {
|
|||||||
if (typeof hit.title === "string" && hit.title.trim().length > 0) {
|
if (typeof hit.title === "string" && hit.title.trim().length > 0) {
|
||||||
title = hit.title.trim();
|
title = hit.title.trim();
|
||||||
}
|
}
|
||||||
|
const titleMarkup = readFormattedField(hit, "title") || title;
|
||||||
|
|
||||||
let publishedAt = "";
|
let publishedAt = "";
|
||||||
if (typeof hit.published_at === "string" && hit.published_at.trim().length > 0) {
|
if (typeof hit.published_at === "string" && hit.published_at.trim().length > 0) {
|
||||||
publishedAt = hit.published_at.trim();
|
publishedAt = hit.published_at.trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let section = "";
|
||||||
|
if (typeof hit.section === "string" && hit.section.trim().length > 0) {
|
||||||
|
section = hit.section.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
const summaryMarkup = selectSummaryMarkup(hit);
|
||||||
|
const summary = stripHighlightMarkers(summaryMarkup);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title,
|
title,
|
||||||
|
titleMarkup,
|
||||||
|
summary,
|
||||||
|
summaryMarkup,
|
||||||
path: hit.path.trim(),
|
path: hit.path.trim(),
|
||||||
|
section,
|
||||||
published_at: publishedAt,
|
published_at: publishedAt,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lit un champ formate par Meilisearch.
|
||||||
|
* @param {any} hit Resultat brut.
|
||||||
|
* @param {string} attribute Nom de l'attribut recherche.
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function readFormattedField(hit, attribute) {
|
||||||
|
if (typeof hit !== "object" || hit === null) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
const formatted = hit._formatted;
|
||||||
|
if (typeof formatted !== "object" || formatted === null) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
const rawValue = formatted[attribute];
|
||||||
|
if (typeof rawValue !== "string") {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
return rawValue.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indique si une chaine contient des marqueurs de surlignage.
|
||||||
|
* @param {string} value Texte formate.
|
||||||
|
* @returns {boolean}
|
||||||
|
*/
|
||||||
|
function containsHighlightMarkers(value) {
|
||||||
|
return value.includes(HIGHLIGHT_START) && value.includes(HIGHLIGHT_END);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Selectionne le meilleur extrait a afficher pour un resultat.
|
||||||
|
* @param {any} hit Resultat brut.
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function selectSummaryMarkup(hit) {
|
||||||
|
const formattedDescription = readFormattedField(hit, "description");
|
||||||
|
const formattedContent = readFormattedField(hit, "content");
|
||||||
|
|
||||||
|
if (containsHighlightMarkers(formattedDescription)) {
|
||||||
|
return formattedDescription;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (containsHighlightMarkers(formattedContent)) {
|
||||||
|
return formattedContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof hit.description === "string" && hit.description.trim().length > 0) {
|
||||||
|
return hit.description.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (formattedDescription.length > 0) {
|
||||||
|
return formattedDescription;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (formattedContent.length > 0) {
|
||||||
|
return formattedContent;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof hit.content === "string" && hit.content.trim().length > 0) {
|
||||||
|
return hit.content.trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retire les marqueurs de surlignage d'un texte.
|
||||||
|
* @param {string} value Texte formate.
|
||||||
|
* @returns {string}
|
||||||
|
*/
|
||||||
|
function stripHighlightMarkers(value) {
|
||||||
|
return value.split(HIGHLIGHT_START).join("").split(HIGHLIGHT_END).join("").trim();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Formate la date en ignorant l'heure de publication.
|
* Formate la date en ignorant l'heure de publication.
|
||||||
* @param {unknown} rawDate Date brute.
|
* @param {unknown} rawDate Date brute.
|
||||||
@@ -240,58 +347,107 @@ function buildDateInfo(rawDate) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Extrait un libelle de section a partir du chemin Hugo.
|
* Extrait un libelle de section a partir du chemin Hugo.
|
||||||
|
* @param {string} section Section brute renvoyee par l'index.
|
||||||
* @param {string} path Chemin relatif de l'article.
|
* @param {string} path Chemin relatif de l'article.
|
||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
function extractSectionLabel(path) {
|
function extractSectionLabel(section, path) {
|
||||||
|
let sectionKey = "";
|
||||||
|
if (typeof section === "string" && section.trim().length > 0) {
|
||||||
|
sectionKey = section.trim();
|
||||||
|
} else {
|
||||||
const segments = path.split("/").filter(Boolean);
|
const segments = path.split("/").filter(Boolean);
|
||||||
if (segments.length === 0) {
|
if (segments.length === 0) {
|
||||||
return "Section inconnue";
|
return "Section inconnue";
|
||||||
}
|
}
|
||||||
|
|
||||||
const firstSegment = segments[0];
|
sectionKey = segments[0];
|
||||||
if (firstSegment === "collections") {
|
}
|
||||||
|
|
||||||
|
if (sectionKey === "collections") {
|
||||||
return "Collections";
|
return "Collections";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "critiques") {
|
if (sectionKey === "critiques") {
|
||||||
return "Critiques";
|
return "Critiques";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "interets") {
|
if (sectionKey === "interets") {
|
||||||
return "Intérêts";
|
return "Intérêts";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "stats") {
|
if (sectionKey === "stats") {
|
||||||
return "Statistiques";
|
return "Statistiques";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "taxonomies") {
|
if (sectionKey === "taxonomies") {
|
||||||
return "Taxonomies";
|
return "Taxonomies";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "contact") {
|
if (sectionKey === "contact") {
|
||||||
return "Contact";
|
return "Contact";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "manifeste") {
|
if (sectionKey === "manifeste") {
|
||||||
return "Manifeste";
|
return "Manifeste";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "liens-morts") {
|
if (sectionKey === "liens-morts") {
|
||||||
return "Liens morts";
|
return "Liens morts";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (firstSegment === "revue-de-presse") {
|
if (sectionKey === "revue-de-presse") {
|
||||||
return "Revue de presse";
|
return "Revue de presse";
|
||||||
}
|
}
|
||||||
|
|
||||||
return firstSegment;
|
return sectionKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construit un fragment DOM avec les passages surlignes.
|
||||||
|
* @param {string} rawText Texte potentiellement marque.
|
||||||
|
* @returns {DocumentFragment}
|
||||||
|
*/
|
||||||
|
function buildHighlightedFragment(rawText) {
|
||||||
|
const fragment = document.createDocumentFragment();
|
||||||
|
|
||||||
|
if (typeof rawText !== "string" || rawText.length === 0) {
|
||||||
|
return fragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
let remaining = rawText;
|
||||||
|
|
||||||
|
while (remaining.length > 0) {
|
||||||
|
const startIndex = remaining.indexOf(HIGHLIGHT_START);
|
||||||
|
if (startIndex === -1) {
|
||||||
|
fragment.append(remaining);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (startIndex > 0) {
|
||||||
|
fragment.append(remaining.slice(0, startIndex));
|
||||||
|
}
|
||||||
|
|
||||||
|
remaining = remaining.slice(startIndex + HIGHLIGHT_START.length);
|
||||||
|
|
||||||
|
const endIndex = remaining.indexOf(HIGHLIGHT_END);
|
||||||
|
if (endIndex === -1) {
|
||||||
|
fragment.append(remaining);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
const mark = document.createElement("mark");
|
||||||
|
mark.textContent = remaining.slice(0, endIndex);
|
||||||
|
fragment.append(mark);
|
||||||
|
remaining = remaining.slice(endIndex + HIGHLIGHT_END.length);
|
||||||
|
}
|
||||||
|
|
||||||
|
return fragment;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construit un article de resultat simple.
|
* Construit un article de resultat simple.
|
||||||
* @param {{title: string, path: string, published_at?: string}} hit Resultat.
|
* @param {{title: string, titleMarkup: string, summary: string, summaryMarkup: string, path: string, section: string, published_at?: string}} hit Resultat.
|
||||||
* @returns {HTMLElement}
|
* @returns {HTMLElement}
|
||||||
*/
|
*/
|
||||||
function createResultArticle(hit) {
|
function createResultArticle(hit) {
|
||||||
@@ -300,7 +456,7 @@ function createResultArticle(hit) {
|
|||||||
const title = document.createElement("h3");
|
const title = document.createElement("h3");
|
||||||
const link = document.createElement("a");
|
const link = document.createElement("a");
|
||||||
link.href = hit.path;
|
link.href = hit.path;
|
||||||
link.textContent = hit.title;
|
link.append(buildHighlightedFragment(hit.titleMarkup));
|
||||||
title.append(link);
|
title.append(link);
|
||||||
article.append(title);
|
article.append(title);
|
||||||
|
|
||||||
@@ -324,11 +480,18 @@ function createResultArticle(hit) {
|
|||||||
meta.append(separator);
|
meta.append(separator);
|
||||||
|
|
||||||
const section = document.createElement("span");
|
const section = document.createElement("span");
|
||||||
section.textContent = extractSectionLabel(hit.path);
|
section.textContent = extractSectionLabel(hit.section, hit.path);
|
||||||
meta.append(section);
|
meta.append(section);
|
||||||
|
|
||||||
article.append(meta);
|
article.append(meta);
|
||||||
|
|
||||||
|
if (hit.summary.length > 0) {
|
||||||
|
const summary = document.createElement("p");
|
||||||
|
summary.className = "search-result-summary";
|
||||||
|
summary.append(buildHighlightedFragment(hit.summaryMarkup));
|
||||||
|
article.append(summary);
|
||||||
|
}
|
||||||
|
|
||||||
const path = document.createElement("p");
|
const path = document.createElement("p");
|
||||||
path.className = "search-result-path";
|
path.className = "search-result-path";
|
||||||
path.textContent = hit.path;
|
path.textContent = hit.path;
|
||||||
@@ -340,7 +503,7 @@ function createResultArticle(hit) {
|
|||||||
/**
|
/**
|
||||||
* Rend la liste des resultats.
|
* Rend la liste des resultats.
|
||||||
* @param {HTMLOListElement} listNode Liste cible.
|
* @param {HTMLOListElement} listNode Liste cible.
|
||||||
* @param {Array<{title: string, path: string, published_at?: string}>} hits Resultats a afficher.
|
* @param {Array<{title: string, titleMarkup: string, summary: string, summaryMarkup: string, path: string, section: string, published_at?: string}>} hits Resultats a afficher.
|
||||||
*/
|
*/
|
||||||
function renderListing(listNode, hits) {
|
function renderListing(listNode, hits) {
|
||||||
clearNode(listNode);
|
clearNode(listNode);
|
||||||
|
|||||||
@@ -1,41 +1,41 @@
|
|||||||
---
|
---
|
||||||
title: Santa's Visit
|
comments_url: https://com.richard-dern.fr/post/380
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/92322.jpg
|
cover: images/92322.jpg
|
||||||
links:
|
date: '2025-10-26 12:00:00'
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/santas-visit-10293
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/10293-1/santas-visit/
|
|
||||||
lang: en
|
|
||||||
periodes:
|
|
||||||
- Noël
|
|
||||||
- Hiver
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- LEGO
|
- LEGO
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/santas-visit-10293
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/10293-1/santas-visit/
|
||||||
|
periodes:
|
||||||
|
- Noël
|
||||||
|
- Hiver
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Père Noël
|
- Père Noël
|
||||||
tags:
|
tags:
|
||||||
- Maison
|
- Maison
|
||||||
- Sapin
|
- Sapin
|
||||||
- Cadeaux
|
- Cadeaux
|
||||||
- Hotte
|
- Hotte
|
||||||
- Brique lumineuse
|
- Brique lumineuse
|
||||||
- Tradition
|
- Tradition
|
||||||
- Neige
|
- Neige
|
||||||
- Cheminée
|
- Cheminée
|
||||||
|
title: Santa's Visit
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/380
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,31 +1,31 @@
|
|||||||
---
|
---
|
||||||
title: Holiday Main Street
|
comments_url: https://com.richard-dern.fr/post/381
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/110146.jpg
|
cover: images/110146.jpg
|
||||||
links:
|
date: '2025-10-26 12:00:00'
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/holiday-main-street-10308
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/10308-1/holiday-main-street/
|
|
||||||
lang: en
|
|
||||||
periodes:
|
|
||||||
- Noël
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- LEGO
|
- LEGO
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/holiday-main-street-10308
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/10308-1/holiday-main-street/
|
||||||
|
periodes:
|
||||||
|
- Noël
|
||||||
|
title: Holiday Main Street
|
||||||
vehicules:
|
vehicules:
|
||||||
- Tramway
|
- Tramway
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/381
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,31 +1,31 @@
|
|||||||
---
|
---
|
||||||
title: Alpine Lodge
|
comments_url: https://com.richard-dern.fr/post/382
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/127993.jpg
|
cover: images/127993.jpg
|
||||||
links:
|
date: '2025-10-26 12:00:00'
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/alpine-lodge-10325
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/10325-1/alpine-lodge/
|
|
||||||
lang: en
|
|
||||||
periodes:
|
|
||||||
- Noël
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- LEGO
|
- LEGO
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/alpine-lodge-10325
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/10325-1/alpine-lodge/
|
||||||
|
periodes:
|
||||||
|
- Noël
|
||||||
|
title: Alpine Lodge
|
||||||
véhicules:
|
véhicules:
|
||||||
- Moto-neige
|
- Moto-neige
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/382
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,21 +1,20 @@
|
|||||||
---
|
---
|
||||||
title: Santa's Post Office
|
comments_url: https://com.richard-dern.fr/post/451
|
||||||
date: "2025-12-06 17:09:35"
|
|
||||||
cover: images/145964.jpg
|
cover: images/145964.jpg
|
||||||
|
date: '2025-12-06 17:09:35'
|
||||||
|
title: Santa's Post Office
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.55555555555556
|
humidity: 92.0
|
||||||
humidity: 92
|
illuminance: 0.0
|
||||||
pressure: 1012.53020346196
|
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 14.6450304
|
pressure: 1012.53020346196
|
||||||
wind_direction: 216
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/451
|
temperature: 8.55555555555556
|
||||||
|
wind_direction: 216.0
|
||||||
|
wind_speed: 14.6450304
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,21 +1,20 @@
|
|||||||
---
|
---
|
||||||
title: Holiday Express Train
|
comments_url: https://com.richard-dern.fr/post/452
|
||||||
date: "2025-12-06 17:10:22"
|
|
||||||
cover: images/161069.jpg
|
cover: images/161069.jpg
|
||||||
|
date: '2025-12-06 17:10:22'
|
||||||
|
title: Holiday Express Train
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.55555555555556
|
humidity: 92.0
|
||||||
humidity: 92
|
illuminance: 0.0
|
||||||
pressure: 1012.53020346196
|
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.3341952
|
pressure: 1012.53020346196
|
||||||
wind_direction: 288
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/452
|
temperature: 8.55555555555556
|
||||||
|
wind_direction: 288.0
|
||||||
|
wind_speed: 9.3341952
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Poinsettia
|
comments_url: https://com.richard-dern.fr/post/455
|
||||||
date: "2025-12-06 17:12:56"
|
|
||||||
cover: images/144811.jpg
|
cover: images/144811.jpg
|
||||||
|
date: '2025-12-06 17:12:56'
|
||||||
|
title: Poinsettia
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.55555555555556
|
humidity: 91.0
|
||||||
humidity: 91
|
illuminance: 0.0
|
||||||
pressure: 1012.53020346196
|
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.656064
|
pressure: 1012.53020346196
|
||||||
wind_direction: 238
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/455
|
temperature: 8.55555555555556
|
||||||
|
wind_direction: 238.0
|
||||||
|
wind_speed: 9.656064
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Christmas Table Decoration
|
comments_url: https://com.richard-dern.fr/post/453
|
||||||
date: "2025-12-06 17:12:14"
|
|
||||||
cover: images/143737.jpg
|
cover: images/143737.jpg
|
||||||
|
date: '2025-12-06 17:12:14'
|
||||||
|
title: Christmas Table Decoration
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.55555555555556
|
humidity: 91.0
|
||||||
humidity: 91
|
illuminance: 0.0
|
||||||
pressure: 1012.53020346196
|
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 10.7826048
|
pressure: 1012.53020346196
|
||||||
wind_direction: 258
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/453
|
temperature: 8.55555555555556
|
||||||
|
wind_direction: 258.0
|
||||||
|
wind_speed: 10.7826048
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Classic Animation Scenes
|
comments_url: https://com.richard-dern.fr/post/454
|
||||||
date: "2025-12-06 17:12:26"
|
|
||||||
cover: images/162186.jpg
|
cover: images/162186.jpg
|
||||||
|
date: '2025-12-06 17:12:26'
|
||||||
|
title: Classic Animation Scenes
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.55555555555556
|
humidity: 91.0
|
||||||
humidity: 91
|
illuminance: 0.0
|
||||||
pressure: 1012.53020346196
|
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 10.7826048
|
pressure: 1012.53020346196
|
||||||
wind_direction: 258
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/454
|
temperature: 8.55555555555556
|
||||||
|
wind_direction: 258.0
|
||||||
|
wind_speed: 10.7826048
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,34 +1,34 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/116
|
||||||
cover: images/ysamws.jpg
|
cover: images/ysamws.jpg
|
||||||
date: "2022-11-10 12:00:00"
|
date: '2022-11-10 12:00:00'
|
||||||
title: NASA Space Shuttle Discovery
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/nasa-space-shuttle-discovery-10283
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/10283-1/nasa-space-shuttle-discovery/
|
|
||||||
lang: en
|
|
||||||
tags:
|
|
||||||
- Espace
|
|
||||||
- Discovery
|
|
||||||
- Hubble
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- LEGO
|
- LEGO
|
||||||
- NASA
|
- NASA
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/nasa-space-shuttle-discovery-10283
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/10283-1/nasa-space-shuttle-discovery/
|
||||||
|
tags:
|
||||||
|
- Espace
|
||||||
|
- Discovery
|
||||||
|
- Hubble
|
||||||
|
title: NASA Space Shuttle Discovery
|
||||||
vehicules:
|
vehicules:
|
||||||
- Navette spatiale
|
- Navette spatiale
|
||||||
weather:
|
weather:
|
||||||
temperature: 12.2
|
|
||||||
humidity: 77
|
humidity: 77
|
||||||
pressure: 1026.7
|
|
||||||
illuminance: 42191.1
|
illuminance: 42191.1
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 7.4
|
pressure: 1026.7
|
||||||
wind_direction: 231
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/116
|
temperature: 12.3
|
||||||
|
wind_direction: 231
|
||||||
|
wind_speed: 7.4
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce set (de la gamme _Creator_) contient 2354 pièces et est divisé en deux montages : le télescope Hubble et la navette Discovery.
|
Ce set (de la gamme _Creator_) contient 2354 pièces et est divisé en deux montages : le télescope Hubble et la navette Discovery.
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor Ambush
|
comments_url: https://com.richard-dern.fr/post/422
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134204.jpg
|
cover: images/134204.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor Ambush
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/422
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen Grady and Red Motorbike
|
comments_url: https://com.richard-dern.fr/post/462
|
||||||
date: "2025-12-17 15:18:48"
|
|
||||||
cover: images/134215.jpg
|
cover: images/134215.jpg
|
||||||
|
date: '2025-12-17 15:18:48'
|
||||||
|
title: Owen Grady and Red Motorbike
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.88888888888889
|
humidity: 93.0
|
||||||
humidity: 93
|
|
||||||
pressure: 1023.36664711105
|
|
||||||
illuminance: 5254.8
|
illuminance: 5254.8
|
||||||
wind_speed: 3.218688
|
|
||||||
wind_direction: 298
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
|
pressure: 1023.36664711105
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/462
|
temperature: 8.88888888888889
|
||||||
|
wind_direction: 298.0
|
||||||
|
wind_speed: 3.218688
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen and Quad
|
comments_url: https://com.richard-dern.fr/post/423
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134223.jpg
|
cover: images/134223.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen and Quad
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/423
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Rainn Delacourt with Raptor
|
comments_url: https://com.richard-dern.fr/post/424
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134224.jpg
|
cover: images/134224.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Rainn Delacourt with Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/424
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Blue Raptor
|
comments_url: https://com.richard-dern.fr/post/425
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134225.jpg
|
cover: images/134225.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Blue Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/425
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor and Trap
|
comments_url: https://com.richard-dern.fr/post/426
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134184.jpg
|
cover: images/134184.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor and Trap
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/426
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Baby Raptor with Incubator
|
comments_url: https://com.richard-dern.fr/post/427
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134185.jpg
|
cover: images/134185.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Baby Raptor with Incubator
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/427
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen with Jet Pack and Raptor
|
comments_url: https://com.richard-dern.fr/post/428
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134186.jpg
|
cover: images/134186.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen with Jet Pack and Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/428
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Pyroraptor
|
comments_url: https://com.richard-dern.fr/post/429
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134187.jpg
|
cover: images/134187.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Pyroraptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/429
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor with Big Trap
|
comments_url: https://com.richard-dern.fr/post/430
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134188.jpg
|
cover: images/134188.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor with Big Trap
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/430
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen with Swamp Speeder and Raptor
|
comments_url: https://com.richard-dern.fr/post/431
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134189.jpg
|
cover: images/134189.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen with Swamp Speeder and Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/431
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Wildlife Guard and Raptor
|
comments_url: https://com.richard-dern.fr/post/432
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134190.jpg
|
cover: images/134190.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Wildlife Guard and Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/432
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen's Mega Motorcycle
|
comments_url: https://com.richard-dern.fr/post/433
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134191.jpg
|
cover: images/134191.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen's Mega Motorcycle
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/433
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Alan Grant and Dino Skeleton
|
comments_url: https://com.richard-dern.fr/post/434
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/134192.jpg
|
cover: images/134192.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Alan Grant and Dino Skeleton
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/434
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor and Laboratory
|
comments_url: https://com.richard-dern.fr/post/435
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/136294.jpg
|
cover: images/136294.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor and Laboratory
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/435
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Beta and Nest
|
comments_url: https://com.richard-dern.fr/post/436
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/137707.jpg
|
cover: images/137707.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Beta and Nest
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/436
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen with Helicopter
|
comments_url: https://com.richard-dern.fr/post/437
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/139244.jpg
|
cover: images/139244.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen with Helicopter
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/437
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor and Laboratory
|
comments_url: https://com.richard-dern.fr/post/438
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/141239.jpg
|
cover: images/141239.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor and Laboratory
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/438
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor and Laboratory Table
|
comments_url: https://com.richard-dern.fr/post/439
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/142456.jpg
|
cover: images/142456.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor and Laboratory Table
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/439
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor and Hideout
|
comments_url: https://com.richard-dern.fr/post/440
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/144478.jpg
|
cover: images/144478.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor and Hideout
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/440
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Mobile Incubator with Egg
|
comments_url: https://com.richard-dern.fr/post/441
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/147315.jpg
|
cover: images/147315.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Mobile Incubator with Egg
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/441
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Robert Muldoon and Baby Raptor
|
comments_url: https://com.richard-dern.fr/post/442
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/139248.jpg
|
cover: images/139248.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Robert Muldoon and Baby Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/442
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Guard and Raptor
|
comments_url: https://com.richard-dern.fr/post/443
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/156337.jpg
|
cover: images/156337.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Guard and Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/443
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Baby Raptor with Transport Cage
|
comments_url: https://com.richard-dern.fr/post/461
|
||||||
date: "2025-12-17 15:18:29"
|
|
||||||
cover: images/162673.jpg
|
cover: images/162673.jpg
|
||||||
|
date: '2025-12-17 15:18:29'
|
||||||
|
title: Baby Raptor with Transport Cage
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.88888888888889
|
humidity: 93.0
|
||||||
humidity: 93
|
|
||||||
pressure: 1023.36664711105
|
|
||||||
illuminance: 5259.6
|
illuminance: 5259.6
|
||||||
wind_speed: 3.218688
|
|
||||||
wind_direction: 298
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
|
pressure: 1023.36664711105
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/461
|
temperature: 8.88888888888889
|
||||||
|
wind_direction: 298.0
|
||||||
|
wind_speed: 3.218688
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +1,18 @@
|
|||||||
---
|
---
|
||||||
title: Owen with Quad Bike
|
comments_url: https://com.richard-dern.fr/post/444
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/158647.jpg
|
cover: images/158647.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Owen with Quad Bike
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/444
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||

|

|
||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Raptor Trap
|
comments_url: https://com.richard-dern.fr/post/445
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/158648.jpg
|
cover: images/158648.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Raptor Trap
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/445
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Guard with Jet Pack and Raptor
|
comments_url: https://com.richard-dern.fr/post/446
|
||||||
date: "2025-11-30 12:00:00"
|
|
||||||
cover: images/160217.jpg
|
cover: images/160217.jpg
|
||||||
|
date: '2025-11-30 12:00:00'
|
||||||
|
title: Guard with Jet Pack and Raptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 6.05555555555555
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 1015.9165921023
|
|
||||||
illuminance: 6063.6
|
illuminance: 6063.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 6.7592448
|
pressure: 1015.9165921023
|
||||||
wind_direction: 328
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/446
|
temperature: 6.05555555555555
|
||||||
|
wind_direction: 328.0
|
||||||
|
wind_speed: 6.7592448
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,16 @@
|
|||||||
---
|
---
|
||||||
title: Guard with Incubator
|
comments_url: https://com.richard-dern.fr/post/482
|
||||||
date: '2026-03-14 14:32:32'
|
|
||||||
cover: images/168930.jpg
|
cover: images/168930.jpg
|
||||||
|
date: '2026-03-14 14:32:32'
|
||||||
|
title: Guard with Incubator
|
||||||
weather:
|
weather:
|
||||||
temperature: 2.05555555555556
|
humidity: 94.0
|
||||||
humidity: 94
|
|
||||||
pressure: 1006.77334277338
|
|
||||||
illuminance: 10603.2
|
illuminance: 10603.2
|
||||||
precipitations: false
|
precipitations: true
|
||||||
wind_speed: 4.9889664
|
pressure: 1007.11198163741
|
||||||
wind_direction: 258
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/482
|
temperature: 2.05555555555556
|
||||||
|
wind_direction: 258.0
|
||||||
|
wind_speed: 4.9889664
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,35 +1,35 @@
|
|||||||
---
|
---
|
||||||
cover: images/fTAvyr.jpg
|
|
||||||
date: "2024-04-28 00:29:47"
|
|
||||||
title: Dinosaur Market
|
|
||||||
links:
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/30390-1/dinosaur-market/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
lieux:
|
|
||||||
- Malte
|
|
||||||
- Woippy
|
|
||||||
associations:
|
|
||||||
- Cas'Brick
|
|
||||||
animaux:
|
animaux:
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
associations:
|
||||||
|
- Cas'Brick
|
||||||
|
comments_url: https://com.richard-dern.fr/post/196
|
||||||
|
cover: images/fTAvyr.jpg
|
||||||
|
date: '2024-04-28 00:29:47'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
lieux:
|
||||||
|
- Malte
|
||||||
|
- Woippy
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/30390-1/dinosaur-market/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
|
title: Dinosaur Market
|
||||||
weather:
|
weather:
|
||||||
temperature: 12.9
|
|
||||||
humidity: 60
|
humidity: 60
|
||||||
pressure: 1005
|
illuminance: 0.0
|
||||||
illuminance: 0
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 14.8
|
pressure: 1005.0
|
||||||
wind_direction: 133
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/196
|
temperature: 13.1
|
||||||
|
wind_direction: 133
|
||||||
|
wind_speed: 14.8
|
||||||
---
|
---
|
||||||
|
|
||||||
Une petite saynète tout droit sortie du marché noir de Malte dans [_Jurassic World Dominion_](/critiques/films/jurassic-world-dominion/), offrant une minifig de "garde au bonnet", un morceau d'ambre (que l'on retrouve dans pas mal de sets), un petit _Velociraptor_ et une couveuse avec un oeuf.
|
Une petite saynète tout droit sortie du marché noir de Malte dans [_Jurassic World Dominion_](/critiques/films/jurassic-world-dominion/), offrant une minifig de "garde au bonnet", un morceau d'ambre (que l'on retrouve dans pas mal de sets), un petit _Velociraptor_ et une couveuse avec un oeuf.
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
---
|
---
|
||||||
title: Dilophosaurus on the Loose
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/10857.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dilophosaurus-on-the-loose-75934
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/75934-1/dilophosaurus-on-the-loose/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- LEGO Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- LEGO Jurassic World
|
|
||||||
animaux:
|
animaux:
|
||||||
- Dilophosaurus
|
- Dilophosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/383
|
||||||
|
cover: images/10857.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- LEGO Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dilophosaurus-on-the-loose-75934
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/75934-1/dilophosaurus-on-the-loose/
|
||||||
|
oeuvres:
|
||||||
|
- LEGO Jurassic World
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Hudson Harper
|
- Hudson Harper
|
||||||
|
title: Dilophosaurus on the Loose
|
||||||
vehicules:
|
vehicules:
|
||||||
- Drone
|
- Drone
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/383
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
---
|
---
|
||||||
cover: images/JlK6aa.jpg
|
|
||||||
date: "2021-09-15 12:00:00"
|
|
||||||
title: 'Jurassic Park: T. rex Rampage'
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/jurassic-park-t-rex-rampage-75936
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/75936-1/jurassic-park-t-rex-rampage/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
- Barbasol
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/7
|
||||||
|
cover: images/JlK6aa.jpg
|
||||||
|
date: '2021-09-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
- Barbasol
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/jurassic-park-t-rex-rampage-75936
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/75936-1/jurassic-park-t-rex-rampage/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- John Hammond
|
- John Hammond
|
||||||
- Ian Malcolm
|
- Ian Malcolm
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Alan Grant
|
- Alan Grant
|
||||||
- Dennis Nedry
|
- Dennis Nedry
|
||||||
- Ray Arnold
|
- Ray Arnold
|
||||||
- Donald Gennaro
|
- Donald Gennaro
|
||||||
|
title: 'Jurassic Park: T. rex Rampage'
|
||||||
weather:
|
weather:
|
||||||
temperature: 19.6
|
|
||||||
humidity: 79
|
humidity: 79
|
||||||
pressure: 1013.6
|
|
||||||
illuminance: 35602.700000000004
|
illuminance: 35602.700000000004
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 16.3
|
pressure: 1013.6
|
||||||
wind_direction: 229
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/7
|
temperature: 19.7
|
||||||
|
wind_direction: 229
|
||||||
|
wind_speed: 16.3
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce LEGO® est probablement l’un des plus importants pour moi dans la mesure où
|
Ce LEGO® est probablement l’un des plus importants pour moi dans la mesure où
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
---
|
---
|
||||||
title: T. rex Dinosaur Fossil Exhibition
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/88738.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/t-rex-dinosaur-fossil-exhibition-76940
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76968-1/dinosaur-fossils-tyrannosaurus-rex/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Camp Cretaceous
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
- Triceratops
|
- Triceratops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/384
|
||||||
|
cover: images/88738.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/t-rex-dinosaur-fossil-exhibition-76940
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76968-1/dinosaur-fossils-tyrannosaurus-rex/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Camp Cretaceous
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Darius Bowman
|
- Darius Bowman
|
||||||
tags:
|
tags:
|
||||||
- Fossile
|
- Fossile
|
||||||
|
title: T. rex Dinosaur Fossil Exhibition
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/384
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
---
|
---
|
||||||
cover: images/WqLoDF.jpg
|
|
||||||
date: "2024-04-28 10:39:01"
|
|
||||||
title: Pteranodon Chase
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/pteranodon-chase-76943
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76943-1/pteranodon-chase/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
animaux:
|
animaux:
|
||||||
- Pteranodon
|
- Pteranodon
|
||||||
|
comments_url: https://com.richard-dern.fr/post/197
|
||||||
|
cover: images/WqLoDF.jpg
|
||||||
|
date: '2024-04-28 10:39:01'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/pteranodon-chase-76943
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76943-1/pteranodon-chase/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Maisie Lockwood
|
- Maisie Lockwood
|
||||||
|
title: Pteranodon Chase
|
||||||
vehicules:
|
vehicules:
|
||||||
- Buggy
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.6
|
|
||||||
humidity: 63
|
humidity: 63
|
||||||
pressure: 1012.1
|
|
||||||
illuminance: 62716.5
|
illuminance: 62716.5
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 23.2
|
pressure: 1012.1
|
||||||
wind_direction: 206
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/197
|
temperature: 14.8
|
||||||
|
wind_direction: 206
|
||||||
|
wind_speed: 23.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce set est destiné à l'apprentissage, comme [_Velociraptor Escape_](/collections/lego/jurassic-world/76957/).
|
Ce set est destiné à l'apprentissage, comme [_Velociraptor Escape_](/collections/lego/jurassic-world/76957/).
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
---
|
---
|
||||||
title: T. rex Dinosaur Breakout
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/98839.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/t-rex-dinosaur-breakout-76944
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76944-1/t-rex-dinosaur-breakout/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/385
|
||||||
|
cover: images/98839.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/t-rex-dinosaur-breakout-76944
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76944-1/t-rex-dinosaur-breakout/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Zia Rodrigez
|
- Zia Rodrigez
|
||||||
|
title: T. rex Dinosaur Breakout
|
||||||
vehicules:
|
vehicules:
|
||||||
- Hélicoptère
|
- Hélicoptère
|
||||||
- Buggy
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/385
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,41 +1,41 @@
|
|||||||
---
|
---
|
||||||
cover: images/xegNty.jpg
|
|
||||||
date: "2024-04-28 11:36:06"
|
|
||||||
title: 'Atrociraptor Dinosaur: Bike Chase'
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/atrociraptor-dinosaur-bike-chase-76945
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76945-1/atrociraptor-dinosaur-bike-chase/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
animaux:
|
animaux:
|
||||||
- Atrociraptor
|
- Atrociraptor
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
personnages_de_fiction:
|
comments_url: https://com.richard-dern.fr/post/198
|
||||||
- Owen Grady
|
cover: images/xegNty.jpg
|
||||||
- Rainn Delacourt
|
date: '2024-04-28 11:36:06'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
lieux:
|
lieux:
|
||||||
- Malte
|
- Malte
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/atrociraptor-dinosaur-bike-chase-76945
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76945-1/atrociraptor-dinosaur-bike-chase/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
|
personnages_de_fiction:
|
||||||
|
- Owen Grady
|
||||||
|
- Rainn Delacourt
|
||||||
|
title: 'Atrociraptor Dinosaur: Bike Chase'
|
||||||
vehicules:
|
vehicules:
|
||||||
- Moto
|
- Moto
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.5
|
|
||||||
humidity: 58
|
humidity: 58
|
||||||
pressure: 1012.6
|
|
||||||
illuminance: 49159.6
|
illuminance: 49159.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 23.4
|
pressure: 1012.6
|
||||||
wind_direction: 205
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/198
|
temperature: 14.6
|
||||||
|
wind_direction: 205
|
||||||
|
wind_speed: 23.4
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce set nous permet de recréer la scène de poursuite dans le "marché aux dinosaures" de Malte, dans [_Jurassic World Dominion_](/critiques/films/jurassic-world-dominion/).
|
Ce set nous permet de recréer la scène de poursuite dans le "marché aux dinosaures" de Malte, dans [_Jurassic World Dominion_](/critiques/films/jurassic-world-dominion/).
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
---
|
---
|
||||||
title: Blue & Beta Velociraptor Capture
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/98872.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/blue-beta-velociraptor-capture-76946
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76946-1/blue-beta-velociraptor-capture/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
animaux:
|
animaux:
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
personnages_de_fiction:
|
comments_url: https://com.richard-dern.fr/post/386
|
||||||
- Maisie Lockwood
|
cover: images/98872.jpg
|
||||||
- Rainn Delacourt
|
date: '2025-10-26 12:00:00'
|
||||||
- Blue
|
entreprises:
|
||||||
- Beta
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
lieux:
|
lieux:
|
||||||
- Malte
|
- Malte
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/blue-beta-velociraptor-capture-76946
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76946-1/blue-beta-velociraptor-capture/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
|
personnages_de_fiction:
|
||||||
|
- Maisie Lockwood
|
||||||
|
- Rainn Delacourt
|
||||||
|
- Blue
|
||||||
|
- Beta
|
||||||
|
title: Blue & Beta Velociraptor Capture
|
||||||
vehicules:
|
vehicules:
|
||||||
- Camion
|
- Camion
|
||||||
- Moto
|
- Moto
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/386
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,41 +1,41 @@
|
|||||||
---
|
---
|
||||||
cover: images/smIb5M.jpg
|
|
||||||
date: "2022-11-28 12:00:00"
|
|
||||||
title: Quetzalcoatlus Plane Ambush
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/quetzalcoatlus-plane-ambush-76947
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76947-1/quetzalcoatlus-plane-ambush/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
lieux:
|
|
||||||
- Dolomites
|
|
||||||
animaux:
|
animaux:
|
||||||
- Quetzalcoatlus
|
- Quetzalcoatlus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/118
|
||||||
|
cover: images/smIb5M.jpg
|
||||||
|
date: '2022-11-28 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
lieux:
|
||||||
|
- Dolomites
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/quetzalcoatlus-plane-ambush-76947
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76947-1/quetzalcoatlus-plane-ambush/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Claire Dearing
|
- Claire Dearing
|
||||||
- Kayla Watts
|
- Kayla Watts
|
||||||
|
title: Quetzalcoatlus Plane Ambush
|
||||||
vehicules:
|
vehicules:
|
||||||
- Avion
|
- Avion
|
||||||
weather:
|
weather:
|
||||||
temperature: 9.5
|
|
||||||
humidity: 77
|
humidity: 77
|
||||||
pressure: 1011.6
|
|
||||||
illuminance: 20145.3
|
illuminance: 20145.3
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 14.4
|
pressure: 1011.7
|
||||||
wind_direction: 217
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/118
|
temperature: 9.6
|
||||||
|
wind_direction: 217
|
||||||
|
wind_speed: 14.4
|
||||||
---
|
---
|
||||||
|
|
||||||
Je n'avais pas spécialement prévu de me lancer dans la collection des LEGO® Jurassic World, à l'exception du [75936](/collections/lego/jurassic-world/75936/).
|
Je n'avais pas spécialement prévu de me lancer dans la collection des LEGO® Jurassic World, à l'exception du [75936](/collections/lego/jurassic-world/75936/).
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
---
|
---
|
||||||
title: T. rex & Atrociraptor Dinosaur Breakout
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/98856.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/t-rex-atrociraptor-dinosaur-breakout-76948
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76948-1/t-rex-atrociraptor-dinosaur-breakout/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
lieux:
|
|
||||||
- Malte
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
- Atrociraptor
|
- Atrociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/387
|
||||||
|
cover: images/98856.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
lieux:
|
||||||
|
- Malte
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/t-rex-atrociraptor-dinosaur-breakout-76948
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76948-1/t-rex-atrociraptor-dinosaur-breakout/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Claire Dearing
|
- Claire Dearing
|
||||||
- Rainn Delacourt
|
- Rainn Delacourt
|
||||||
- Soyona Santos
|
- Soyona Santos
|
||||||
|
title: T. rex & Atrociraptor Dinosaur Breakout
|
||||||
vehicules:
|
vehicules:
|
||||||
- Camion
|
- Camion
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/387
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,46 +1,46 @@
|
|||||||
---
|
---
|
||||||
title: Giganotosaurus & Therizinosaurus Attack
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/100890.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/giganotosaurus-therizinosaurus-attack-76949
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76949-1/giganotosaurus-therizinosaurus-attack/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
lieux:
|
|
||||||
- Dolomites
|
|
||||||
animaux:
|
animaux:
|
||||||
- Giganotosaurus
|
- Giganotosaurus
|
||||||
- Therizinosaurus
|
- Therizinosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/388
|
||||||
|
cover: images/100890.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
lieux:
|
||||||
|
- Dolomites
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/giganotosaurus-therizinosaurus-attack-76949
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76949-1/giganotosaurus-therizinosaurus-attack/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Owen Grady
|
- Owen Grady
|
||||||
- Claire Dearing
|
- Claire Dearing
|
||||||
- Alan Grant
|
- Alan Grant
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Kayla Watts
|
- Kayla Watts
|
||||||
- Henry Wu
|
- Henry Wu
|
||||||
|
title: Giganotosaurus & Therizinosaurus Attack
|
||||||
vehicules:
|
vehicules:
|
||||||
- Hélicoptère
|
- Hélicoptère
|
||||||
- Buggy
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/388
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
---
|
---
|
||||||
title: Pyroraptor & Dilophosaurus Transport
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/98617.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/pyroraptor-dilophosaurus-transport-76951
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76951-1/pyroraptor-dilophosaurus-transport/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Dominion
|
|
||||||
animaux:
|
animaux:
|
||||||
- Pyroraptor
|
- Pyroraptor
|
||||||
- Dilophosaurus
|
- Dilophosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/389
|
||||||
|
cover: images/98617.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/pyroraptor-dilophosaurus-transport-76951
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76951-1/pyroraptor-dilophosaurus-transport/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Dominion
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ian Malcolm
|
- Ian Malcolm
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
|
title: Pyroraptor & Dilophosaurus Transport
|
||||||
vehicules:
|
vehicules:
|
||||||
- Camion
|
- Camion
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/389
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,42 +1,42 @@
|
|||||||
---
|
---
|
||||||
cover: images/VyJZvh.jpg
|
|
||||||
date: "2023-05-20 12:00:00"
|
|
||||||
title: T. rex Breakout
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/t-rex-breakout-76956
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76956-1/t-rex-breakout/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
- Ford
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/142
|
||||||
|
cover: images/VyJZvh.jpg
|
||||||
|
date: '2023-05-20 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
- Ford
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/t-rex-breakout-76956
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76956-1/t-rex-breakout/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ian Malcolm
|
- Ian Malcolm
|
||||||
- Alan Grant
|
- Alan Grant
|
||||||
- Tim Murphy
|
- Tim Murphy
|
||||||
- Lex Murphy
|
- Lex Murphy
|
||||||
|
title: T. rex Breakout
|
||||||
vehicules:
|
vehicules:
|
||||||
- Voiture
|
- Voiture
|
||||||
- Ford Explorer
|
- Ford Explorer
|
||||||
weather:
|
weather:
|
||||||
temperature: 16.8
|
|
||||||
humidity: 68
|
humidity: 68
|
||||||
pressure: 1015.4
|
|
||||||
illuminance: 55874.700000000004
|
illuminance: 55874.700000000004
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 21.9
|
pressure: 1015.5
|
||||||
wind_direction: 70
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/142
|
temperature: 17.0
|
||||||
|
wind_direction: 70
|
||||||
|
wind_speed: 21.9
|
||||||
---
|
---
|
||||||
|
|
||||||
En 2023, nous fêtons les 30 ans de la sortie du film [_Jurassic Park_](/critiques/films/jurassic-park/) (précisément le 11 juin).
|
En 2023, nous fêtons les 30 ans de la sortie du film [_Jurassic Park_](/critiques/films/jurassic-park/) (précisément le 11 juin).
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||
---
|
---
|
||||||
cover: images/qTMJ3P.jpg
|
|
||||||
date: "2023-06-11 12:00:00"
|
|
||||||
title: Velociraptor Escape
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/velociraptor-escape-76957
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76957-1/velociraptor-escape/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/150
|
||||||
|
cover: images/qTMJ3P.jpg
|
||||||
|
date: '2023-06-11 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/velociraptor-escape-76957
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76957-1/velociraptor-escape/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Robert Muldoon
|
- Robert Muldoon
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
|
title: Velociraptor Escape
|
||||||
vehicules:
|
vehicules:
|
||||||
- Buggy
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 25.9
|
|
||||||
humidity: 44
|
humidity: 44
|
||||||
pressure: 1015.1
|
|
||||||
illuminance: 107948.40000000001
|
illuminance: 107948.40000000001
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.7
|
pressure: 1015.1
|
||||||
wind_direction: 94
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/150
|
temperature: 26.0
|
||||||
|
wind_direction: 94
|
||||||
|
wind_speed: 17.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Malgré son rapport prix/nombre de pièces, ce set est intéressant à plus d'un titre.
|
Malgré son rapport prix/nombre de pièces, ce set est intéressant à plus d'un titre.
|
||||||
|
|||||||
@@ -1,40 +1,40 @@
|
|||||||
---
|
---
|
||||||
cover: images/395ABF.jpg
|
|
||||||
date: "2023-06-11 12:00:00"
|
|
||||||
title: Dilophosaurus Ambush
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dilophosaurus-ambush-76958
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/75916-1/dilophosaurus-ambush/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
- Barbasol
|
|
||||||
- Jeep
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Dilophosaurus
|
- Dilophosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/151
|
||||||
|
cover: images/395ABF.jpg
|
||||||
|
date: '2023-06-11 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
- Barbasol
|
||||||
|
- Jeep
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dilophosaurus-ambush-76958
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/75916-1/dilophosaurus-ambush/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Dennis Nedry
|
- Dennis Nedry
|
||||||
|
title: Dilophosaurus Ambush
|
||||||
vehicules:
|
vehicules:
|
||||||
- Voiture
|
- Voiture
|
||||||
- Jeep Wrangler
|
- Jeep Wrangler
|
||||||
weather:
|
weather:
|
||||||
temperature: 25.9
|
|
||||||
humidity: 44
|
humidity: 44
|
||||||
pressure: 1015.1
|
|
||||||
illuminance: 107948.40000000001
|
illuminance: 107948.40000000001
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.7
|
pressure: 1015.1
|
||||||
wind_direction: 94
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/151
|
temperature: 26.0
|
||||||
|
wind_direction: 94
|
||||||
|
wind_speed: 17.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Deuxième set (par numéro de série) sorti par LEGO à l'occasion des 30 ans de la sortie de [_Jurassic Park_](/critiques/films/jurassic-park/), le 76958 nous donne à construire quelques éléments mettant en scène la fin tragique de Dennis Nedry.
|
Deuxième set (par numéro de série) sorti par LEGO à l'occasion des 30 ans de la sortie de [_Jurassic Park_](/critiques/films/jurassic-park/), le 76958 nous donne à construire quelques éléments mettant en scène la fin tragique de Dennis Nedry.
|
||||||
|
|||||||
@@ -1,40 +1,40 @@
|
|||||||
---
|
---
|
||||||
cover: images/rqN9xs.jpg
|
|
||||||
date: "2023-06-11 12:00:00"
|
|
||||||
title: Triceratops Research
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/triceratops-research-76959
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76959-1/triceratops-research/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
- Ford
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Triceratops
|
- Triceratops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/152
|
||||||
|
cover: images/rqN9xs.jpg
|
||||||
|
date: '2023-06-11 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
- Ford
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/triceratops-research-76959
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76959-1/triceratops-research/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Ian Malcolm
|
- Ian Malcolm
|
||||||
|
title: Triceratops Research
|
||||||
vehicules:
|
vehicules:
|
||||||
- Voiture
|
- Voiture
|
||||||
- Ford Explorer
|
- Ford Explorer
|
||||||
weather:
|
weather:
|
||||||
temperature: 25.9
|
|
||||||
humidity: 44
|
humidity: 44
|
||||||
pressure: 1015.1
|
|
||||||
illuminance: 107948.40000000001
|
illuminance: 107948.40000000001
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.7
|
pressure: 1015.1
|
||||||
wind_direction: 94
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/152
|
temperature: 26.0
|
||||||
|
wind_direction: 94
|
||||||
|
wind_speed: 17.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Autre scène majeure de [_Jurassic Park_](/critiques/films/jurassic-park/) réinterprétée par LEGO à l'occasion des 30 ans du film : la découverte du _Triceratops_ malade.
|
Autre scène majeure de [_Jurassic Park_](/critiques/films/jurassic-park/) réinterprétée par LEGO à l'occasion des 30 ans du film : la découverte du _Triceratops_ malade.
|
||||||
|
|||||||
@@ -1,41 +1,41 @@
|
|||||||
---
|
---
|
||||||
cover: images/rlRX8c.jpg
|
|
||||||
date: "2023-06-11 12:00:00"
|
|
||||||
title: Brachiosaurus Discovery
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/brachiosaurus-discovery-76960
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76960-1/brachiosaurus-discovery/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
- Jeep
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Brachiosaurus
|
- Brachiosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/153
|
||||||
|
cover: images/rlRX8c.jpg
|
||||||
|
date: '2023-06-11 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
- Jeep
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/brachiosaurus-discovery-76960
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76960-1/brachiosaurus-discovery/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Allan Grant
|
- Allan Grant
|
||||||
- John Hammond
|
- John Hammond
|
||||||
|
title: Brachiosaurus Discovery
|
||||||
vehicules:
|
vehicules:
|
||||||
- Voiture
|
- Voiture
|
||||||
- Jeep Wrangler
|
- Jeep Wrangler
|
||||||
weather:
|
weather:
|
||||||
temperature: 25.9
|
|
||||||
humidity: 44
|
humidity: 44
|
||||||
pressure: 1015.1
|
|
||||||
illuminance: 107948.40000000001
|
illuminance: 107948.40000000001
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.7
|
pressure: 1015.1
|
||||||
wind_direction: 94
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/153
|
temperature: 26.0
|
||||||
|
wind_direction: 94
|
||||||
|
wind_speed: 17.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce quatrième et avant-dernier set exclusif consacré aux 30 ans du film [_Jurassic Park_](/critiques/films/jurassic-park/) monte d'un cran en terme de taille et de complexité.
|
Ce quatrième et avant-dernier set exclusif consacré aux 30 ans du film [_Jurassic Park_](/critiques/films/jurassic-park/) monte d'un cran en terme de taille et de complexité.
|
||||||
|
|||||||
@@ -1,43 +1,43 @@
|
|||||||
---
|
---
|
||||||
cover: images/to4a9E.jpg
|
|
||||||
date: "2023-06-11 12:00:00"
|
|
||||||
title: 'Visitor Center: T. rex & Raptor Attack'
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/visitor-center-t-rex-raptor-attack-76961
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76961-1/visitor-center-t-rex-raptor-attack/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/154
|
||||||
|
cover: images/to4a9E.jpg
|
||||||
|
date: '2023-06-11 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/visitor-center-t-rex-raptor-attack-76961
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76961-1/visitor-center-t-rex-raptor-attack/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Allan Grant
|
- Allan Grant
|
||||||
- Lex Murphy
|
- Lex Murphy
|
||||||
- Tim Murphy
|
- Tim Murphy
|
||||||
- Ray Arnold
|
- Ray Arnold
|
||||||
- Henry Wu
|
- Henry Wu
|
||||||
tags:
|
tags:
|
||||||
- Fossile
|
- Fossile
|
||||||
|
title: 'Visitor Center: T. rex & Raptor Attack'
|
||||||
weather:
|
weather:
|
||||||
temperature: 25.9
|
|
||||||
humidity: 44
|
humidity: 44
|
||||||
pressure: 1015.1
|
|
||||||
illuminance: 107948.40000000001
|
illuminance: 107948.40000000001
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.7
|
pressure: 1015.1
|
||||||
wind_direction: 94
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/154
|
temperature: 26.0
|
||||||
|
wind_direction: 94
|
||||||
|
wind_speed: 17.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Pièce maîtresse de la série consacrée au 30 ans de [_Jurassic Park_](/critiques/films/jurassic-park/), ce set nous propose de reconstruire le centre des visiteurs où se déroulera la bataille finale entre _T. rex_ et les _Velociraptor_, une bataille au milieu de laquelle vont se retrouver Alan, Ellie et les enfants.
|
Pièce maîtresse de la série consacrée au 30 ans de [_Jurassic Park_](/critiques/films/jurassic-park/), ce set nous propose de reconstruire le centre des visiteurs où se déroulera la bataille finale entre _T. rex_ et les _Velociraptor_, une bataille au milieu de laquelle vont se retrouver Alan, Ellie et les enfants.
|
||||||
|
|||||||
@@ -1,31 +1,31 @@
|
|||||||
---
|
---
|
||||||
title: 'Baby Bumpy: Ankylosaurus'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/140923.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/baby-bumpy-ankylosaurus-76962
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76962-1/baby-bumpy-ankylosaurus/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- 'Jurassic World: Cretaceous Camp'
|
|
||||||
animaux:
|
animaux:
|
||||||
- Ankylosaurus
|
- Ankylosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/390
|
||||||
|
cover: images/140923.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/baby-bumpy-ankylosaurus-76962
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76962-1/baby-bumpy-ankylosaurus/
|
||||||
|
oeuvres:
|
||||||
|
- 'Jurassic World: Cretaceous Camp'
|
||||||
|
title: 'Baby Bumpy: Ankylosaurus'
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/390
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,39 +1,39 @@
|
|||||||
---
|
---
|
||||||
title: Baby Dinosaur Rescue Center
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/129072.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/baby-dinosaur-rescue-center-76963
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76963-1/baby-dinosaur-rescue-center/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- 'Jurassic World: Cretaceous Camp'
|
|
||||||
animaux:
|
animaux:
|
||||||
- Ankylosaurus
|
- Ankylosaurus
|
||||||
- Pteranodon
|
- Pteranodon
|
||||||
- Triceratops
|
- Triceratops
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/391
|
||||||
|
cover: images/129072.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/baby-dinosaur-rescue-center-76963
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76963-1/baby-dinosaur-rescue-center/
|
||||||
|
oeuvres:
|
||||||
|
- 'Jurassic World: Cretaceous Camp'
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Darius Bowman
|
- Darius Bowman
|
||||||
- Sammy Gutierrez
|
- Sammy Gutierrez
|
||||||
|
title: Baby Dinosaur Rescue Center
|
||||||
vehicules:
|
vehicules:
|
||||||
- Buggy
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/391
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,33 +1,33 @@
|
|||||||
---
|
---
|
||||||
cover: images/LIgeV3.jpg
|
|
||||||
date: "2024-04-28 15:29:19"
|
|
||||||
title: 'Dinosaur Fossils: T. rex Skull'
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-t-rex-skull-76964
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76964-1/dinosaur-fossils-t-rex-skull/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/199
|
||||||
|
cover: images/LIgeV3.jpg
|
||||||
|
date: '2024-04-28 15:29:19'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-t-rex-skull-76964
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76964-1/dinosaur-fossils-t-rex-skull/
|
||||||
tags:
|
tags:
|
||||||
- Fossile
|
- Fossile
|
||||||
|
title: 'Dinosaur Fossils: T. rex Skull'
|
||||||
weather:
|
weather:
|
||||||
temperature: 11.8
|
|
||||||
humidity: 70
|
humidity: 70
|
||||||
pressure: 1014.9
|
illuminance: 38010.0
|
||||||
illuminance: 38010
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 17.6
|
pressure: 1015.0
|
||||||
wind_direction: 221
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/199
|
temperature: 11.9
|
||||||
|
wind_direction: 221
|
||||||
|
wind_speed: 17.6
|
||||||
---
|
---
|
||||||
|
|
||||||
Il a fait la fierté de ses possesseurs sur Instagram lors de sa sortie : il m'était difficile de passer à côté de ce set proposant de construire une empreinte et un crâne de _T. rex_.
|
Il a fait la fierté de ses possesseurs sur Instagram lors de sa sortie : il m'était difficile de passer à côté de ce set proposant de construire une empreinte et un crâne de _T. rex_.
|
||||||
|
|||||||
@@ -1,40 +1,40 @@
|
|||||||
---
|
---
|
||||||
title: 'Dinosaur Missions: Stegosaurus Discovery'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/140935.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dinosaur-missions-stegosaurus-discovery-76965
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76965-1/dinosaur-missions-stegosaurus-discovery/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- 'Jurassic World: Chaos Theory'
|
|
||||||
animaux:
|
animaux:
|
||||||
- Stegosaurus
|
- Stegosaurus
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/392
|
||||||
|
cover: images/140935.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dinosaur-missions-stegosaurus-discovery-76965
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76965-1/dinosaur-missions-stegosaurus-discovery/
|
||||||
|
oeuvres:
|
||||||
|
- 'Jurassic World: Chaos Theory'
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Benjamin Pincus
|
- Benjamin Pincus
|
||||||
- Sammy Gutierrez
|
- Sammy Gutierrez
|
||||||
|
title: 'Dinosaur Missions: Stegosaurus Discovery'
|
||||||
vehicules:
|
vehicules:
|
||||||
- Tout-terrain
|
- Tout-terrain
|
||||||
- Remorque
|
- Remorque
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/392
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
@@ -1,40 +1,40 @@
|
|||||||
---
|
---
|
||||||
title: 'Dinosaur Missions: Allosaurus Transport Truck'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/140933.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dinosaur-missions-allosaurus-transport-truck-76966
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76966-1/dinosaur-missions-allosaurus-transport-truck/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- 'Jurassic World: Chaos Theory'
|
|
||||||
animaux:
|
animaux:
|
||||||
- Allosaurus
|
- Allosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/393
|
||||||
|
cover: images/140933.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dinosaur-missions-allosaurus-transport-truck-76966
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76966-1/dinosaur-missions-allosaurus-transport-truck/
|
||||||
|
oeuvres:
|
||||||
|
- 'Jurassic World: Chaos Theory'
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Darius Bowman
|
- Darius Bowman
|
||||||
- Kenji Kon
|
- Kenji Kon
|
||||||
- Yasmina Fadoula
|
- Yasmina Fadoula
|
||||||
|
title: 'Dinosaur Missions: Allosaurus Transport Truck'
|
||||||
vehicules:
|
vehicules:
|
||||||
- Camion
|
- Camion
|
||||||
- Remorque
|
- Remorque
|
||||||
- Buggy
|
- Buggy
|
||||||
- Drone
|
- Drone
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/393
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,29 +1,29 @@
|
|||||||
---
|
---
|
||||||
title: 'Little Eatie: T. rex'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/148596.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/little-eatie-t-rex-76967
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76967-1/little-eatie-t-rex/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/394
|
||||||
|
cover: images/148596.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/little-eatie-t-rex-76967
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76967-1/little-eatie-t-rex/
|
||||||
|
title: 'Little Eatie: T. rex'
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/394
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,38 +1,38 @@
|
|||||||
---
|
---
|
||||||
title: 'Dinosaur Fossils: Tyrannosaurus Rex'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/152803.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-tyrannosaurus-rex-76968
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76968-1/dinosaur-fossils-tyrannosaurus-rex/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic Park
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic Park
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/395
|
||||||
|
cover: images/152803.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-tyrannosaurus-rex-76968
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76968-1/dinosaur-fossils-tyrannosaurus-rex/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic Park
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Ellie Sattler
|
- Ellie Sattler
|
||||||
- Alan Grant
|
- Alan Grant
|
||||||
tags:
|
tags:
|
||||||
- Fossile
|
- Fossile
|
||||||
|
title: 'Dinosaur Fossils: Tyrannosaurus Rex'
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/395
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,33 +1,33 @@
|
|||||||
---
|
---
|
||||||
title: 'Dinosaur Fossils: Triceratops Skull'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/148598.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-triceratops-skull-76969
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76969-1/dinosaur-fossils-triceratops-skull/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
animaux:
|
animaux:
|
||||||
- Triceratops
|
- Triceratops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/396
|
||||||
|
cover: images/148598.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/dinosaur-fossils-triceratops-skull-76969
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76969-1/dinosaur-fossils-triceratops-skull/
|
||||||
tags:
|
tags:
|
||||||
- Fossile
|
- Fossile
|
||||||
|
title: 'Dinosaur Fossils: Triceratops Skull'
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/396
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
@@ -1,31 +1,31 @@
|
|||||||
---
|
---
|
||||||
title: 'Baby Dinosaur Dolores: Aquilops'
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153174.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/baby-dinosaur-dolores-aquilops-76970
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76970-1/baby-dinosaur-dolores-aquilops/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Aquilops
|
- Aquilops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/397
|
||||||
|
cover: images/153174.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/baby-dinosaur-dolores-aquilops-76970
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76970-1/baby-dinosaur-dolores-aquilops/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
|
title: 'Baby Dinosaur Dolores: Aquilops'
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/397
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,37 +1,37 @@
|
|||||||
---
|
---
|
||||||
title: Raptor Off-Road Escape
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153177.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/raptor-off-road-escape-76972
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76972-1/raptor-off-road-escape/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
- Aquilops
|
- Aquilops
|
||||||
vehicules:
|
comments_url: https://com.richard-dern.fr/post/398
|
||||||
- Tout-terrain
|
cover: images/153177.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/raptor-off-road-escape-76972
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76972-1/raptor-off-road-escape/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Reuben Delgado
|
- Reuben Delgado
|
||||||
- Isabella Delgado
|
- Isabella Delgado
|
||||||
|
title: Raptor Off-Road Escape
|
||||||
|
vehicules:
|
||||||
|
- Tout-terrain
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/398
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,43 +1,43 @@
|
|||||||
---
|
---
|
||||||
title: Raptor & Titanosaurus Tracking Mission
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153513.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/raptor-titanosaurus-tracking-mission-76973
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76973-1/raptor-titanosaurus-tracking-mission/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Titanosaurus
|
- Titanosaurus
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
vehicules:
|
comments_url: https://com.richard-dern.fr/post/399
|
||||||
- Buggy
|
cover: images/153513.jpg
|
||||||
- Remorque
|
date: '2025-10-26 12:00:00'
|
||||||
- Moto
|
entreprises:
|
||||||
- Drone
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/raptor-titanosaurus-tracking-mission-76973
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76973-1/raptor-titanosaurus-tracking-mission/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Zora Bennett
|
- Zora Bennett
|
||||||
- Martin Krebs
|
- Martin Krebs
|
||||||
- Henry Loomis
|
- Henry Loomis
|
||||||
|
title: Raptor & Titanosaurus Tracking Mission
|
||||||
|
vehicules:
|
||||||
|
- Buggy
|
||||||
|
- Remorque
|
||||||
|
- Moto
|
||||||
|
- Drone
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/399
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
@@ -1,38 +1,38 @@
|
|||||||
---
|
---
|
||||||
title: Brick-Built Mosasaurus Boat Mission
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153183.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/brick-built-mosasaurus-boat-mission-76974
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76974-1/brick-built-mosasaurus-boat-mission/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Mosasaurus
|
- Mosasaurus
|
||||||
vehicules:
|
comments_url: https://com.richard-dern.fr/post/400
|
||||||
- Bateau
|
cover: images/153183.jpg
|
||||||
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/brick-built-mosasaurus-boat-mission-76974
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76974-1/brick-built-mosasaurus-boat-mission/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Bobby Atwater
|
- Bobby Atwater
|
||||||
- Leclerc
|
- Leclerc
|
||||||
|
title: Brick-Built Mosasaurus Boat Mission
|
||||||
|
vehicules:
|
||||||
|
- Bateau
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/400
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,37 +1,37 @@
|
|||||||
---
|
---
|
||||||
title: T. rex River Escape
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153189.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/t-rex-river-escape-76975
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76975-1/t-rex-river-escape/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
vehicules:
|
comments_url: https://com.richard-dern.fr/post/401
|
||||||
- Canot de sauvetage
|
cover: images/153189.jpg
|
||||||
- Buggy
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/t-rex-river-escape-76975
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76975-1/t-rex-river-escape/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Teresa Delgado
|
- Teresa Delgado
|
||||||
- Xavier Dobbs
|
- Xavier Dobbs
|
||||||
|
title: T. rex River Escape
|
||||||
|
vehicules:
|
||||||
|
- Canot de sauvetage
|
||||||
|
- Buggy
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/401
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
@@ -1,42 +1,42 @@
|
|||||||
---
|
---
|
||||||
title: Spinosaurus & Quetzalcoatlus Air Mission
|
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/153195.jpg
|
|
||||||
links:
|
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/spinosaurus-quetzalcoatlus-air-mission-76976
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/76976-1/spinosaurus-quetzalcoatlus-air-mission/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
|
||||||
- LEGO
|
|
||||||
franchises:
|
|
||||||
- Jurassic World
|
|
||||||
oeuvres:
|
|
||||||
- Jurassic World Rebirth
|
|
||||||
animaux:
|
animaux:
|
||||||
- Spinosaurus
|
- Spinosaurus
|
||||||
- Quetzalcoatlus
|
- Quetzalcoatlus
|
||||||
vehicules:
|
comments_url: https://com.richard-dern.fr/post/402
|
||||||
- Hélicoptère
|
cover: images/153195.jpg
|
||||||
- Tout-terrain
|
date: '2025-10-26 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- LEGO
|
||||||
|
franchises:
|
||||||
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/spinosaurus-quetzalcoatlus-air-mission-76976
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/76976-1/spinosaurus-quetzalcoatlus-air-mission/
|
||||||
|
oeuvres:
|
||||||
|
- Jurassic World Rebirth
|
||||||
personnages_de_fiction:
|
personnages_de_fiction:
|
||||||
- Martin Krebs
|
- Martin Krebs
|
||||||
- Zora Bennett
|
- Zora Bennett
|
||||||
- Duncan Kincaid
|
- Duncan Kincaid
|
||||||
- Henry Loomis
|
- Henry Loomis
|
||||||
|
title: Spinosaurus & Quetzalcoatlus Air Mission
|
||||||
|
vehicules:
|
||||||
|
- Hélicoptère
|
||||||
|
- Tout-terrain
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/402
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
@@ -1,47 +1,47 @@
|
|||||||
---
|
---
|
||||||
title: The Upside Down
|
comments_url: https://com.richard-dern.fr/post/403
|
||||||
date: "2025-10-26 12:00:00"
|
|
||||||
cover: images/15524.jpg
|
cover: images/15524.jpg
|
||||||
links:
|
date: '2025-10-26 12:00:00'
|
||||||
- name: Page du catalogue LEGO
|
|
||||||
url: https://www.lego.com/fr-fr/product/the-upside-down-75810
|
|
||||||
lang: fr
|
|
||||||
- name: Rebrickable
|
|
||||||
url: https://rebrickable.com/sets/75810-1/the-upside-down/
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- LEGO
|
- LEGO
|
||||||
franchises:
|
franchises:
|
||||||
- Stranger Things
|
- Stranger Things
|
||||||
|
links:
|
||||||
|
- lang: fr
|
||||||
|
name: Page du catalogue LEGO
|
||||||
|
url: https://www.lego.com/fr-fr/product/the-upside-down-75810
|
||||||
|
- lang: en
|
||||||
|
name: Rebrickable
|
||||||
|
url: https://rebrickable.com/sets/75810-1/the-upside-down/
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- Stranger Things
|
- Stranger Things
|
||||||
personnages_de_fiction:
|
|
||||||
- Eleven
|
|
||||||
- Mike Wheeler
|
|
||||||
- Lucas Sinclair
|
|
||||||
- Dustin Henderson
|
|
||||||
- Will Byers
|
|
||||||
- Joyce Byers
|
|
||||||
- Jim Hopper
|
|
||||||
- Démogorgon
|
|
||||||
periodes:
|
periodes:
|
||||||
- Halloween
|
- Halloween
|
||||||
- Automne
|
- Automne
|
||||||
vehicules:
|
personnages_de_fiction:
|
||||||
- Camion
|
- Eleven
|
||||||
|
- Mike Wheeler
|
||||||
|
- Lucas Sinclair
|
||||||
|
- Dustin Henderson
|
||||||
|
- Will Byers
|
||||||
|
- Joyce Byers
|
||||||
|
- Jim Hopper
|
||||||
|
- Démogorgon
|
||||||
tags:
|
tags:
|
||||||
- Brique lumineuse
|
- Brique lumineuse
|
||||||
|
title: The Upside Down
|
||||||
|
vehicules:
|
||||||
|
- Camion
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.88888888888889
|
humidity: 97.0
|
||||||
humidity: 97
|
|
||||||
pressure: 999.323287764629
|
|
||||||
illuminance: 5139.6
|
illuminance: 5139.6
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 4.1842944
|
pressure: 999.323287764629
|
||||||
wind_direction: 282
|
|
||||||
source:
|
source:
|
||||||
- influxdb
|
- influxdb
|
||||||
comments_url: https://com.richard-dern.fr/post/403
|
temperature: 5.88888888888889
|
||||||
|
wind_direction: 282.0
|
||||||
|
wind_speed: 4.1842944
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/112
|
||||||
cover: images/agoLcv.jpg
|
cover: images/agoLcv.jpg
|
||||||
date: "2022-10-24 12:00:00"
|
date: '2022-10-24 12:00:00'
|
||||||
title: Armored Action Transporter
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/Armored_Action_Transporter
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- BAE Systems & Land Armaments
|
- BAE Systems & Land Armaments
|
||||||
- Matchbox
|
- Matchbox
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/Armored_Action_Transporter
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- 'Jurassic World: Fallen Kingdom'
|
- 'Jurassic World: Fallen Kingdom'
|
||||||
vehicules:
|
|
||||||
- BAE Systems & Land Armaments Caiman
|
|
||||||
- Camion
|
|
||||||
personnalites:
|
personnalites:
|
||||||
- Abe Lugo
|
- Abe Lugo
|
||||||
|
title: Armored Action Transporter
|
||||||
|
vehicules:
|
||||||
|
- BAE Systems & Land Armaments Caiman
|
||||||
|
- Camion
|
||||||
weather:
|
weather:
|
||||||
temperature: 17.6
|
|
||||||
humidity: 76
|
humidity: 76
|
||||||
pressure: 1013.7
|
|
||||||
illuminance: 41684.3
|
illuminance: 41684.3
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 22.7
|
pressure: 1013.7
|
||||||
wind_direction: 224
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/112
|
temperature: 17.7
|
||||||
|
wind_direction: 224
|
||||||
|
wind_speed: 22.7
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/113
|
||||||
cover: images/VwjuB1.jpg
|
cover: images/VwjuB1.jpg
|
||||||
date: "2022-10-24 12:00:00"
|
date: '2022-10-24 12:00:00'
|
||||||
title: '''10 Textron Tiger'
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/Textron_Tiger
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Matchbox
|
- Matchbox
|
||||||
- Textron
|
- Textron
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/Textron_Tiger
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
vehicules:
|
|
||||||
- Textron Tiger
|
|
||||||
- Tout-terrain
|
|
||||||
personnalites:
|
personnalites:
|
||||||
- Abe Lugo
|
- Abe Lugo
|
||||||
|
title: '''10 Textron Tiger'
|
||||||
|
vehicules:
|
||||||
|
- Textron Tiger
|
||||||
|
- Tout-terrain
|
||||||
weather:
|
weather:
|
||||||
temperature: 17.6
|
|
||||||
humidity: 76
|
humidity: 76
|
||||||
pressure: 1013.7
|
|
||||||
illuminance: 41684.3
|
illuminance: 41684.3
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 22.7
|
pressure: 1013.7
|
||||||
wind_direction: 224
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/113
|
temperature: 17.7
|
||||||
|
wind_direction: 224
|
||||||
|
wind_speed: 22.7
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/27
|
||||||
cover: images/SvYcLa.jpg
|
cover: images/SvYcLa.jpg
|
||||||
date: "2021-12-04 12:00:00"
|
date: '2021-12-04 12:00:00'
|
||||||
title: '''14 Mercedes-Benz G-Class'
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/%2714_Mercedes-Benz_G-Class
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Mercedes
|
- Mercedes
|
||||||
- Matchbox
|
- Matchbox
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/%2714_Mercedes-Benz_G-Class
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
vehicules:
|
|
||||||
- Tout-terrain
|
|
||||||
- Mercedes-Benz G-Class
|
|
||||||
personnalites:
|
personnalites:
|
||||||
- Abe Lugo
|
- Abe Lugo
|
||||||
|
title: '''14 Mercedes-Benz G-Class'
|
||||||
|
vehicules:
|
||||||
|
- Tout-terrain
|
||||||
|
- Mercedes-Benz G-Class
|
||||||
weather:
|
weather:
|
||||||
temperature: 7.5
|
|
||||||
humidity: 92
|
humidity: 92
|
||||||
pressure: 996.7
|
|
||||||
illuminance: 5448.1
|
illuminance: 5448.1
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 32.4
|
pressure: 996.7
|
||||||
wind_direction: 227
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/27
|
temperature: 7.6
|
||||||
|
wind_direction: 227
|
||||||
|
wind_speed: 32.4
|
||||||
---
|
---
|
||||||
|
|
||||||
Voiture conduite par Claire et Owen dans [_Jurassic World_](/critiques/films/jurassic-world/) lorsqu'ils partent à la recherche de Zach et Gray, la Mercedes Classe G ne sera plus visible ensuite, sauf lors d'une courte séquence ultérieure.
|
Voiture conduite par Claire et Owen dans [_Jurassic World_](/critiques/films/jurassic-world/) lorsqu'ils partent à la recherche de Zach et Gray, la Mercedes Classe G ne sera plus visible ensuite, sauf lors d'une courte séquence ultérieure.
|
||||||
|
|||||||
@@ -1,32 +1,32 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/114
|
||||||
cover: images/n7jHBO.jpg
|
cover: images/n7jHBO.jpg
|
||||||
date: "2022-10-24 12:00:00"
|
date: '2022-10-24 12:00:00'
|
||||||
title: Deep-Dive Submarine
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/Deep-Dive_Submarine
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Matchbox
|
- Matchbox
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/Deep-Dive_Submarine
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- 'Jurassic World: Fallen Kingdom'
|
- 'Jurassic World: Fallen Kingdom'
|
||||||
vehicules:
|
|
||||||
- Sous-marin
|
|
||||||
personnalites:
|
personnalites:
|
||||||
- Abe Lugo
|
- Abe Lugo
|
||||||
|
title: Deep-Dive Submarine
|
||||||
|
vehicules:
|
||||||
|
- Sous-marin
|
||||||
weather:
|
weather:
|
||||||
temperature: 17.6
|
|
||||||
humidity: 76
|
humidity: 76
|
||||||
pressure: 1013.7
|
|
||||||
illuminance: 41684.3
|
illuminance: 41684.3
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 22.7
|
pressure: 1013.7
|
||||||
wind_direction: 224
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/114
|
temperature: 17.7
|
||||||
|
wind_direction: 224
|
||||||
|
wind_speed: 22.7
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,32 +1,32 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/115
|
||||||
cover: images/iziMTM.jpg
|
cover: images/iziMTM.jpg
|
||||||
date: "2022-10-24 12:00:00"
|
date: '2022-10-24 12:00:00'
|
||||||
title: Armored Action Truck
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/Armored_Action_Truck
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Matchbox
|
- Matchbox
|
||||||
- BAE Systems & Land Armaments
|
- BAE Systems & Land Armaments
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/Armored_Action_Truck
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- 'Jurassic World: Fallen Kingdom'
|
- 'Jurassic World: Fallen Kingdom'
|
||||||
|
title: Armored Action Truck
|
||||||
vehicules:
|
vehicules:
|
||||||
- Camion
|
- Camion
|
||||||
- BAE Systems & Land Armaments Caiman
|
- BAE Systems & Land Armaments Caiman
|
||||||
weather:
|
weather:
|
||||||
temperature: 17.6
|
|
||||||
humidity: 76
|
humidity: 76
|
||||||
pressure: 1013.7
|
|
||||||
illuminance: 41684.3
|
illuminance: 41684.3
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 22.7
|
pressure: 1013.7
|
||||||
wind_direction: 224
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/115
|
temperature: 17.7
|
||||||
|
wind_direction: 224
|
||||||
|
wind_speed: 22.7
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,33 +1,33 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/83
|
||||||
cover: images/wSG0qR.jpg
|
cover: images/wSG0qR.jpg
|
||||||
date: "2022-06-04 12:00:00"
|
date: '2022-06-04 12:00:00'
|
||||||
title: '''93 Jeep Wrangler'
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/Jeep_Wrangler
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Matchbox
|
- Matchbox
|
||||||
- Jeep
|
- Jeep
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic Park
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/Jeep_Wrangler
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- Jurassic World
|
- Jurassic World
|
||||||
- Jurassic Park
|
- Jurassic Park
|
||||||
|
title: '''93 Jeep Wrangler'
|
||||||
vehicules:
|
vehicules:
|
||||||
- Tout-terrain
|
- Tout-terrain
|
||||||
- Jeep Wrangler
|
- Jeep Wrangler
|
||||||
weather:
|
weather:
|
||||||
temperature: 23.6
|
|
||||||
humidity: 57
|
humidity: 57
|
||||||
pressure: 1017.7
|
|
||||||
illuminance: 62336.4
|
illuminance: 62336.4
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.5
|
pressure: 1017.7
|
||||||
wind_direction: 262
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/83
|
temperature: 23.7
|
||||||
|
wind_direction: 262
|
||||||
|
wind_speed: 2.5
|
||||||
---
|
---
|
||||||
|
|
||||||
La Jeep Wrangler #18 n’a fait que de courtes apparitions dans la saga _Jurassic Park_, mais néanmoins notables : c’est le véhicule qui conduisit Ellie Sattler, Alan Grant et Ian Malcolm depuis l’hélipad jusqu’au centre des visiteurs au début de [_Jurassic Park_](/critiques/films/jurassic-park/). On ne verra plus cette Jeep avant [_Jurassic World_](/critiques/films/jurassic-world/), jusqu’à ce que Zach et son petit frère Gray tombent dessus par hasard lors de leur fuite des griffes de l’_Indominus rex_, puis que Claire et Owen l’utilisent pour se cacher du même monstre.
|
La Jeep Wrangler #18 n’a fait que de courtes apparitions dans la saga _Jurassic Park_, mais néanmoins notables : c’est le véhicule qui conduisit Ellie Sattler, Alan Grant et Ian Malcolm depuis l’hélipad jusqu’au centre des visiteurs au début de [_Jurassic Park_](/critiques/films/jurassic-park/). On ne verra plus cette Jeep avant [_Jurassic World_](/critiques/films/jurassic-world/), jusqu’à ce que Zach et son petit frère Gray tombent dessus par hasard lors de leur fuite des griffes de l’_Indominus rex_, puis que Claire et Owen l’utilisent pour se cacher du même monstre.
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
---
|
---
|
||||||
|
comments_url: https://com.richard-dern.fr/post/84
|
||||||
cover: images/gIV6O0.jpg
|
cover: images/gIV6O0.jpg
|
||||||
date: "2022-06-04 12:00:00"
|
date: '2022-06-04 12:00:00'
|
||||||
title: '''93 Ford Explorer Jurassic Park'
|
|
||||||
links:
|
|
||||||
- name: Fandom Matchbox
|
|
||||||
url: https://matchbox.fandom.com/wiki/%2793_Ford_Explorer_Jurassic_Park
|
|
||||||
lang: en
|
|
||||||
entreprises:
|
entreprises:
|
||||||
- Matchbox
|
- Matchbox
|
||||||
- Ford
|
- Ford
|
||||||
franchises:
|
franchises:
|
||||||
- Jurassic Park
|
- Jurassic Park
|
||||||
|
links:
|
||||||
|
- lang: en
|
||||||
|
name: Fandom Matchbox
|
||||||
|
url: https://matchbox.fandom.com/wiki/%2793_Ford_Explorer_Jurassic_Park
|
||||||
oeuvres:
|
oeuvres:
|
||||||
- Jurassic Park
|
- Jurassic Park
|
||||||
vehicules:
|
|
||||||
- Tout-terrain
|
|
||||||
- Ford Explorer
|
|
||||||
personalites:
|
personalites:
|
||||||
- Abe Lugo
|
- Abe Lugo
|
||||||
|
title: '''93 Ford Explorer Jurassic Park'
|
||||||
|
vehicules:
|
||||||
|
- Tout-terrain
|
||||||
|
- Ford Explorer
|
||||||
weather:
|
weather:
|
||||||
temperature: 23.6
|
|
||||||
humidity: 57
|
humidity: 57
|
||||||
pressure: 1017.7
|
|
||||||
illuminance: 62336.4
|
illuminance: 62336.4
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.5
|
pressure: 1017.7
|
||||||
wind_direction: 262
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/84
|
temperature: 23.7
|
||||||
|
wind_direction: 262
|
||||||
|
wind_speed: 2.5
|
||||||
---
|
---
|
||||||
|
|
||||||
Si ça ne tenait qu’à moi, j’aurais des répliques de ce véhicule dans toutes les tailles, mais pour l’heure, je me contente d’une collection au format 1:64 par Matchbox.
|
Si ça ne tenait qu’à moi, j’aurais des répliques de ce véhicule dans toutes les tailles, mais pour l’heure, je me contente d’une collection au format 1:64 par Matchbox.
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/PyO0PK.jpg
|
|
||||||
date: "2021-12-15 12:00:00"
|
|
||||||
title: Tyrannosaurus rex
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/32
|
||||||
|
cover: images/PyO0PK.jpg
|
||||||
|
date: '2021-12-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Tyrannosaurus rex
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.6
|
|
||||||
humidity: 93
|
humidity: 93
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 12289.9
|
illuminance: 12289.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.5
|
pressure: 1030.3
|
||||||
wind_direction: 53
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/32
|
temperature: 5.8
|
||||||
|
wind_direction: 53
|
||||||
|
wind_speed: 9.5
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/QPbLmT.jpg
|
|
||||||
date: "2022-05-30 12:00:00"
|
|
||||||
title: Mini Pentaceratops
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Pentaceratops
|
- Pentaceratops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/79
|
||||||
|
cover: images/QPbLmT.jpg
|
||||||
|
date: '2022-05-30 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Mini Pentaceratops
|
||||||
weather:
|
weather:
|
||||||
temperature: 15.9
|
|
||||||
humidity: 38
|
humidity: 38
|
||||||
pressure: 1011.3
|
|
||||||
illuminance: 103387.2
|
illuminance: 103387.2
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.3
|
pressure: 1011.3
|
||||||
wind_direction: 39
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/79
|
temperature: 16.0
|
||||||
|
wind_direction: 39
|
||||||
|
wind_speed: 2.3
|
||||||
---
|
---
|
||||||
|
|
||||||
Je suis épaté par la qualité d’une figurine aussi petite. Ce mini _Pentaceratops_ est trop mignon. Le moulage est excellent et ne lésine pas sur les détails. La même remarque vaut également pour la peinture, irréprochable.
|
Je suis épaté par la qualité d’une figurine aussi petite. Ce mini _Pentaceratops_ est trop mignon. Le moulage est excellent et ne lésine pas sur les détails. La même remarque vaut également pour la peinture, irréprochable.
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/7gNXvR.webp
|
|
||||||
date: "2021-10-23 12:00:00"
|
|
||||||
title: Dilophosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Dilophosaurus
|
- Dilophosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/11
|
||||||
|
cover: images/7gNXvR.webp
|
||||||
|
date: '2021-10-23 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Dilophosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 10.8
|
|
||||||
humidity: 70
|
humidity: 70
|
||||||
pressure: 1026.8
|
|
||||||
illuminance: 54227.6
|
illuminance: 54227.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 5.2
|
pressure: 1026.8
|
||||||
wind_direction: 34
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/11
|
temperature: 10.9
|
||||||
|
wind_direction: 34
|
||||||
|
wind_speed: 5.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Acheté pour mon anniversaire en même temps que l'[_Ankylosaurus_](/collections/schleich/dinosaurs/15023/)
|
Acheté pour mon anniversaire en même temps que l'[_Ankylosaurus_](/collections/schleich/dinosaurs/15023/)
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/5Mjh8r.webp
|
|
||||||
date: "2021-10-27 12:00:00"
|
|
||||||
title: Dunkleosteus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Dunkleosteus
|
- Dunkleosteus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/15
|
||||||
|
cover: images/5Mjh8r.webp
|
||||||
|
date: '2021-10-27 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Dunkleosteus
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.8
|
|
||||||
humidity: 68
|
humidity: 68
|
||||||
pressure: 1024.8
|
|
||||||
illuminance: 54227.6
|
illuminance: 54227.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 8.7
|
pressure: 1024.9
|
||||||
wind_direction: 97
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/15
|
temperature: 14.9
|
||||||
|
wind_direction: 97
|
||||||
|
wind_speed: 8.7
|
||||||
---
|
---
|
||||||
|
|
||||||
Le _Dunkleosteus_ n'est pas un animal particulièrement apprécié de la culture
|
Le _Dunkleosteus_ n'est pas un animal particulièrement apprécié de la culture
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/uDS7wB.jpg
|
|
||||||
date: "2022-03-22 12:00:00"
|
|
||||||
title: Herrerasaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Herrerasaurus
|
- Herrerasaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/56
|
||||||
|
cover: images/uDS7wB.jpg
|
||||||
|
date: '2022-03-22 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Herrerasaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 12.9
|
|
||||||
humidity: 48
|
humidity: 48
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 83115.2
|
illuminance: 83115.2
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.1
|
pressure: 1030.4
|
||||||
wind_direction: 329
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/56
|
temperature: 13.1
|
||||||
|
wind_direction: 329
|
||||||
|
wind_speed: 2.1
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/RSQV01.jpg
|
|
||||||
date: "2021-12-15 12:00:00"
|
|
||||||
title: Allosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Allosaurus
|
- Allosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/33
|
||||||
|
cover: images/RSQV01.jpg
|
||||||
|
date: '2021-12-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Allosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.6
|
|
||||||
humidity: 93
|
humidity: 93
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 12289.9
|
illuminance: 12289.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.5
|
pressure: 1030.3
|
||||||
wind_direction: 53
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/33
|
temperature: 5.8
|
||||||
|
wind_direction: 53
|
||||||
|
wind_speed: 9.5
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/CmdxQN.webp
|
|
||||||
date: "2021-10-16 12:00:00"
|
|
||||||
title: Brachiosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Brachiosaurus
|
- Brachiosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/10
|
||||||
|
cover: images/CmdxQN.webp
|
||||||
|
date: '2021-10-16 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Brachiosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 11.4
|
|
||||||
humidity: 82
|
humidity: 82
|
||||||
pressure: 1020.2
|
illuminance: 40544.0
|
||||||
illuminance: 40544
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 7.1
|
pressure: 1020.2
|
||||||
wind_direction: 75
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/10
|
temperature: 11.6
|
||||||
|
wind_direction: 75
|
||||||
|
wind_speed: 7.1
|
||||||
---
|
---
|
||||||
|
|
||||||
Figurine de la marque [Schleich](https://www.schleich-s.com/fr/FR/home)
|
Figurine de la marque [Schleich](https://www.schleich-s.com/fr/FR/home)
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/35E0wG.jpg
|
|
||||||
date: "2021-12-15 12:00:00"
|
|
||||||
title: Utahraptor
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Utahraptor
|
- Utahraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/34
|
||||||
|
cover: images/35E0wG.jpg
|
||||||
|
date: '2021-12-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Utahraptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.6
|
|
||||||
humidity: 93
|
humidity: 93
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 12289.9
|
illuminance: 12289.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.5
|
pressure: 1030.3
|
||||||
wind_direction: 53
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/34
|
temperature: 5.8
|
||||||
|
wind_direction: 53
|
||||||
|
wind_speed: 9.5
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/KsKIAS.jpg
|
|
||||||
date: "2022-05-30 12:00:00"
|
|
||||||
title: Kentrosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Kentrosaurus
|
- Kentrosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/80
|
||||||
|
cover: images/KsKIAS.jpg
|
||||||
|
date: '2022-05-30 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Kentrosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 15.9
|
|
||||||
humidity: 38
|
humidity: 38
|
||||||
pressure: 1011.3
|
|
||||||
illuminance: 103387.2
|
illuminance: 103387.2
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.3
|
pressure: 1011.3
|
||||||
wind_direction: 39
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/80
|
temperature: 16.0
|
||||||
|
wind_direction: 39
|
||||||
|
wind_speed: 2.3
|
||||||
---
|
---
|
||||||
|
|
||||||
Vraisemblablement difficile à trouver, ce _Kentrosaurus_, malgré sa taille moyenne et son prix comparativement élevé, a toute sa place dans ma collection.
|
Vraisemblablement difficile à trouver, ce _Kentrosaurus_, malgré sa taille moyenne et son prix comparativement élevé, a toute sa place dans ma collection.
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/r7cG6A.jpg
|
|
||||||
date: "2021-11-20 12:00:00"
|
|
||||||
title: Acrocanthosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Acrocanthosaurus
|
- Acrocanthosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/21
|
||||||
|
cover: images/r7cG6A.jpg
|
||||||
|
date: '2021-11-20 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Acrocanthosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.1
|
|
||||||
humidity: 89
|
humidity: 89
|
||||||
pressure: 1024.3
|
|
||||||
illuminance: 29521.100000000002
|
illuminance: 29521.100000000002
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 11.5
|
pressure: 1024.3
|
||||||
wind_direction: 92
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/21
|
temperature: 8.2
|
||||||
|
wind_direction: 92
|
||||||
|
wind_speed: 11.5
|
||||||
---
|
---
|
||||||
|
|
||||||
La figurine de l'_Acrocanthosaurus_ de Schleich fait pratiquement la taille du
|
La figurine de l'_Acrocanthosaurus_ de Schleich fait pratiquement la taille du
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/Ak0WKE.jpg
|
|
||||||
date: "2021-11-20 12:00:00"
|
|
||||||
title: Velociraptor
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Velociraptor
|
- Velociraptor
|
||||||
|
comments_url: https://com.richard-dern.fr/post/22
|
||||||
|
cover: images/Ak0WKE.jpg
|
||||||
|
date: '2021-11-20 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Velociraptor
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.1
|
|
||||||
humidity: 89
|
humidity: 89
|
||||||
pressure: 1024.3
|
|
||||||
illuminance: 29521.100000000002
|
illuminance: 29521.100000000002
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 11.5
|
pressure: 1024.3
|
||||||
wind_direction: 92
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/22
|
temperature: 8.2
|
||||||
|
wind_direction: 92
|
||||||
|
wind_speed: 11.5
|
||||||
---
|
---
|
||||||
|
|
||||||
Probablement l'un des dinosaures les plus célèbres, et probablement grâce à la
|
Probablement l'un des dinosaures les plus célèbres, et probablement grâce à la
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/6brrFm.jpg
|
|
||||||
date: "2022-01-24 12:00:00"
|
|
||||||
title: Carnotaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Carnotaurus
|
- Carnotaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/41
|
||||||
|
cover: images/6brrFm.jpg
|
||||||
|
date: '2022-01-24 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Carnotaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 3
|
|
||||||
humidity: 82
|
humidity: 82
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 41430.9
|
illuminance: 41430.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 14.4
|
pressure: 1030.3
|
||||||
wind_direction: 93
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/41
|
temperature: 3.1
|
||||||
|
wind_direction: 93
|
||||||
|
wind_speed: 14.4
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/ERaZoy.webp
|
|
||||||
date: "2021-10-23 12:00:00"
|
|
||||||
title: Tyrannosaurus rex
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/12
|
||||||
|
cover: images/ERaZoy.webp
|
||||||
|
date: '2021-10-23 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Tyrannosaurus rex
|
||||||
weather:
|
weather:
|
||||||
temperature: 10.8
|
|
||||||
humidity: 70
|
humidity: 70
|
||||||
pressure: 1026.8
|
|
||||||
illuminance: 54227.6
|
illuminance: 54227.6
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 5.2
|
pressure: 1026.8
|
||||||
wind_direction: 34
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/12
|
temperature: 10.9
|
||||||
|
wind_direction: 34
|
||||||
|
wind_speed: 5.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Acheté pour mon anniversaire en même temps que l'[_Ankylosaurus_](/collections/schleich/dinosaurs/15023/)
|
Acheté pour mon anniversaire en même temps que l'[_Ankylosaurus_](/collections/schleich/dinosaurs/15023/)
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/uoqtk2.jpg
|
|
||||||
date: "2022-03-23 12:00:00"
|
|
||||||
title: Triceratops
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Triceratops
|
- Triceratops
|
||||||
|
comments_url: https://com.richard-dern.fr/post/57
|
||||||
|
cover: images/uoqtk2.jpg
|
||||||
|
date: '2022-03-23 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Triceratops
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.3
|
|
||||||
humidity: 47
|
humidity: 47
|
||||||
pressure: 1030.1
|
illuminance: 83622.0
|
||||||
illuminance: 83622
|
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 5.2
|
pressure: 1030.1
|
||||||
wind_direction: 25
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/57
|
temperature: 14.4
|
||||||
|
wind_direction: 25
|
||||||
|
wind_speed: 5.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Quand j'étais enfant, le _Triceratops_ était mon deuxième dinosaure préféré, après le _Diplodocus_ et avant le _Stegosaurus_ (que je ne possède pas encore en figurines Schleich à l'heure où j'écris ces lignes, un comble !), le _Tyrannosaurus_ arrivant quatrième, et le _Compsognathus_ clôturant mon top 5. J'aime bien ce que ça dit de ma personnalité. Bref...
|
Quand j'étais enfant, le _Triceratops_ était mon deuxième dinosaure préféré, après le _Diplodocus_ et avant le _Stegosaurus_ (que je ne possède pas encore en figurines Schleich à l'heure où j'écris ces lignes, un comble !), le _Tyrannosaurus_ arrivant quatrième, et le _Compsognathus_ clôturant mon top 5. J'aime bien ce que ça dit de ma personnalité. Bref...
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/UtxjyD.jpg
|
|
||||||
date: "2022-05-30 12:00:00"
|
|
||||||
title: Therizinosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Therizinosaurus
|
- Therizinosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/81
|
||||||
|
cover: images/UtxjyD.jpg
|
||||||
|
date: '2022-05-30 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Therizinosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 15.9
|
|
||||||
humidity: 38
|
humidity: 38
|
||||||
pressure: 1011.3
|
|
||||||
illuminance: 103387.2
|
illuminance: 103387.2
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 2.3
|
pressure: 1011.3
|
||||||
wind_direction: 39
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/81
|
temperature: 16.0
|
||||||
|
wind_direction: 39
|
||||||
|
wind_speed: 2.3
|
||||||
---
|
---
|
||||||
|
|
||||||
Le _Therizinosaurus_ est un animal trompeur, et cette ambiguité est cultivée par Schleich qui a doté sa figurine de deux attributs habituellement réservés aux carnivores de la collection : des bras et une gueule articulée. Pourtant, on estime toujours que c'était essentiellement un herbivore, et ce malgré la présence d'un bec denté qui devait lui servir, occasionnellement, à consommer de petits lézards et d'autres créatures de taille similaire. Toujours est-il que cette figurine mérite ces attributs spécifiques puisqu'ils mettent en valeur ses deux caractéristiques les plus intéressantes : les gigantesques griffes des pattes antérieures, et sa gueule hybride.
|
Le _Therizinosaurus_ est un animal trompeur, et cette ambiguité est cultivée par Schleich qui a doté sa figurine de deux attributs habituellement réservés aux carnivores de la collection : des bras et une gueule articulée. Pourtant, on estime toujours que c'était essentiellement un herbivore, et ce malgré la présence d'un bec denté qui devait lui servir, occasionnellement, à consommer de petits lézards et d'autres créatures de taille similaire. Toujours est-il que cette figurine mérite ces attributs spécifiques puisqu'ils mettent en valeur ses deux caractéristiques les plus intéressantes : les gigantesques griffes des pattes antérieures, et sa gueule hybride.
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/9bQTpf.jpg
|
|
||||||
date: "2022-03-21 12:00:00"
|
|
||||||
title: Tawa
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tawa
|
- Tawa
|
||||||
|
comments_url: https://com.richard-dern.fr/post/54
|
||||||
|
cover: images/9bQTpf.jpg
|
||||||
|
date: '2022-03-21 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Tawa
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.4
|
|
||||||
humidity: 47
|
humidity: 47
|
||||||
pressure: 1030.4
|
|
||||||
illuminance: 80201.1
|
illuminance: 80201.1
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.2
|
pressure: 1030.4
|
||||||
wind_direction: 249
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/54
|
temperature: 14.6
|
||||||
|
wind_direction: 249
|
||||||
|
wind_speed: 9.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Le _tawa_ étant un petit Théropode de deux mètres de long pour 15kg, sa représentation par Schleich ne pouvait être très grande. Cette figurine est la plus petite et la plus légère en ma possession à l'heure actuelle. Achetée en même temps que le [_Giganotosaurus_](/collections/schleich/dinosaurs/15010/), elle est loin de faire le poids, dans tous les sens du terme !
|
Le _tawa_ étant un petit Théropode de deux mètres de long pour 15kg, sa représentation par Schleich ne pouvait être très grande. Cette figurine est la plus petite et la plus légère en ma possession à l'heure actuelle. Achetée en même temps que le [_Giganotosaurus_](/collections/schleich/dinosaurs/15010/), elle est loin de faire le poids, dans tous les sens du terme !
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/Oj8pTI.jpg
|
|
||||||
date: "2021-11-20 12:00:00"
|
|
||||||
title: Jeune Tyrannosaurus rex
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Tyrannosaurus
|
- Tyrannosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/23
|
||||||
|
cover: images/Oj8pTI.jpg
|
||||||
|
date: '2021-11-20 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Jeune Tyrannosaurus rex
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.1
|
|
||||||
humidity: 89
|
humidity: 89
|
||||||
pressure: 1024.3
|
|
||||||
illuminance: 29521.100000000002
|
illuminance: 29521.100000000002
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 11.5
|
pressure: 1024.3
|
||||||
wind_direction: 92
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/23
|
temperature: 8.2
|
||||||
|
wind_direction: 92
|
||||||
|
wind_speed: 11.5
|
||||||
---
|
---
|
||||||
|
|
||||||
En voyant cette figurine isolée dans le magasin de jouets, sachant qu'elle
|
En voyant cette figurine isolée dans le magasin de jouets, sachant qu'elle
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/MVRbiv.jpg
|
|
||||||
date: "2021-12-15 12:00:00"
|
|
||||||
title: Pteranodon
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Pteranodon
|
- Pteranodon
|
||||||
|
comments_url: https://com.richard-dern.fr/post/35
|
||||||
|
cover: images/MVRbiv.jpg
|
||||||
|
date: '2021-12-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Pteranodon
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.6
|
|
||||||
humidity: 93
|
humidity: 93
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 12289.9
|
illuminance: 12289.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.5
|
pressure: 1030.3
|
||||||
wind_direction: 53
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/35
|
temperature: 5.8
|
||||||
|
wind_direction: 53
|
||||||
|
wind_speed: 9.5
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/sUgFCU.jpg
|
|
||||||
date: "2021-11-20 12:00:00"
|
|
||||||
title: Spinosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Spinosaurus
|
- Spinosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/24
|
||||||
|
cover: images/sUgFCU.jpg
|
||||||
|
date: '2021-11-20 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Spinosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 8.1
|
|
||||||
humidity: 89
|
humidity: 89
|
||||||
pressure: 1024.3
|
|
||||||
illuminance: 29521.100000000002
|
illuminance: 29521.100000000002
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 11.5
|
pressure: 1024.3
|
||||||
wind_direction: 92
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/24
|
temperature: 8.2
|
||||||
|
wind_direction: 92
|
||||||
|
wind_speed: 11.5
|
||||||
---
|
---
|
||||||
|
|
||||||
Autre célébrité explorée par Schleich, ce _Spinosaurus_ est une belle réussite !
|
Autre célébrité explorée par Schleich, ce _Spinosaurus_ est une belle réussite !
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/o8UzYA.jpg
|
|
||||||
date: "2022-03-21 12:00:00"
|
|
||||||
title: Giganotosaurus
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Giganotosaurus
|
- Giganotosaurus
|
||||||
|
comments_url: https://com.richard-dern.fr/post/55
|
||||||
|
cover: images/o8UzYA.jpg
|
||||||
|
date: '2022-03-21 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Giganotosaurus
|
||||||
weather:
|
weather:
|
||||||
temperature: 14.4
|
|
||||||
humidity: 47
|
humidity: 47
|
||||||
pressure: 1030.4
|
|
||||||
illuminance: 80201.1
|
illuminance: 80201.1
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.2
|
pressure: 1030.4
|
||||||
wind_direction: 249
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/55
|
temperature: 14.6
|
||||||
|
wind_direction: 249
|
||||||
|
wind_speed: 9.2
|
||||||
---
|
---
|
||||||
|
|
||||||
Ce _Giganotosaurus_ est indéniablement une pièce magnifique de ma collection. Probablement l'une des figurines les plus réussies de la gamme des [Dinosaurs de Schleich](https://www.schleich-s.com/fr/FR/dinosaurs.html).
|
Ce _Giganotosaurus_ est indéniablement une pièce magnifique de ma collection. Probablement l'une des figurines les plus réussies de la gamme des [Dinosaurs de Schleich](https://www.schleich-s.com/fr/FR/dinosaurs.html).
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/rlvDIs.jpg
|
|
||||||
date: "2021-12-15 12:00:00"
|
|
||||||
title: Animantarx
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Animantarx
|
- Animantarx
|
||||||
|
comments_url: https://com.richard-dern.fr/post/36
|
||||||
|
cover: images/rlvDIs.jpg
|
||||||
|
date: '2021-12-15 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Animantarx
|
||||||
weather:
|
weather:
|
||||||
temperature: 5.6
|
|
||||||
humidity: 93
|
humidity: 93
|
||||||
pressure: 1030.3
|
|
||||||
illuminance: 12289.9
|
illuminance: 12289.9
|
||||||
precipitations: false
|
precipitations: false
|
||||||
wind_speed: 9.5
|
pressure: 1030.3
|
||||||
wind_direction: 53
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/36
|
temperature: 5.8
|
||||||
|
wind_direction: 53
|
||||||
|
wind_speed: 9.5
|
||||||
---
|
---
|
||||||
|
|
||||||

|

|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
---
|
---
|
||||||
cover: images/H3X2kd.jpg
|
|
||||||
date: "2021-12-04 12:00:00"
|
|
||||||
title: Dracorex
|
|
||||||
entreprises:
|
|
||||||
- Schleich
|
|
||||||
animaux:
|
animaux:
|
||||||
- Dracorex
|
- Dracorex
|
||||||
|
comments_url: https://com.richard-dern.fr/post/28
|
||||||
|
cover: images/H3X2kd.jpg
|
||||||
|
date: '2021-12-04 12:00:00'
|
||||||
|
entreprises:
|
||||||
|
- Schleich
|
||||||
|
title: Dracorex
|
||||||
weather:
|
weather:
|
||||||
temperature: 7.5
|
|
||||||
humidity: 92
|
humidity: 92
|
||||||
pressure: 996.7
|
|
||||||
illuminance: 5448.1
|
illuminance: 5448.1
|
||||||
precipitations: true
|
precipitations: true
|
||||||
wind_speed: 32.4
|
pressure: 996.7
|
||||||
wind_direction: 227
|
|
||||||
source:
|
source:
|
||||||
- open-meteo
|
- open-meteo
|
||||||
comments_url: https://com.richard-dern.fr/post/28
|
temperature: 7.6
|
||||||
|
wind_direction: 227
|
||||||
|
wind_speed: 32.4
|
||||||
---
|
---
|
||||||
|
|
||||||
_Dracorex_, le _lézard roi_, se présente chez Schleich comme une figurine telle
|
_Dracorex_, le _lézard roi_, se présente chez Schleich comme une figurine telle
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user