Récupération d'articles d'archives
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
const HIGHLIGHT_START = "__MEILI_HIGHLIGHT_START__";
|
||||
const HIGHLIGHT_END = "__MEILI_HIGHLIGHT_END__";
|
||||
|
||||
/**
|
||||
* Lit la configuration exposee par le template Hugo.
|
||||
* @param {HTMLElement} root Element principal de la page.
|
||||
@@ -67,14 +70,27 @@ function readSearchQuery(queryParam) {
|
||||
* @param {string} query Texte recherche.
|
||||
* @param {number} limit Nombre de resultats par lot.
|
||||
* @param {number} offset Position de depart.
|
||||
* @returns {{q: string, limit: number, offset: number, attributesToRetrieve: string[]}}
|
||||
* @returns {object}
|
||||
*/
|
||||
function buildSearchPayload(query, limit, offset) {
|
||||
return {
|
||||
q: query,
|
||||
limit,
|
||||
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.
|
||||
* @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) {
|
||||
if (typeof hit !== "object" || hit === null) {
|
||||
@@ -194,19 +210,110 @@ function normalizeHit(hit) {
|
||||
if (typeof hit.title === "string" && hit.title.trim().length > 0) {
|
||||
title = hit.title.trim();
|
||||
}
|
||||
const titleMarkup = readFormattedField(hit, "title") || title;
|
||||
|
||||
let publishedAt = "";
|
||||
if (typeof hit.published_at === "string" && hit.published_at.trim().length > 0) {
|
||||
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 {
|
||||
title,
|
||||
titleMarkup,
|
||||
summary,
|
||||
summaryMarkup,
|
||||
path: hit.path.trim(),
|
||||
section,
|
||||
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.
|
||||
* @param {unknown} rawDate Date brute.
|
||||
@@ -240,58 +347,107 @@ function buildDateInfo(rawDate) {
|
||||
|
||||
/**
|
||||
* 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.
|
||||
* @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);
|
||||
if (segments.length === 0) {
|
||||
return "Section inconnue";
|
||||
}
|
||||
|
||||
const firstSegment = segments[0];
|
||||
if (firstSegment === "collections") {
|
||||
sectionKey = segments[0];
|
||||
}
|
||||
|
||||
if (sectionKey === "collections") {
|
||||
return "Collections";
|
||||
}
|
||||
|
||||
if (firstSegment === "critiques") {
|
||||
if (sectionKey === "critiques") {
|
||||
return "Critiques";
|
||||
}
|
||||
|
||||
if (firstSegment === "interets") {
|
||||
if (sectionKey === "interets") {
|
||||
return "Intérêts";
|
||||
}
|
||||
|
||||
if (firstSegment === "stats") {
|
||||
if (sectionKey === "stats") {
|
||||
return "Statistiques";
|
||||
}
|
||||
|
||||
if (firstSegment === "taxonomies") {
|
||||
if (sectionKey === "taxonomies") {
|
||||
return "Taxonomies";
|
||||
}
|
||||
|
||||
if (firstSegment === "contact") {
|
||||
if (sectionKey === "contact") {
|
||||
return "Contact";
|
||||
}
|
||||
|
||||
if (firstSegment === "manifeste") {
|
||||
if (sectionKey === "manifeste") {
|
||||
return "Manifeste";
|
||||
}
|
||||
|
||||
if (firstSegment === "liens-morts") {
|
||||
if (sectionKey === "liens-morts") {
|
||||
return "Liens morts";
|
||||
}
|
||||
|
||||
if (firstSegment === "revue-de-presse") {
|
||||
if (sectionKey === "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.
|
||||
* @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}
|
||||
*/
|
||||
function createResultArticle(hit) {
|
||||
@@ -300,7 +456,7 @@ function createResultArticle(hit) {
|
||||
const title = document.createElement("h3");
|
||||
const link = document.createElement("a");
|
||||
link.href = hit.path;
|
||||
link.textContent = hit.title;
|
||||
link.append(buildHighlightedFragment(hit.titleMarkup));
|
||||
title.append(link);
|
||||
article.append(title);
|
||||
|
||||
@@ -324,11 +480,18 @@ function createResultArticle(hit) {
|
||||
meta.append(separator);
|
||||
|
||||
const section = document.createElement("span");
|
||||
section.textContent = extractSectionLabel(hit.path);
|
||||
section.textContent = extractSectionLabel(hit.section, hit.path);
|
||||
meta.append(section);
|
||||
|
||||
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");
|
||||
path.className = "search-result-path";
|
||||
path.textContent = hit.path;
|
||||
@@ -340,7 +503,7 @@ function createResultArticle(hit) {
|
||||
/**
|
||||
* Rend la liste des resultats.
|
||||
* @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) {
|
||||
clearNode(listNode);
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
---
|
||||
title: Santa's Visit
|
||||
date: "2025-10-26 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/380
|
||||
cover: images/92322.jpg
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
links:
|
||||
- name: Page du catalogue LEGO
|
||||
- lang: fr
|
||||
name: Page du catalogue LEGO
|
||||
url: https://www.lego.com/fr-fr/product/santas-visit-10293
|
||||
lang: fr
|
||||
- name: Rebrickable
|
||||
- lang: en
|
||||
name: Rebrickable
|
||||
url: https://rebrickable.com/sets/10293-1/santas-visit/
|
||||
lang: en
|
||||
periodes:
|
||||
- Noël
|
||||
- Hiver
|
||||
entreprises:
|
||||
- LEGO
|
||||
personnages_de_fiction:
|
||||
- Père Noël
|
||||
tags:
|
||||
@@ -25,17 +25,17 @@ tags:
|
||||
- Tradition
|
||||
- Neige
|
||||
- Cheminée
|
||||
title: Santa's Visit
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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
|
||||
date: "2025-10-26 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/381
|
||||
cover: images/110146.jpg
|
||||
links:
|
||||
- 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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- 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:
|
||||
- Tramway
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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
|
||||
date: "2025-10-26 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/382
|
||||
cover: images/127993.jpg
|
||||
links:
|
||||
- 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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- 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:
|
||||
- Moto-neige
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-06 17:09:35"
|
||||
comments_url: https://com.richard-dern.fr/post/451
|
||||
cover: images/145964.jpg
|
||||
date: '2025-12-06 17:09:35'
|
||||
title: Santa's Post Office
|
||||
weather:
|
||||
temperature: 8.55555555555556
|
||||
humidity: 92
|
||||
pressure: 1012.53020346196
|
||||
illuminance: 0
|
||||
humidity: 92.0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 14.6450304
|
||||
wind_direction: 216
|
||||
pressure: 1012.53020346196
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-06 17:10:22"
|
||||
comments_url: https://com.richard-dern.fr/post/452
|
||||
cover: images/161069.jpg
|
||||
date: '2025-12-06 17:10:22'
|
||||
title: Holiday Express Train
|
||||
weather:
|
||||
temperature: 8.55555555555556
|
||||
humidity: 92
|
||||
pressure: 1012.53020346196
|
||||
illuminance: 0
|
||||
humidity: 92.0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 9.3341952
|
||||
wind_direction: 288
|
||||
pressure: 1012.53020346196
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-06 17:12:56"
|
||||
comments_url: https://com.richard-dern.fr/post/455
|
||||
cover: images/144811.jpg
|
||||
date: '2025-12-06 17:12:56'
|
||||
title: Poinsettia
|
||||
weather:
|
||||
temperature: 8.55555555555556
|
||||
humidity: 91
|
||||
pressure: 1012.53020346196
|
||||
illuminance: 0
|
||||
humidity: 91.0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 9.656064
|
||||
wind_direction: 238
|
||||
pressure: 1012.53020346196
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-06 17:12:14"
|
||||
comments_url: https://com.richard-dern.fr/post/453
|
||||
cover: images/143737.jpg
|
||||
date: '2025-12-06 17:12:14'
|
||||
title: Christmas Table Decoration
|
||||
weather:
|
||||
temperature: 8.55555555555556
|
||||
humidity: 91
|
||||
pressure: 1012.53020346196
|
||||
illuminance: 0
|
||||
humidity: 91.0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 10.7826048
|
||||
wind_direction: 258
|
||||
pressure: 1012.53020346196
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-06 17:12:26"
|
||||
comments_url: https://com.richard-dern.fr/post/454
|
||||
cover: images/162186.jpg
|
||||
date: '2025-12-06 17:12:26'
|
||||
title: Classic Animation Scenes
|
||||
weather:
|
||||
temperature: 8.55555555555556
|
||||
humidity: 91
|
||||
pressure: 1012.53020346196
|
||||
illuminance: 0
|
||||
humidity: 91.0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 10.7826048
|
||||
wind_direction: 258
|
||||
pressure: 1012.53020346196
|
||||
source:
|
||||
- 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
|
||||
date: "2022-11-10 12:00:00"
|
||||
title: NASA Space Shuttle Discovery
|
||||
date: '2022-11-10 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
- NASA
|
||||
links:
|
||||
- name: Page du catalogue LEGO
|
||||
- lang: fr
|
||||
name: Page du catalogue LEGO
|
||||
url: https://www.lego.com/fr-fr/product/nasa-space-shuttle-discovery-10283
|
||||
lang: fr
|
||||
- name: Rebrickable
|
||||
- lang: en
|
||||
name: Rebrickable
|
||||
url: https://rebrickable.com/sets/10283-1/nasa-space-shuttle-discovery/
|
||||
lang: en
|
||||
tags:
|
||||
- Espace
|
||||
- Discovery
|
||||
- Hubble
|
||||
entreprises:
|
||||
- LEGO
|
||||
- NASA
|
||||
title: NASA Space Shuttle Discovery
|
||||
vehicules:
|
||||
- Navette spatiale
|
||||
weather:
|
||||
temperature: 12.2
|
||||
humidity: 77
|
||||
pressure: 1026.7
|
||||
illuminance: 42191.1
|
||||
precipitations: false
|
||||
wind_speed: 7.4
|
||||
wind_direction: 231
|
||||
pressure: 1026.7
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,18 +1,16 @@
|
||||
---
|
||||
title: Raptor Ambush
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/422
|
||||
cover: images/134204.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor Ambush
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-17 15:18:48"
|
||||
comments_url: https://com.richard-dern.fr/post/462
|
||||
cover: images/134215.jpg
|
||||
date: '2025-12-17 15:18:48'
|
||||
title: Owen Grady and Red Motorbike
|
||||
weather:
|
||||
temperature: 8.88888888888889
|
||||
humidity: 93
|
||||
pressure: 1023.36664711105
|
||||
humidity: 93.0
|
||||
illuminance: 5254.8
|
||||
wind_speed: 3.218688
|
||||
wind_direction: 298
|
||||
precipitations: false
|
||||
pressure: 1023.36664711105
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/423
|
||||
cover: images/134223.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen and Quad
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/424
|
||||
cover: images/134224.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Rainn Delacourt with Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/425
|
||||
cover: images/134225.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Blue Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/426
|
||||
cover: images/134184.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor and Trap
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/427
|
||||
cover: images/134185.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Baby Raptor with Incubator
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/428
|
||||
cover: images/134186.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen with Jet Pack and Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/429
|
||||
cover: images/134187.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Pyroraptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/430
|
||||
cover: images/134188.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor with Big Trap
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/431
|
||||
cover: images/134189.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen with Swamp Speeder and Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/432
|
||||
cover: images/134190.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Wildlife Guard and Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/433
|
||||
cover: images/134191.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen's Mega Motorcycle
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/434
|
||||
cover: images/134192.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Alan Grant and Dino Skeleton
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/435
|
||||
cover: images/136294.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor and Laboratory
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/436
|
||||
cover: images/137707.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Beta and Nest
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/437
|
||||
cover: images/139244.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen with Helicopter
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/438
|
||||
cover: images/141239.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor and Laboratory
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/439
|
||||
cover: images/142456.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor and Laboratory Table
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/440
|
||||
cover: images/144478.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor and Hideout
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/441
|
||||
cover: images/147315.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Mobile Incubator with Egg
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/442
|
||||
cover: images/139248.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Robert Muldoon and Baby Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/443
|
||||
cover: images/156337.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Guard and Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-12-17 15:18:29"
|
||||
comments_url: https://com.richard-dern.fr/post/461
|
||||
cover: images/162673.jpg
|
||||
date: '2025-12-17 15:18:29'
|
||||
title: Baby Raptor with Transport Cage
|
||||
weather:
|
||||
temperature: 8.88888888888889
|
||||
humidity: 93
|
||||
pressure: 1023.36664711105
|
||||
humidity: 93.0
|
||||
illuminance: 5259.6
|
||||
wind_speed: 3.218688
|
||||
wind_direction: 298
|
||||
precipitations: false
|
||||
pressure: 1023.36664711105
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/444
|
||||
cover: images/158647.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Owen with Quad Bike
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/445
|
||||
cover: images/158648.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Raptor Trap
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: "2025-11-30 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/446
|
||||
cover: images/160217.jpg
|
||||
date: '2025-11-30 12:00:00'
|
||||
title: Guard with Jet Pack and Raptor
|
||||
weather:
|
||||
temperature: 6.05555555555555
|
||||
humidity: 97
|
||||
pressure: 1015.9165921023
|
||||
humidity: 97.0
|
||||
illuminance: 6063.6
|
||||
precipitations: false
|
||||
wind_speed: 6.7592448
|
||||
wind_direction: 328
|
||||
pressure: 1015.9165921023
|
||||
source:
|
||||
- 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
|
||||
date: '2026-03-14 14:32:32'
|
||||
comments_url: https://com.richard-dern.fr/post/482
|
||||
cover: images/168930.jpg
|
||||
date: '2026-03-14 14:32:32'
|
||||
title: Guard with Incubator
|
||||
weather:
|
||||
temperature: 2.05555555555556
|
||||
humidity: 94
|
||||
pressure: 1006.77334277338
|
||||
humidity: 94.0
|
||||
illuminance: 10603.2
|
||||
precipitations: false
|
||||
wind_speed: 4.9889664
|
||||
wind_direction: 258
|
||||
precipitations: true
|
||||
pressure: 1007.11198163741
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Velociraptor
|
||||
associations:
|
||||
- Cas'Brick
|
||||
comments_url: https://com.richard-dern.fr/post/196
|
||||
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
|
||||
date: '2024-04-28 00:29:47'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
lieux:
|
||||
- Malte
|
||||
- Woippy
|
||||
associations:
|
||||
- Cas'Brick
|
||||
animaux:
|
||||
- Velociraptor
|
||||
links:
|
||||
- lang: en
|
||||
name: Rebrickable
|
||||
url: https://rebrickable.com/sets/30390-1/dinosaur-market/
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
title: Dinosaur Market
|
||||
weather:
|
||||
temperature: 12.9
|
||||
humidity: 60
|
||||
pressure: 1005
|
||||
illuminance: 0
|
||||
illuminance: 0.0
|
||||
precipitations: false
|
||||
wind_speed: 14.8
|
||||
wind_direction: 133
|
||||
pressure: 1005.0
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,38 +1,38 @@
|
||||
---
|
||||
title: Dilophosaurus on the Loose
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Dilophosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/383
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Dilophosaurus
|
||||
personnages_de_fiction:
|
||||
- Owen Grady
|
||||
- Hudson Harper
|
||||
title: Dilophosaurus on the Loose
|
||||
vehicules:
|
||||
- Drone
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- influxdb
|
||||
comments_url: https://com.richard-dern.fr/post/383
|
||||
temperature: 5.88888888888889
|
||||
wind_direction: 282.0
|
||||
wind_speed: 4.1842944
|
||||
---
|
||||
|
||||

|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
---
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/7
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- John Hammond
|
||||
- Ian Malcolm
|
||||
@@ -27,17 +27,17 @@ personnages_de_fiction:
|
||||
- Dennis Nedry
|
||||
- Ray Arnold
|
||||
- Donald Gennaro
|
||||
title: 'Jurassic Park: T. rex Rampage'
|
||||
weather:
|
||||
temperature: 19.6
|
||||
humidity: 79
|
||||
pressure: 1013.6
|
||||
illuminance: 35602.700000000004
|
||||
precipitations: false
|
||||
wind_speed: 16.3
|
||||
wind_direction: 229
|
||||
pressure: 1013.6
|
||||
source:
|
||||
- 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ù
|
||||
|
||||
@@ -1,39 +1,39 @@
|
||||
---
|
||||
title: T. rex Dinosaur Fossil Exhibition
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Triceratops
|
||||
comments_url: https://com.richard-dern.fr/post/384
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Triceratops
|
||||
personnages_de_fiction:
|
||||
- Owen Grady
|
||||
- Darius Bowman
|
||||
tags:
|
||||
- Fossile
|
||||
title: T. rex Dinosaur Fossil Exhibition
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Pteranodon
|
||||
comments_url: https://com.richard-dern.fr/post/197
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Pteranodon
|
||||
personnages_de_fiction:
|
||||
- Owen Grady
|
||||
- Maisie Lockwood
|
||||
title: Pteranodon Chase
|
||||
vehicules:
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 14.6
|
||||
humidity: 63
|
||||
pressure: 1012.1
|
||||
illuminance: 62716.5
|
||||
precipitations: false
|
||||
wind_speed: 23.2
|
||||
wind_direction: 206
|
||||
pressure: 1012.1
|
||||
source:
|
||||
- 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/).
|
||||
|
||||
@@ -1,39 +1,39 @@
|
||||
---
|
||||
title: T. rex Dinosaur Breakout
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/385
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
personnages_de_fiction:
|
||||
- Owen Grady
|
||||
- Zia Rodrigez
|
||||
title: T. rex Dinosaur Breakout
|
||||
vehicules:
|
||||
- Hélicoptère
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Atrociraptor
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/198
|
||||
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
|
||||
date: '2024-04-28 11:36:06'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
lieux:
|
||||
- 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
|
||||
animaux:
|
||||
- Atrociraptor
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Owen Grady
|
||||
- Rainn Delacourt
|
||||
lieux:
|
||||
- Malte
|
||||
title: 'Atrociraptor Dinosaur: Bike Chase'
|
||||
vehicules:
|
||||
- Moto
|
||||
weather:
|
||||
temperature: 14.5
|
||||
humidity: 58
|
||||
pressure: 1012.6
|
||||
illuminance: 49159.6
|
||||
precipitations: false
|
||||
wind_speed: 23.4
|
||||
wind_direction: 205
|
||||
pressure: 1012.6
|
||||
source:
|
||||
- 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/).
|
||||
|
||||
@@ -1,43 +1,43 @@
|
||||
---
|
||||
title: Blue & Beta Velociraptor Capture
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/386
|
||||
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
|
||||
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/blue-beta-velociraptor-capture-76946
|
||||
- lang: en
|
||||
name: Rebrickable
|
||||
url: https://rebrickable.com/sets/76946-1/blue-beta-velociraptor-capture/
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
animaux:
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Maisie Lockwood
|
||||
- Rainn Delacourt
|
||||
- Blue
|
||||
- Beta
|
||||
lieux:
|
||||
- Malte
|
||||
title: Blue & Beta Velociraptor Capture
|
||||
vehicules:
|
||||
- Camion
|
||||
- Moto
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Quetzalcoatlus
|
||||
comments_url: https://com.richard-dern.fr/post/118
|
||||
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
|
||||
date: '2022-11-28 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
lieux:
|
||||
- Dolomites
|
||||
animaux:
|
||||
- Quetzalcoatlus
|
||||
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:
|
||||
- Owen Grady
|
||||
- Claire Dearing
|
||||
- Kayla Watts
|
||||
title: Quetzalcoatlus Plane Ambush
|
||||
vehicules:
|
||||
- Avion
|
||||
weather:
|
||||
temperature: 9.5
|
||||
humidity: 77
|
||||
pressure: 1011.6
|
||||
illuminance: 20145.3
|
||||
precipitations: false
|
||||
wind_speed: 14.4
|
||||
wind_direction: 217
|
||||
pressure: 1011.7
|
||||
source:
|
||||
- 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/).
|
||||
|
||||
@@ -1,43 +1,43 @@
|
||||
---
|
||||
title: T. rex & Atrociraptor Dinosaur Breakout
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Atrociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/387
|
||||
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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
lieux:
|
||||
- Malte
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Atrociraptor
|
||||
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:
|
||||
- Owen Grady
|
||||
- Claire Dearing
|
||||
- Rainn Delacourt
|
||||
- Soyona Santos
|
||||
title: T. rex & Atrociraptor Dinosaur Breakout
|
||||
vehicules:
|
||||
- Camion
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- influxdb
|
||||
comments_url: https://com.richard-dern.fr/post/387
|
||||
temperature: 5.88888888888889
|
||||
wind_direction: 282.0
|
||||
wind_speed: 4.1842944
|
||||
---
|
||||
|
||||

|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
---
|
||||
title: Giganotosaurus & Therizinosaurus Attack
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Giganotosaurus
|
||||
- Therizinosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/388
|
||||
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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
oeuvres:
|
||||
- Jurassic World Dominion
|
||||
lieux:
|
||||
- Dolomites
|
||||
animaux:
|
||||
- Giganotosaurus
|
||||
- Therizinosaurus
|
||||
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:
|
||||
- Owen Grady
|
||||
- Claire Dearing
|
||||
@@ -27,20 +27,20 @@ personnages_de_fiction:
|
||||
- Ellie Sattler
|
||||
- Kayla Watts
|
||||
- Henry Wu
|
||||
title: Giganotosaurus & Therizinosaurus Attack
|
||||
vehicules:
|
||||
- Hélicoptère
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Pyroraptor
|
||||
- Dilophosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/389
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Pyroraptor
|
||||
- Dilophosaurus
|
||||
personnages_de_fiction:
|
||||
- Ian Malcolm
|
||||
- Ellie Sattler
|
||||
title: Pyroraptor & Dilophosaurus Transport
|
||||
vehicules:
|
||||
- Camion
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/142
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
personnages_de_fiction:
|
||||
- Ian Malcolm
|
||||
- Alan Grant
|
||||
- Tim Murphy
|
||||
- Lex Murphy
|
||||
title: T. rex Breakout
|
||||
vehicules:
|
||||
- Voiture
|
||||
- Ford Explorer
|
||||
weather:
|
||||
temperature: 16.8
|
||||
humidity: 68
|
||||
pressure: 1015.4
|
||||
illuminance: 55874.700000000004
|
||||
precipitations: false
|
||||
wind_speed: 21.9
|
||||
wind_direction: 70
|
||||
pressure: 1015.5
|
||||
source:
|
||||
- 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).
|
||||
|
||||
@@ -1,38 +1,38 @@
|
||||
---
|
||||
animaux:
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/150
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Robert Muldoon
|
||||
- Ellie Sattler
|
||||
title: Velociraptor Escape
|
||||
vehicules:
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 25.9
|
||||
humidity: 44
|
||||
pressure: 1015.1
|
||||
illuminance: 107948.40000000001
|
||||
precipitations: false
|
||||
wind_speed: 17.7
|
||||
wind_direction: 94
|
||||
pressure: 1015.1
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
---
|
||||
animaux:
|
||||
- Dilophosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/151
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Dilophosaurus
|
||||
personnages_de_fiction:
|
||||
- Dennis Nedry
|
||||
title: Dilophosaurus Ambush
|
||||
vehicules:
|
||||
- Voiture
|
||||
- Jeep Wrangler
|
||||
weather:
|
||||
temperature: 25.9
|
||||
humidity: 44
|
||||
pressure: 1015.1
|
||||
illuminance: 107948.40000000001
|
||||
precipitations: false
|
||||
wind_speed: 17.7
|
||||
wind_direction: 94
|
||||
pressure: 1015.1
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
---
|
||||
animaux:
|
||||
- Triceratops
|
||||
comments_url: https://com.richard-dern.fr/post/152
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Triceratops
|
||||
personnages_de_fiction:
|
||||
- Ellie Sattler
|
||||
- Ian Malcolm
|
||||
title: Triceratops Research
|
||||
vehicules:
|
||||
- Voiture
|
||||
- Ford Explorer
|
||||
weather:
|
||||
temperature: 25.9
|
||||
humidity: 44
|
||||
pressure: 1015.1
|
||||
illuminance: 107948.40000000001
|
||||
precipitations: false
|
||||
wind_speed: 17.7
|
||||
wind_direction: 94
|
||||
pressure: 1015.1
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,41 +1,41 @@
|
||||
---
|
||||
animaux:
|
||||
- Brachiosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/153
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Brachiosaurus
|
||||
personnages_de_fiction:
|
||||
- Ellie Sattler
|
||||
- Allan Grant
|
||||
- John Hammond
|
||||
title: Brachiosaurus Discovery
|
||||
vehicules:
|
||||
- Voiture
|
||||
- Jeep Wrangler
|
||||
weather:
|
||||
temperature: 25.9
|
||||
humidity: 44
|
||||
pressure: 1015.1
|
||||
illuminance: 107948.40000000001
|
||||
precipitations: false
|
||||
wind_speed: 17.7
|
||||
wind_direction: 94
|
||||
pressure: 1015.1
|
||||
source:
|
||||
- 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é.
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
---
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/154
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Ellie Sattler
|
||||
- Allan Grant
|
||||
@@ -27,17 +27,17 @@ personnages_de_fiction:
|
||||
- Henry Wu
|
||||
tags:
|
||||
- Fossile
|
||||
title: 'Visitor Center: T. rex & Raptor Attack'
|
||||
weather:
|
||||
temperature: 25.9
|
||||
humidity: 44
|
||||
pressure: 1015.1
|
||||
illuminance: 107948.40000000001
|
||||
precipitations: false
|
||||
wind_speed: 17.7
|
||||
wind_direction: 94
|
||||
pressure: 1015.1
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,31 +1,31 @@
|
||||
---
|
||||
title: 'Baby Bumpy: Ankylosaurus'
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Ankylosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/390
|
||||
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
|
||||
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'
|
||||
animaux:
|
||||
- Ankylosaurus
|
||||
title: 'Baby Bumpy: Ankylosaurus'
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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:
|
||||
- Ankylosaurus
|
||||
- Pteranodon
|
||||
- Triceratops
|
||||
- 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:
|
||||
- Darius Bowman
|
||||
- Sammy Gutierrez
|
||||
title: Baby Dinosaur Rescue Center
|
||||
vehicules:
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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 @@
|
||||
---
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/199
|
||||
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
|
||||
date: '2024-04-28 15:29:19'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
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:
|
||||
- Fossile
|
||||
title: 'Dinosaur Fossils: T. rex Skull'
|
||||
weather:
|
||||
temperature: 11.8
|
||||
humidity: 70
|
||||
pressure: 1014.9
|
||||
illuminance: 38010
|
||||
illuminance: 38010.0
|
||||
precipitations: false
|
||||
wind_speed: 17.6
|
||||
wind_direction: 221
|
||||
pressure: 1015.0
|
||||
source:
|
||||
- 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_.
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
---
|
||||
title: 'Dinosaur Missions: Stegosaurus Discovery'
|
||||
date: "2025-10-26 12:00:00"
|
||||
animaux:
|
||||
- Stegosaurus
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/392
|
||||
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
|
||||
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'
|
||||
animaux:
|
||||
- Stegosaurus
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Benjamin Pincus
|
||||
- Sammy Gutierrez
|
||||
title: 'Dinosaur Missions: Stegosaurus Discovery'
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
- Remorque
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Allosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/393
|
||||
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
|
||||
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'
|
||||
animaux:
|
||||
- Allosaurus
|
||||
personnages_de_fiction:
|
||||
- Darius Bowman
|
||||
- Kenji Kon
|
||||
- Yasmina Fadoula
|
||||
title: 'Dinosaur Missions: Allosaurus Transport Truck'
|
||||
vehicules:
|
||||
- Camion
|
||||
- Remorque
|
||||
- Buggy
|
||||
- Drone
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/394
|
||||
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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
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:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/395
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
personnages_de_fiction:
|
||||
- Ellie Sattler
|
||||
- Alan Grant
|
||||
tags:
|
||||
- Fossile
|
||||
title: 'Dinosaur Fossils: Tyrannosaurus Rex'
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Triceratops
|
||||
comments_url: https://com.richard-dern.fr/post/396
|
||||
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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- Jurassic World
|
||||
animaux:
|
||||
- Triceratops
|
||||
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:
|
||||
- Fossile
|
||||
title: 'Dinosaur Fossils: Triceratops Skull'
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Aquilops
|
||||
comments_url: https://com.richard-dern.fr/post/397
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Aquilops
|
||||
title: 'Baby Dinosaur Dolores: Aquilops'
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Velociraptor
|
||||
- Aquilops
|
||||
comments_url: https://com.richard-dern.fr/post/398
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Velociraptor
|
||||
- Aquilops
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
personnages_de_fiction:
|
||||
- Reuben Delgado
|
||||
- Isabella Delgado
|
||||
title: Raptor Off-Road Escape
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Titanosaurus
|
||||
- Velociraptor
|
||||
comments_url: https://com.richard-dern.fr/post/399
|
||||
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
|
||||
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-titanosaurus-tracking-mission-76973
|
||||
- lang: en
|
||||
name: Rebrickable
|
||||
url: https://rebrickable.com/sets/76973-1/raptor-titanosaurus-tracking-mission/
|
||||
oeuvres:
|
||||
- Jurassic World Rebirth
|
||||
animaux:
|
||||
- Titanosaurus
|
||||
- Velociraptor
|
||||
personnages_de_fiction:
|
||||
- Zora Bennett
|
||||
- Martin Krebs
|
||||
- Henry Loomis
|
||||
title: Raptor & Titanosaurus Tracking Mission
|
||||
vehicules:
|
||||
- Buggy
|
||||
- Remorque
|
||||
- Moto
|
||||
- Drone
|
||||
personnages_de_fiction:
|
||||
- Zora Bennett
|
||||
- Martin Krebs
|
||||
- Henry Loomis
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Mosasaurus
|
||||
comments_url: https://com.richard-dern.fr/post/400
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Mosasaurus
|
||||
vehicules:
|
||||
- Bateau
|
||||
personnages_de_fiction:
|
||||
- Bobby Atwater
|
||||
- Leclerc
|
||||
title: Brick-Built Mosasaurus Boat Mission
|
||||
vehicules:
|
||||
- Bateau
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
comments_url: https://com.richard-dern.fr/post/401
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Tyrannosaurus
|
||||
vehicules:
|
||||
- Canot de sauvetage
|
||||
- Buggy
|
||||
personnages_de_fiction:
|
||||
- Teresa Delgado
|
||||
- Xavier Dobbs
|
||||
title: T. rex River Escape
|
||||
vehicules:
|
||||
- Canot de sauvetage
|
||||
- Buggy
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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"
|
||||
animaux:
|
||||
- Spinosaurus
|
||||
- Quetzalcoatlus
|
||||
comments_url: https://com.richard-dern.fr/post/402
|
||||
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
|
||||
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
|
||||
animaux:
|
||||
- Spinosaurus
|
||||
- Quetzalcoatlus
|
||||
vehicules:
|
||||
- Hélicoptère
|
||||
- Tout-terrain
|
||||
personnages_de_fiction:
|
||||
- Martin Krebs
|
||||
- Zora Bennett
|
||||
- Duncan Kincaid
|
||||
- Henry Loomis
|
||||
title: Spinosaurus & Quetzalcoatlus Air Mission
|
||||
vehicules:
|
||||
- Hélicoptère
|
||||
- Tout-terrain
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- influxdb
|
||||
comments_url: https://com.richard-dern.fr/post/402
|
||||
temperature: 5.88888888888889
|
||||
wind_direction: 282.0
|
||||
wind_speed: 4.1842944
|
||||
---
|
||||
|
||||

|
||||
@@ -1,20 +1,23 @@
|
||||
---
|
||||
title: The Upside Down
|
||||
date: "2025-10-26 12:00:00"
|
||||
comments_url: https://com.richard-dern.fr/post/403
|
||||
cover: images/15524.jpg
|
||||
links:
|
||||
- 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
|
||||
date: '2025-10-26 12:00:00'
|
||||
entreprises:
|
||||
- LEGO
|
||||
franchises:
|
||||
- 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:
|
||||
- Stranger Things
|
||||
periodes:
|
||||
- Halloween
|
||||
- Automne
|
||||
personnages_de_fiction:
|
||||
- Eleven
|
||||
- Mike Wheeler
|
||||
@@ -24,24 +27,21 @@ personnages_de_fiction:
|
||||
- Joyce Byers
|
||||
- Jim Hopper
|
||||
- Démogorgon
|
||||
periodes:
|
||||
- Halloween
|
||||
- Automne
|
||||
vehicules:
|
||||
- Camion
|
||||
tags:
|
||||
- Brique lumineuse
|
||||
title: The Upside Down
|
||||
vehicules:
|
||||
- Camion
|
||||
weather:
|
||||
temperature: 5.88888888888889
|
||||
humidity: 97
|
||||
pressure: 999.323287764629
|
||||
humidity: 97.0
|
||||
illuminance: 5139.6
|
||||
precipitations: true
|
||||
wind_speed: 4.1842944
|
||||
wind_direction: 282
|
||||
pressure: 999.323287764629
|
||||
source:
|
||||
- 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
|
||||
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
|
||||
date: '2022-10-24 12:00:00'
|
||||
entreprises:
|
||||
- BAE Systems & Land Armaments
|
||||
- Matchbox
|
||||
franchises:
|
||||
- Jurassic World
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/Armored_Action_Transporter
|
||||
oeuvres:
|
||||
- 'Jurassic World: Fallen Kingdom'
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
title: Armored Action Transporter
|
||||
vehicules:
|
||||
- BAE Systems & Land Armaments Caiman
|
||||
- Camion
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
weather:
|
||||
temperature: 17.6
|
||||
humidity: 76
|
||||
pressure: 1013.7
|
||||
illuminance: 41684.3
|
||||
precipitations: false
|
||||
wind_speed: 22.7
|
||||
wind_direction: 224
|
||||
pressure: 1013.7
|
||||
source:
|
||||
- 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
|
||||
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
|
||||
date: '2022-10-24 12:00:00'
|
||||
entreprises:
|
||||
- Matchbox
|
||||
- Textron
|
||||
franchises:
|
||||
- Jurassic World
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/Textron_Tiger
|
||||
oeuvres:
|
||||
- Jurassic World
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
title: '''10 Textron Tiger'
|
||||
vehicules:
|
||||
- Textron Tiger
|
||||
- Tout-terrain
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
weather:
|
||||
temperature: 17.6
|
||||
humidity: 76
|
||||
pressure: 1013.7
|
||||
illuminance: 41684.3
|
||||
precipitations: false
|
||||
wind_speed: 22.7
|
||||
wind_direction: 224
|
||||
pressure: 1013.7
|
||||
source:
|
||||
- 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
|
||||
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
|
||||
date: '2021-12-04 12:00:00'
|
||||
entreprises:
|
||||
- Mercedes
|
||||
- Matchbox
|
||||
franchises:
|
||||
- Jurassic World
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/%2714_Mercedes-Benz_G-Class
|
||||
oeuvres:
|
||||
- Jurassic World
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
title: '''14 Mercedes-Benz G-Class'
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
- Mercedes-Benz G-Class
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
weather:
|
||||
temperature: 7.5
|
||||
humidity: 92
|
||||
pressure: 996.7
|
||||
illuminance: 5448.1
|
||||
precipitations: true
|
||||
wind_speed: 32.4
|
||||
wind_direction: 227
|
||||
pressure: 996.7
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,32 +1,32 @@
|
||||
---
|
||||
comments_url: https://com.richard-dern.fr/post/114
|
||||
cover: images/n7jHBO.jpg
|
||||
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
|
||||
date: '2022-10-24 12:00:00'
|
||||
entreprises:
|
||||
- Matchbox
|
||||
franchises:
|
||||
- Jurassic World
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/Deep-Dive_Submarine
|
||||
oeuvres:
|
||||
- 'Jurassic World: Fallen Kingdom'
|
||||
vehicules:
|
||||
- Sous-marin
|
||||
personnalites:
|
||||
- Abe Lugo
|
||||
title: Deep-Dive Submarine
|
||||
vehicules:
|
||||
- Sous-marin
|
||||
weather:
|
||||
temperature: 17.6
|
||||
humidity: 76
|
||||
pressure: 1013.7
|
||||
illuminance: 41684.3
|
||||
precipitations: false
|
||||
wind_speed: 22.7
|
||||
wind_direction: 224
|
||||
pressure: 1013.7
|
||||
source:
|
||||
- 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
|
||||
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
|
||||
date: '2022-10-24 12:00:00'
|
||||
entreprises:
|
||||
- Matchbox
|
||||
- BAE Systems & Land Armaments
|
||||
franchises:
|
||||
- Jurassic World
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/Armored_Action_Truck
|
||||
oeuvres:
|
||||
- 'Jurassic World: Fallen Kingdom'
|
||||
title: Armored Action Truck
|
||||
vehicules:
|
||||
- Camion
|
||||
- BAE Systems & Land Armaments Caiman
|
||||
weather:
|
||||
temperature: 17.6
|
||||
humidity: 76
|
||||
pressure: 1013.7
|
||||
illuminance: 41684.3
|
||||
precipitations: false
|
||||
wind_speed: 22.7
|
||||
wind_direction: 224
|
||||
pressure: 1013.7
|
||||
source:
|
||||
- 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
|
||||
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
|
||||
date: '2022-06-04 12:00:00'
|
||||
entreprises:
|
||||
- Matchbox
|
||||
- Jeep
|
||||
franchises:
|
||||
- Jurassic Park
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/Jeep_Wrangler
|
||||
oeuvres:
|
||||
- Jurassic World
|
||||
- Jurassic Park
|
||||
title: '''93 Jeep Wrangler'
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
- Jeep Wrangler
|
||||
weather:
|
||||
temperature: 23.6
|
||||
humidity: 57
|
||||
pressure: 1017.7
|
||||
illuminance: 62336.4
|
||||
precipitations: false
|
||||
wind_speed: 2.5
|
||||
wind_direction: 262
|
||||
pressure: 1017.7
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
---
|
||||
comments_url: https://com.richard-dern.fr/post/84
|
||||
cover: images/gIV6O0.jpg
|
||||
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
|
||||
date: '2022-06-04 12:00:00'
|
||||
entreprises:
|
||||
- Matchbox
|
||||
- Ford
|
||||
franchises:
|
||||
- Jurassic Park
|
||||
links:
|
||||
- lang: en
|
||||
name: Fandom Matchbox
|
||||
url: https://matchbox.fandom.com/wiki/%2793_Ford_Explorer_Jurassic_Park
|
||||
oeuvres:
|
||||
- Jurassic Park
|
||||
personalites:
|
||||
- Abe Lugo
|
||||
title: '''93 Ford Explorer Jurassic Park'
|
||||
vehicules:
|
||||
- Tout-terrain
|
||||
- Ford Explorer
|
||||
personalites:
|
||||
- Abe Lugo
|
||||
weather:
|
||||
temperature: 23.6
|
||||
humidity: 57
|
||||
pressure: 1017.7
|
||||
illuminance: 62336.4
|
||||
precipitations: false
|
||||
wind_speed: 2.5
|
||||
wind_direction: 262
|
||||
pressure: 1017.7
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/PyO0PK.jpg
|
||||
date: "2021-12-15 12:00:00"
|
||||
title: Tyrannosaurus rex
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 5.6
|
||||
humidity: 93
|
||||
pressure: 1030.3
|
||||
illuminance: 12289.9
|
||||
precipitations: false
|
||||
wind_speed: 9.5
|
||||
wind_direction: 53
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 15.9
|
||||
humidity: 38
|
||||
pressure: 1011.3
|
||||
illuminance: 103387.2
|
||||
precipitations: false
|
||||
wind_speed: 2.3
|
||||
wind_direction: 39
|
||||
pressure: 1011.3
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/7gNXvR.webp
|
||||
date: "2021-10-23 12:00:00"
|
||||
title: Dilophosaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 10.8
|
||||
humidity: 70
|
||||
pressure: 1026.8
|
||||
illuminance: 54227.6
|
||||
precipitations: false
|
||||
wind_speed: 5.2
|
||||
wind_direction: 34
|
||||
pressure: 1026.8
|
||||
source:
|
||||
- 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/)
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/5Mjh8r.webp
|
||||
date: "2021-10-27 12:00:00"
|
||||
title: Dunkleosteus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 14.8
|
||||
humidity: 68
|
||||
pressure: 1024.8
|
||||
illuminance: 54227.6
|
||||
precipitations: false
|
||||
wind_speed: 8.7
|
||||
wind_direction: 97
|
||||
pressure: 1024.9
|
||||
source:
|
||||
- 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
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/uDS7wB.jpg
|
||||
date: "2022-03-22 12:00:00"
|
||||
title: Herrerasaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 12.9
|
||||
humidity: 48
|
||||
pressure: 1030.3
|
||||
illuminance: 83115.2
|
||||
precipitations: false
|
||||
wind_speed: 2.1
|
||||
wind_direction: 329
|
||||
pressure: 1030.4
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 5.6
|
||||
humidity: 93
|
||||
pressure: 1030.3
|
||||
illuminance: 12289.9
|
||||
precipitations: false
|
||||
wind_speed: 9.5
|
||||
wind_direction: 53
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 11.4
|
||||
humidity: 82
|
||||
pressure: 1020.2
|
||||
illuminance: 40544
|
||||
illuminance: 40544.0
|
||||
precipitations: false
|
||||
wind_speed: 7.1
|
||||
wind_direction: 75
|
||||
pressure: 1020.2
|
||||
source:
|
||||
- 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)
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/35E0wG.jpg
|
||||
date: "2021-12-15 12:00:00"
|
||||
title: Utahraptor
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 5.6
|
||||
humidity: 93
|
||||
pressure: 1030.3
|
||||
illuminance: 12289.9
|
||||
precipitations: false
|
||||
wind_speed: 9.5
|
||||
wind_direction: 53
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 15.9
|
||||
humidity: 38
|
||||
pressure: 1011.3
|
||||
illuminance: 103387.2
|
||||
precipitations: false
|
||||
wind_speed: 2.3
|
||||
wind_direction: 39
|
||||
pressure: 1011.3
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/r7cG6A.jpg
|
||||
date: "2021-11-20 12:00:00"
|
||||
title: Acrocanthosaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 8.1
|
||||
humidity: 89
|
||||
pressure: 1024.3
|
||||
illuminance: 29521.100000000002
|
||||
precipitations: false
|
||||
wind_speed: 11.5
|
||||
wind_direction: 92
|
||||
pressure: 1024.3
|
||||
source:
|
||||
- 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
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/Ak0WKE.jpg
|
||||
date: "2021-11-20 12:00:00"
|
||||
title: Velociraptor
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 8.1
|
||||
humidity: 89
|
||||
pressure: 1024.3
|
||||
illuminance: 29521.100000000002
|
||||
precipitations: false
|
||||
wind_speed: 11.5
|
||||
wind_direction: 92
|
||||
pressure: 1024.3
|
||||
source:
|
||||
- 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
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/6brrFm.jpg
|
||||
date: "2022-01-24 12:00:00"
|
||||
title: Carnotaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 3
|
||||
humidity: 82
|
||||
pressure: 1030.3
|
||||
illuminance: 41430.9
|
||||
precipitations: false
|
||||
wind_speed: 14.4
|
||||
wind_direction: 93
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 10.8
|
||||
humidity: 70
|
||||
pressure: 1026.8
|
||||
illuminance: 54227.6
|
||||
precipitations: false
|
||||
wind_speed: 5.2
|
||||
wind_direction: 34
|
||||
pressure: 1026.8
|
||||
source:
|
||||
- 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/)
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/uoqtk2.jpg
|
||||
date: "2022-03-23 12:00:00"
|
||||
title: Triceratops
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 14.3
|
||||
humidity: 47
|
||||
pressure: 1030.1
|
||||
illuminance: 83622
|
||||
illuminance: 83622.0
|
||||
precipitations: false
|
||||
wind_speed: 5.2
|
||||
wind_direction: 25
|
||||
pressure: 1030.1
|
||||
source:
|
||||
- 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...
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/UtxjyD.jpg
|
||||
date: "2022-05-30 12:00:00"
|
||||
title: Therizinosaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 15.9
|
||||
humidity: 38
|
||||
pressure: 1011.3
|
||||
illuminance: 103387.2
|
||||
precipitations: false
|
||||
wind_speed: 2.3
|
||||
wind_direction: 39
|
||||
pressure: 1011.3
|
||||
source:
|
||||
- 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.
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/9bQTpf.jpg
|
||||
date: "2022-03-21 12:00:00"
|
||||
title: Tawa
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 14.4
|
||||
humidity: 47
|
||||
pressure: 1030.4
|
||||
illuminance: 80201.1
|
||||
precipitations: false
|
||||
wind_speed: 9.2
|
||||
wind_direction: 249
|
||||
pressure: 1030.4
|
||||
source:
|
||||
- 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 !
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/Oj8pTI.jpg
|
||||
date: "2021-11-20 12:00:00"
|
||||
title: Jeune Tyrannosaurus rex
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 8.1
|
||||
humidity: 89
|
||||
pressure: 1024.3
|
||||
illuminance: 29521.100000000002
|
||||
precipitations: false
|
||||
wind_speed: 11.5
|
||||
wind_direction: 92
|
||||
pressure: 1024.3
|
||||
source:
|
||||
- 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
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/MVRbiv.jpg
|
||||
date: "2021-12-15 12:00:00"
|
||||
title: Pteranodon
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 5.6
|
||||
humidity: 93
|
||||
pressure: 1030.3
|
||||
illuminance: 12289.9
|
||||
precipitations: false
|
||||
wind_speed: 9.5
|
||||
wind_direction: 53
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 8.1
|
||||
humidity: 89
|
||||
pressure: 1024.3
|
||||
illuminance: 29521.100000000002
|
||||
precipitations: false
|
||||
wind_speed: 11.5
|
||||
wind_direction: 92
|
||||
pressure: 1024.3
|
||||
source:
|
||||
- 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 !
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/o8UzYA.jpg
|
||||
date: "2022-03-21 12:00:00"
|
||||
title: Giganotosaurus
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 14.4
|
||||
humidity: 47
|
||||
pressure: 1030.4
|
||||
illuminance: 80201.1
|
||||
precipitations: false
|
||||
wind_speed: 9.2
|
||||
wind_direction: 249
|
||||
pressure: 1030.4
|
||||
source:
|
||||
- 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).
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
---
|
||||
cover: images/rlvDIs.jpg
|
||||
date: "2021-12-15 12:00:00"
|
||||
title: Animantarx
|
||||
entreprises:
|
||||
- Schleich
|
||||
animaux:
|
||||
- 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:
|
||||
temperature: 5.6
|
||||
humidity: 93
|
||||
pressure: 1030.3
|
||||
illuminance: 12289.9
|
||||
precipitations: false
|
||||
wind_speed: 9.5
|
||||
wind_direction: 53
|
||||
pressure: 1030.3
|
||||
source:
|
||||
- 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:
|
||||
- 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:
|
||||
temperature: 7.5
|
||||
humidity: 92
|
||||
pressure: 996.7
|
||||
illuminance: 5448.1
|
||||
precipitations: true
|
||||
wind_speed: 32.4
|
||||
wind_direction: 227
|
||||
pressure: 996.7
|
||||
source:
|
||||
- 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
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user