Compare commits
No commits in common. "d12e7ff9e33634ca669a877d529dd084c8c6720d" and "3ad4dc48ae7f9c5f7e76506f8acd6e6ab4ec4224" have entirely different histories.
d12e7ff9e3
...
3ad4dc48ae
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: About
|
||||
language: "en"
|
||||
logosub: About me
|
||||
---
|
||||
Nullam imperdiet sodales orci vitae molestie. Nunc quam orci, pharetra a
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
---
|
||||
title: Contact
|
||||
language: "en"
|
||||
logosub: Not very social
|
||||
---
|
||||
|
||||
|
||||
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: Home
|
||||
logosub: Personal Hakyll weblog
|
||||
language: "en"
|
||||
---
|
||||
|
||||
$partial("templates/index.html")$
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
language: "en"
|
||||
title: SMC 2025 - Scale Model Challenge
|
||||
author: Kevin Matsubara
|
||||
date: 2025-10-18
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
language: "en"
|
||||
title: Animecon 2026
|
||||
author: Kevin Matsubara
|
||||
date: 2026-04-17
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
language: "en"
|
||||
title: ScaleWorld 2026
|
||||
author: Kevin Matsubara
|
||||
date: 2026-05-31
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
language: "en"
|
||||
title: SMC 2026 - Scale Model Challenge
|
||||
author: Kevin Matsubara
|
||||
date: 2026-10-17
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
---
|
||||
language: "en"
|
||||
title: Spiel 2026
|
||||
author: Kevin Matsubara
|
||||
date: 2026-10-22
|
||||
|
||||
BIN
portfolio/images/plamo/gundam/hg/demi-trainer/thumbnail.webp
Normal file
BIN
portfolio/images/plamo/gundam/hg/demi-trainer/thumbnail.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.7 KiB |
BIN
portfolio/images/plamo/gundam/hg/kawasaki-zaku-ii/thumbnail.webp
Normal file
BIN
portfolio/images/plamo/gundam/hg/kawasaki-zaku-ii/thumbnail.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.6 KiB |
BIN
portfolio/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp
Normal file
BIN
portfolio/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.5 KiB |
BIN
portfolio/images/plamo/gundam/mg/geara-doga/thumbnail.webp
Normal file
BIN
portfolio/images/plamo/gundam/mg/geara-doga/thumbnail.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
@ -1,7 +1,87 @@
|
||||
---
|
||||
title: Home
|
||||
logosub: Personal Hakyll weblog
|
||||
language: "nl"
|
||||
---
|
||||
|
||||
$partial("templates/index.html")$
|
||||
<img src="/images/haskell-logo.png" style="float: right; margin: 10px;" />
|
||||
|
||||
<p>Welcome to my blog.</p>
|
||||
|
||||
<p>This part of my website is still under construction, please excuse my mess.</p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-4 g-4 p-1">
|
||||
|
||||
<!-- Japan -->
|
||||
<div class="col">
|
||||
<div class="card mt-2" style="width: 128px;">
|
||||
<a href="/japan.html">
|
||||
<img src="/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp" alt="thumbnail" class="card-img-top img-fluid rounded-top" >
|
||||
</a>
|
||||
<div class="card-body">
|
||||
<p class="card-text text-center">Japan</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Plamo -->
|
||||
<div class="col">
|
||||
<div class="card mt-2" style="width: 128px;">
|
||||
<a href="/plamo.html">
|
||||
<img src="/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp" alt="thumbnail" class="card-img-top img-fluid rounded-top" >
|
||||
</a>
|
||||
<div class="card-body">
|
||||
<p class="card-text text-center">Plamo</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Radio -->
|
||||
<div class="col">
|
||||
<div class="card mt-2" style="width: 128px;">
|
||||
<a href="/radio.html">
|
||||
<img src="/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp" alt="thumbnail" class="card-img-top img-fluid rounded-top" >
|
||||
</a>
|
||||
<div class="card-body">
|
||||
<p class="card-text text-center">Radio</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Software -->
|
||||
<div class="col">
|
||||
<div class="card mt-2" style="width: 128px;">
|
||||
<a href="/software.html">
|
||||
<img src="/images/plamo/gundam/hg/smc-2025-gundam/thumbnail.webp" alt="thumbnail" class="card-img-top img-fluid rounded-top" >
|
||||
</a>
|
||||
<div class="card-body">
|
||||
<p class="card-text text-center">Software</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr/>
|
||||
|
||||
<div class="row row-cols-1 row-cols-md-2 g-4 p-1">
|
||||
|
||||
<div class="col">
|
||||
<h4>Recent posts</h4>
|
||||
$partial("templates/recent-posts.html")$
|
||||
|
||||
<p>…or you can find more posts in the <a href="/archive.html">archives</a>.</p>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<h4>Upcoming events</h4>
|
||||
$partial("templates/events.html")$
|
||||
|
||||
<p>Here you can find more events I attended: <a href="/events.html">events</a>.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: Home
|
||||
logosub: Personal Hakyll weblog
|
||||
language: "jp"
|
||||
---
|
||||
|
||||
$partial("templates/index.html")$
|
||||
@ -1,7 +0,0 @@
|
||||
---
|
||||
title: Home
|
||||
logosub: Personal Hakyll weblog
|
||||
language: "nl"
|
||||
---
|
||||
|
||||
$partial("templates/index.html")$
|
||||
@ -0,0 +1,22 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Zero
|
||||
page: "airplanes/military/a6m2-zero-type-21"
|
||||
model_name: A6M2 Zero Type 21
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €26,20
|
||||
series: World War 2
|
||||
scale: 1/48
|
||||
number: "82212"
|
||||
release: "2022"
|
||||
manufacturer: Eduard
|
||||
purchase_date: "2024-10-19"
|
||||
purchase_store: Eduard
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2024"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
---
|
||||
|
||||
The Zero.
|
||||
|
||||
Profipack edition, 20% discount.
|
||||
@ -1,19 +1,18 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Tachikawa Ki-55 trainer"
|
||||
page: "model-kits/airplanes/military/tachikawa-ki-55-trainer"
|
||||
model_name: "Tachikawa Ki-55 Type 99 advanced trainer"
|
||||
date: "2025-08-03"
|
||||
status: "Complete"
|
||||
price: "€18,00"
|
||||
series: "World War 2"
|
||||
scale: "1/72"
|
||||
logosub: Plamo
|
||||
title: Tachikawa Ki-55 trainer
|
||||
page: "airplanes/military/tachikawa-ki-55-trainer"
|
||||
model_name: Tachikawa Ki-55 Type 99 advanced trainer
|
||||
date: 2025-08-03
|
||||
status: Complete
|
||||
price: €18,00
|
||||
series: World War 2
|
||||
scale: 1/72
|
||||
number: "7A-A1-350"
|
||||
release: "1983"
|
||||
manufacturer: "Fujimi"
|
||||
manufacturer: Fujimi
|
||||
purchase_date: "2025-01-24"
|
||||
purchase_store: "Flashie"
|
||||
purchase_store: Flashie
|
||||
purchase_venue: "Winkel"
|
||||
purchase_location: "Eindhoven, Netherlands"
|
||||
---
|
||||
@ -1,19 +1,18 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MiG-21F-13"
|
||||
page: "model-kits/airplanes/military/mig-21f-13"
|
||||
model_name: "Mikoyan-Gurevich MiG-21F-13 interceptor"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€10,00*"
|
||||
logosub: Plamo
|
||||
title: MiG-21F-13
|
||||
page: "airplanes/military/mig-21f-13"
|
||||
model_name: Mikoyan-Gurevich MiG-21F-13 interceptor
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €10,00*
|
||||
series: ""
|
||||
scale: "1/48"
|
||||
scale: 1/48
|
||||
number: "82191"
|
||||
release: "2025"
|
||||
manufacturer: "Eduard"
|
||||
manufacturer: Eduard
|
||||
purchase_date: "2025-10-18"
|
||||
purchase_store: "SMC Tombola"
|
||||
purchase_store: SMC Tombola
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2025"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
---
|
||||
22
portfolio/pages/en/plamo/gundam/fm/gat-x370-raider-gundam.md
Normal file
22
portfolio/pages/en/plamo/gundam/fm/gat-x370-raider-gundam.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: GAT-X370 Raider Gundam
|
||||
page: gundam/fm/raider-gundam
|
||||
model_name: GAT-X370 Raider Gundam
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: €0,00
|
||||
series: Mobile Suit Gundam SEED
|
||||
scale: 1/100
|
||||
number: "5063349"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-08-14
|
||||
purchase_store: ""
|
||||
purchase_venue: ""
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The GAT-X370 Raider Gundam.
|
||||
|
||||
This was a gift from my friends!
|
||||
20
portfolio/pages/en/plamo/gundam/fm/xvx-016-gundam-aerial.md
Normal file
20
portfolio/pages/en/plamo/gundam/fm/xvx-016-gundam-aerial.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: XVX-016 Gundam Aerial
|
||||
page: gundam/fm/aerial
|
||||
model_name: XVX-016 Gundam Aerial
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €45,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/100
|
||||
number: "5065090"
|
||||
release: "2023"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-04-28
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The XVX-016 Gundam Aerial.
|
||||
@ -1,21 +1,20 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Kawasaki Zaku II"
|
||||
page: "model-kits/gundam/hg/kawasaki-zaku-ii"
|
||||
model_name: "MS-06 Zaku II"
|
||||
date: "2025-05-02"
|
||||
status: "Complete"
|
||||
price: "€21,99"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/144"
|
||||
logosub: Plamo
|
||||
title: Kawasaki Zaku II
|
||||
page: "gundam/hg/kawasaki-zaku-ii"
|
||||
model_name: MS-06 Zaku II
|
||||
date: 2025-05-02
|
||||
status: Complete
|
||||
price: €21,99
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/144
|
||||
number: "5061545"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-09-11"
|
||||
purchase_store: "Gameforce"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-09-11
|
||||
purchase_store: Gameforce
|
||||
purchase_venue: ""
|
||||
purchase_location: "Eindhoven, Netherlands"
|
||||
purchase_location: Eindhoven, Netherlands
|
||||
---
|
||||
|
||||
My first completed model, a Bandai Zaku II.
|
||||
@ -1,21 +1,20 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "SMC Gundam"
|
||||
page: "model-kits/gundam/hg/smc-2025-gundam"
|
||||
model_name: "RX-178 Mk.II"
|
||||
date: "2025-10-18"
|
||||
status: "Complete"
|
||||
price: "€10,00"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
logosub: Plamo
|
||||
title: SMC Gundam
|
||||
page: "gundam/hg/smc-2025-gundam"
|
||||
model_name: RX-178 Mk.II
|
||||
date: 2025-10-18
|
||||
status: Complete
|
||||
price: €10,00
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5057985"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-10-19"
|
||||
purchase_store: "Side7"
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2024"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-10-19
|
||||
purchase_store: Side7
|
||||
purchase_venue: SMC (Scale Model Challenge) 2024
|
||||
purchase_location: Veldhoven, Netherlands
|
||||
---
|
||||
|
||||
## About the model
|
||||
20
portfolio/pages/en/plamo/gundam/hg/agx-04-gerbera-tetra.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/agx-04-gerbera-tetra.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: AGX-04 Gerbera Tetra
|
||||
page: gundam/hg/gerbera-tetra
|
||||
model_name: AGX-04 Gerbera Tetra
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €29,92
|
||||
series: "Mobile Suit Gundam 0083: Stardust Memory"
|
||||
scale: 1/144
|
||||
number: "5055886"
|
||||
release: "2019"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-11-27
|
||||
purchase_store: La Cité des Nuages
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Waterloo, Belgie"
|
||||
---
|
||||
|
||||
The AGX-04 Gerbera Tetra.
|
||||
21
portfolio/pages/en/plamo/gundam/hg/ams-129m-zee-zulu.md
Normal file
21
portfolio/pages/en/plamo/gundam/hg/ams-129m-zee-zulu.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: AMS-129M Zee Zulu
|
||||
page: gundam/hg/zee-zulu
|
||||
model_name: AMS-129M Zee Zulu
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: ¥?
|
||||
series: Mobile Suit Gundam Unicorn
|
||||
scale: 1/144
|
||||
number: "0171631"
|
||||
release: "2011"
|
||||
manufacturer: Bandai
|
||||
purchase_date: ??
|
||||
purchase_store: ??
|
||||
purchase_venue: ""
|
||||
purchase_location: "Japan"
|
||||
---
|
||||
|
||||
The AMS-129M Zee Zulu.
|
||||
The first Plamo kit of the Gundam series I bought.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/amx-104-r-jarja.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/amx-104-r-jarja.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: AMX-104 R-Jarja
|
||||
page: gundam/hg/r-jarja
|
||||
model_name: AMX-104 R-Jarja
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €22,99
|
||||
series: Mobile Suit Gundam ZZ
|
||||
scale: 1/144
|
||||
number: "5055716"
|
||||
release: "2019"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Geeks Heaven
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The AMX-104 R-Jarja.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/demi-trainer.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/demi-trainer.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MSJ-121 Demi Trainer
|
||||
page: "gundam/hg/demi-trainer"
|
||||
model_name: MSJ-121 Demi Trainer
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: €15,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5063356"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-08-25
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The MSJ-121 Demi Trainer.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/dilanza-guel.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/dilanza-guel.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Guel's Dilanza
|
||||
page: gundam/hg/dilanza-guel
|
||||
model_name: Guel's Dilanza
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €22,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5063341"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-09-06
|
||||
purchase_store: Meijer en Blessing
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
Guel's Dilanza.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/dilanza-lauda.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/dilanza-lauda.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MD-0031 Dilanza
|
||||
page: gundam/hg/dilanza-lauda
|
||||
model_name: MD-0031 Dilanza
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €19,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5063348"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-08-25
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
Lauda's Dilanza.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/duel-blitz-gundam.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/duel-blitz-gundam.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: ZGMF-1027M Duel Blitz Gundam
|
||||
page: gundam/hg/duel-blitz
|
||||
model_name: ZGMF-1027M Duel Blitz Gundam
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €32,99
|
||||
series: Mobile Suit Gundam SEED Freedom
|
||||
scale: 1/144
|
||||
number: "5066700"
|
||||
release: "2024"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-1027M Duel Blitz Gundam.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/fd-19-zowort.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/fd-19-zowort.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: F/D-19 Zowort
|
||||
page: gundam/hg/zowort
|
||||
model_name: F/D-19 Zowort
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €23,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5065020"
|
||||
release: "2023"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-09-11
|
||||
purchase_store: Gameforce
|
||||
purchase_venue: "Winkel"
|
||||
purchase_location: "Eindhoven, Netherlands"
|
||||
---
|
||||
|
||||
The F/D-19 Zowort.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/gundam-lfrith.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/gundam-lfrith.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Gundam Lfrith
|
||||
page: gundam/hg/lfrith
|
||||
model_name: Gundam Lfrith
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €19,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5062944"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-04-28
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The Gundam Lfrith.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/msm-04g-juaggu.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/msm-04g-juaggu.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MSM-04G Juaggu
|
||||
page: "gundam/hg/juaggu"
|
||||
model_name: MSM-04G Juaggu
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €21,50
|
||||
series: Mobile Suit Gundam Unicorn
|
||||
scale: 1/144
|
||||
number: "5060399"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-10-18
|
||||
purchase_store: Domino
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2025"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
---
|
||||
|
||||
The big nose MSM-04G Juaggu.
|
||||
22
portfolio/pages/en/plamo/gundam/hg/nobell-gundam.md
Normal file
22
portfolio/pages/en/plamo/gundam/hg/nobell-gundam.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Nobell Gundam
|
||||
page: "gundam/hg/nobell-gundam"
|
||||
model_name: Nobell Gundam
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €22,99
|
||||
series: Mobile Fighter G Gundam
|
||||
scale: 1/144
|
||||
number: "5055720"
|
||||
release: "2019"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-10-18
|
||||
purchase_store: Geeks Heaven
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The sassy Nobell Gundam.
|
||||
|
||||
HG Future Century GF13-050NSW Nobell Gundam, Neo Sweden Mobile Fighter
|
||||
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Black Knight
|
||||
page: "gundam/hg/black-knight-shi-ve-a"
|
||||
model_name: NOG-M1A1 Black Knight Squad Shi-ve.A
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €29,99
|
||||
series: Mobile Suit Gundam SEED Freedom
|
||||
scale: 1/144
|
||||
number: "5066295"
|
||||
release: "2024"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-09-13
|
||||
purchase_store: Side7
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Alphen aan de Rijn, Netherlands"
|
||||
---
|
||||
|
||||
The NOG-M1A1 Black Knight Squad Shi-ve.A.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/nrx-055-baund-doc.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/nrx-055-baund-doc.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: NRX-055 Baund Doc
|
||||
page: gundam/hg/baund-doc
|
||||
model_name: NRX-055 Baund Doc
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €44,99
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5058822"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-09-13
|
||||
purchase_store: Side7
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Alphen aan de Rijn, Netherlands"
|
||||
---
|
||||
|
||||
The NRX-055 Baund Doc.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/orx-005-gaplant.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/orx-005-gaplant.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: ORX-005 Gaplant
|
||||
page: gundam/hg/gaplant
|
||||
model_name: ORX-005 Gaplant
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €30,99
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5063569"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Geeks Heaven
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The ORX-005 Gaplant.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/rms-106-hi-zack.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/rms-106-hi-zack.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RMS-106 Hi-Zack
|
||||
page: gundam/hg/hi-zack
|
||||
model_name: RMS-106 Hi-Zack
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €12,99
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5057950"
|
||||
release: "2019"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Winkel"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The RMS-106 Hi-Zack.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/rx-110-gabthley.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/rx-110-gabthley.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RX-110 Gabthley
|
||||
page: gundam/hg/rx-110-gabthley
|
||||
model_name: RX-110 Gabthley
|
||||
date: 1990-01-01
|
||||
status: Complete
|
||||
price: €17,99
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5060395"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Geeks Heaven
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The RX-110 Gabthley.
|
||||
20
portfolio/pages/en/plamo/gundam/hg/schwarzette.md
Normal file
20
portfolio/pages/en/plamo/gundam/hg/schwarzette.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Schwarzette
|
||||
page: gundam/hg/schwarzette
|
||||
model_name: Schwarzette
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €26,99
|
||||
series: Mobile Suit Gundam the Witch from Mercury
|
||||
scale: 1/144
|
||||
number: "5065024"
|
||||
release: "2023"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-09-06
|
||||
purchase_store: Meijer en Blessing
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
The Schwarzette.
|
||||
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Zeta Gundam limited
|
||||
page: gundam/hg/zeta-gundam-gundam-base
|
||||
model_name: MSZ-006-3A Zeta Gundam 3A Type
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: ¥?
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: 1/144
|
||||
number: "5060628"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-05-12
|
||||
purchase_store: The Gundam Base
|
||||
purchase_venue: ""
|
||||
purchase_location: "Tokyo, Japan"
|
||||
---
|
||||
|
||||
The MSZ-006-3A Zeta Gundam 3A Type limited from the Gundam Base.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/ams-119-geara-doga.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/ams-119-geara-doga.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: AMS-119 Geara Doga
|
||||
page: "gundam/mg/geara-doga"
|
||||
model_name: AMS-119 Geara Doga
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: €54,99
|
||||
series: "Mobile Suit Gundam: Char's Counterattack"
|
||||
scale: 1/100
|
||||
number: "5055456"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-09-28
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The AMS-119 Geara Doga.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/force-impulse-gundam.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/force-impulse-gundam.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Force Impulse Gundam
|
||||
page: gundam/mg/force-impulse-gundam
|
||||
model_name: ZGMF-X56S Force Impulse Gundam
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €54,99
|
||||
series: Mobile Suit Gundam SEED Destiny
|
||||
scale: 1/100
|
||||
number: "5063040"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-09-28
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-X56S Force Impulse Gundam.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/lunamaria-zaku-warrior.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/lunamaria-zaku-warrior.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: Lunamaria Zaku Warrior
|
||||
page: gundam/mg/lunamaria-zaku-warrior
|
||||
model_name: ZGMF-1000/A1 Gunner Zaku Warrior - Lunamaria Hawke Custom
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €49,99
|
||||
series: Mobile Suit Gundam SEED Destiny
|
||||
scale: 1/100
|
||||
number: "5058184"
|
||||
release: "2019"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2024-12-31
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-1000/A1 Gunner Zaku Warrior.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/ms-06s-zaku-ii.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/ms-06s-zaku-ii.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MS-06S Zaku II
|
||||
page: gundam/mg/zaku-ii
|
||||
model_name: MS-06S Zaku II
|
||||
date: 1990-01-01
|
||||
status: Messing it up with putty
|
||||
price: €44,95
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/100
|
||||
number: "5061581"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-02-07
|
||||
purchase_store: Modelbouw krikke
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The MS-06S Zaku II.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/ms-07b-gouf.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/ms-07b-gouf.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MS-07B Gouf
|
||||
page: gundam/mg/gouf
|
||||
model_name: MS-07B Gouf
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: €44,99
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/100
|
||||
number: "5061585"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-02-07
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The MS-07B Gouf.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/msm-04-acguy.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/msm-04-acguy.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: MSM-04 Acguy
|
||||
page: gundam/mg/acguy
|
||||
model_name: MSM-04 Acguy
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €63,99
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/100
|
||||
number: "5063147"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: "2024-12-31"
|
||||
purchase_store: Super-Hobby.com
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Poland"
|
||||
---
|
||||
|
||||
The MSM-04 Acguy.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/oz-00ms-tallgeese.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/oz-00ms-tallgeese.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: OZ-00MS Tallgeese
|
||||
page: gundam/mg/tallgeese
|
||||
model_name: OZ-00MS Tallgeese
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €44,99
|
||||
series: Mobile Suit Gundam Wing
|
||||
scale: 1/100
|
||||
number: "5062845"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The OZ-00MS Tallgeese.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/rgm-96x-jesta.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/rgm-96x-jesta.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RGM-96X JESTA
|
||||
page: gundam/mg/jesta
|
||||
model_name: RGM-96X JESTA
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €49,99
|
||||
series: Mobile Suit Gundam Unicorn
|
||||
scale: 1/100
|
||||
number: "5063148"
|
||||
release: "2021"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-11-02
|
||||
purchase_store: Mecha Universe
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The MG RGM-96X JESTA.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/rgz-95-rezel.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/rgz-95-rezel.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RGZ-95 ReZEL
|
||||
page: gundam/mg/rezel
|
||||
model_name: RGZ-95 ReZEL
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: €64,99
|
||||
series: Mobile Suit Gundam Unicorn
|
||||
scale: 1/100
|
||||
number: "5063511"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-03-10
|
||||
purchase_store: Geeks Heaven
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The RGZ-95 ReZEL.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/rx-78-2-gundam-base.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/rx-78-2-gundam-base.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RX-78-2
|
||||
page: gundam/mg/rx-78-2-gundam-base
|
||||
model_name: RX-78-2
|
||||
date: 1990-01-01
|
||||
status: Still in box
|
||||
price: ¥?
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/100
|
||||
number: "5058910"
|
||||
release: "2020"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-05-12
|
||||
purchase_store: The Gundam Base
|
||||
purchase_venue: ""
|
||||
purchase_location: "Tokyo, Japan"
|
||||
---
|
||||
|
||||
The RX-78-2 in gundam Base colours.
|
||||
20
portfolio/pages/en/plamo/gundam/mg/rx-78-2-ver-ka.md
Normal file
20
portfolio/pages/en/plamo/gundam/mg/rx-78-2-ver-ka.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: RX-78-2
|
||||
page: gundam/mg/rx-78-2-ver-ka
|
||||
model_name: RX-78-2
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: ¥2767
|
||||
series: Mobile Suit Gundam
|
||||
scale: 1/100
|
||||
number: "0114215"
|
||||
release: "2002"
|
||||
manufacturer: Bandai
|
||||
purchase_date: 2018-10-28
|
||||
purchase_store: Joshin Store
|
||||
purchase_venue: ""
|
||||
purchase_location: "Sakae, Nagoya, Japan"
|
||||
---
|
||||
|
||||
The RX-78-2 version Katoki.
|
||||
20
portfolio/pages/en/plamo/gundam/sd/xvx-016-gundam-aerial.md
Normal file
20
portfolio/pages/en/plamo/gundam/sd/xvx-016-gundam-aerial.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
logosub: Plamo
|
||||
title: XVX-016 Gundam Aerial
|
||||
page: sd-xvx-016-gundam-aerial
|
||||
model_name: XVX-016 Gundam Aerial
|
||||
date: 1990-01-01
|
||||
status: Built
|
||||
price: €9,99
|
||||
series: Mobile Suit Zeta Gundam
|
||||
scale: No scale
|
||||
number: "5063031"
|
||||
release: "2022"
|
||||
manufacturer: Bandai Spirits
|
||||
purchase_date: 2025-01-09
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The SD XVX-016 Gundam Aerial.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Blue Impulse T-2"
|
||||
page: "model-kits/airplanes/blue-impulse-t2"
|
||||
model_name: "Blue Impulse T-2 J.A.S.D.F. Acrobatic Team"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "¥1100"
|
||||
series: ""
|
||||
scale: "1/72"
|
||||
number: "00335"
|
||||
release: "2008"
|
||||
manufacturer: "Hasegawa"
|
||||
purchase_date: "2025-05-20"
|
||||
purchase_store: "Museum shop Tsubasa"
|
||||
purchase_venue: "Airpark JASDF Hamamatsu Air Base Museum"
|
||||
purchase_location: "Hamamatsu, Japan"
|
||||
---
|
||||
|
||||
The Blue Impulse T-2.
|
||||
@ -1,23 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "A6M2 Zero"
|
||||
page: "model-kits/airplanes/military/a6m2-zero-type-21"
|
||||
model_name: "A6M2 Zero Type 21"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€26,20"
|
||||
series: "World War 2"
|
||||
scale: "1/48"
|
||||
number: "82212"
|
||||
release: "2022"
|
||||
manufacturer: "Eduard"
|
||||
purchase_date: "2024-10-19"
|
||||
purchase_store: "Eduard"
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2024"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
---
|
||||
|
||||
The A6M2 Zero Type 21.
|
||||
|
||||
Profipack edition, 20% discount.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Kawasaki Ki-100"
|
||||
page: "model-kits/airplanes/military/kawasaki-ki-100"
|
||||
model_name: "Kawasaki Ki-100 (Tony)"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€8,00"
|
||||
series: ""
|
||||
scale: "1/48"
|
||||
number: "OT2-15-500"
|
||||
release: "1980"
|
||||
manufacturer: "Ōtaki"
|
||||
purchase_date: "2025-04-06"
|
||||
purchase_store: "Mischas Model Outlet"
|
||||
purchase_venue: "Bevrijdende Vleugels modelbouwdag"
|
||||
purchase_location: "Son, Netherlands"
|
||||
---
|
||||
|
||||
The Kawasaki Ki-100.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Spitfire"
|
||||
page: "model-kits/airplanes/military/spitfire-mk-ix"
|
||||
model_name: "Spitfire mark IX"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€30,00"
|
||||
series: ""
|
||||
scale: "1/48"
|
||||
number: "2804"
|
||||
release: "2024"
|
||||
manufacturer: "Italeri"
|
||||
purchase_date: "2025-03-28"
|
||||
purchase_store: "Bevrijdende Vleugels museumwinkeltje"
|
||||
purchase_venue: "Bevrijdende Vleugels Museum"
|
||||
purchase_location: "Son, Netherlands"
|
||||
---
|
||||
|
||||
The Spitfire mark IX.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Curtiss R3C-0"
|
||||
page: "model-kits/airplanes/porco-rosso-curtiss-r3c-0"
|
||||
model_name: "Donald Curtis' Curtiss R3C-0 Fighter Seaplane"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "¥3850"
|
||||
series: "Ghibli, Porco Rosso"
|
||||
scale: "1/48"
|
||||
number: "FG2"
|
||||
release: "2006"
|
||||
manufacturer: "Finemolds"
|
||||
purchase_date: "2025-05-17"
|
||||
purchase_store: "Kanariya"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Shizuoka, Japan"
|
||||
---
|
||||
|
||||
A beautiful kit of Donald Curtis' Curtiss R3C-0 Fighter Seaplane.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Bulma's Variable No. 19 Motorcycle"
|
||||
page: "model-kits/dragonball/bulmas-variable-no19-motorcycle"
|
||||
model_name: "Bulma's Variable No. 19 Motorcycle"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€64,99"
|
||||
series: "Dragonball"
|
||||
scale: "No scale"
|
||||
number: "5055335"
|
||||
release: "2018"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-11-01"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
This is Bulma's Variable No. 19 Motorcycle.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Lunch's One-wheel motorcycle"
|
||||
page: "model-kits/dragonball/lunch-one-wheel-motorcycle"
|
||||
model_name: "Vol 3. Lunch's One-wheel motorcycle"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€10,99"
|
||||
series: "Dragonball"
|
||||
scale: "No scale"
|
||||
number: "0216394"
|
||||
release: "2017"
|
||||
manufacturer: "Bandai"
|
||||
purchase_date: "2025-10-26"
|
||||
purchase_store: "TF Robots"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Bladel, Netherlands"
|
||||
---
|
||||
|
||||
This is Lunch's One-wheel motorcycle.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Son Gokou's Jet Buggy"
|
||||
page: "model-kits/dragonball/son-gokou-jet-buggy"
|
||||
model_name: "Vol 4. Son Gokou's Jet Buggy"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€10,99"
|
||||
series: "Dragonball"
|
||||
scale: "No scale"
|
||||
number: "0216401"
|
||||
release: "2017"
|
||||
manufacturer: "Bandai"
|
||||
purchase_date: "2025-10-26"
|
||||
purchase_store: "TF Robots"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Bladel, Netherlands"
|
||||
---
|
||||
|
||||
This is Son Gokou's Jet Buggy.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Lunamaria Hawke"
|
||||
page: "model-kits/figures/lunamaria-hawke"
|
||||
model_name: "Lunamaria Hawke"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€44,99"
|
||||
series: "Mobile Suit Gundam SEED Destiny"
|
||||
scale: "1/12"
|
||||
number: "5066703"
|
||||
release: "2024"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-11-02"
|
||||
purchase_store: "Mecha Universe"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Barcelona, Spain"
|
||||
---
|
||||
|
||||
A figure of Lunamaria Hawke.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Miorine Rembran"
|
||||
page: "model-kits/figures/miorine-rembran"
|
||||
model_name: "Miorine Rembran"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€39,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/12"
|
||||
number: "5064009"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-06"
|
||||
purchase_store: "Meijer en Blessing"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
A figure of Miorine Rembran.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Suletta Mercury"
|
||||
page: "model-kits/figures/suletta-mercury"
|
||||
model_name: "Suletta Mercury"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€42,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/12"
|
||||
number: "5064004"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-06"
|
||||
purchase_store: "Meijer en Blessing"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
A figure of Suletta Mercury.
|
||||
@ -1,23 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "GAT-X370 Raider Gundam"
|
||||
page: "model-kits/gundam/fm/raider-gundam"
|
||||
model_name: "GAT-X370 Raider Gundam"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "€0,00"
|
||||
series: "Mobile Suit Gundam SEED"
|
||||
scale: "1/100"
|
||||
number: "5063349"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-08-14"
|
||||
purchase_store: ""
|
||||
purchase_venue: ""
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The GAT-X370 Raider Gundam.
|
||||
|
||||
This was a gift from my friends!
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "XVX-016 Gundam Aerial"
|
||||
page: "model-kits/gundam/fm/aerial"
|
||||
model_name: "XVX-016 Gundam Aerial"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€45,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/100"
|
||||
number: "5065090"
|
||||
release: "2023"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-04-28"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The XVX-016 Gundam Aerial.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "AGX-04 Gerbera Tetra"
|
||||
page: "model-kits/gundam/hg/gerbera-tetra"
|
||||
model_name: "AGX-04 Gerbera Tetra"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€29,92"
|
||||
series: "Mobile Suit Gundam 0083: Stardust Memory"
|
||||
scale: "1/144"
|
||||
number: "5055886"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-11-27"
|
||||
purchase_store: "La Cité des Nuages"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Waterloo, Belgie"
|
||||
---
|
||||
|
||||
The AGX-04 Gerbera Tetra.
|
||||
@ -1,22 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "AMS-129M Zee Zulu"
|
||||
page: "model-kits/gundam/hg/zee-zulu"
|
||||
model_name: "AMS-129M Zee Zulu"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "¥?"
|
||||
series: "Mobile Suit Gundam Unicorn"
|
||||
scale: "1/144"
|
||||
number: "0171631"
|
||||
release: "2011"
|
||||
manufacturer: "Bandai"
|
||||
purchase_date: "??"
|
||||
purchase_store: "??"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Japan"
|
||||
---
|
||||
|
||||
The AMS-129M Zee Zulu.
|
||||
The first Plamo kit of the Gundam series I bought.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "AMX-104 R-Jarja"
|
||||
page: "model-kits/gundam/hg/r-jarja"
|
||||
model_name: "AMX-104 R-Jarja"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€22,99"
|
||||
series: "Mobile Suit Gundam ZZ"
|
||||
scale: "1/144"
|
||||
number: "5055716"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The AMX-104 R-Jarja.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MSJ-121 Demi Trainer"
|
||||
page: "model-kits/gundam/hg/demi-trainer"
|
||||
model_name: "MSJ-121 Demi Trainer"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "€15,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5063356"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-08-25"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The MSJ-121 Demi Trainer.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Guel's Dilanza"
|
||||
page: "model-kits/gundam/hg/dilanza-guel"
|
||||
model_name: "Guel's Dilanza"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€22,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5063341"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-06"
|
||||
purchase_store: "Meijer en Blessing"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
Guel's Dilanza.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MD-0031 Dilanza"
|
||||
page: "model-kits/gundam/hg/dilanza-lauda"
|
||||
model_name: "MD-0031 Dilanza"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€19,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5063348"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-08-25"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
Lauda's Dilanza.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "ZGMF-1027M Duel Blitz Gundam"
|
||||
page: "model-kits/gundam/hg/duel-blitz"
|
||||
model_name: "ZGMF-1027M Duel Blitz Gundam"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€32,99"
|
||||
series: "Mobile Suit Gundam SEED Freedom"
|
||||
scale: "1/144"
|
||||
number: "5066700"
|
||||
release: "2024"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-1027M Duel Blitz Gundam.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "F/D-19 Zowort"
|
||||
page: "model-kits/gundam/hg/zowort"
|
||||
model_name: "F/D-19 Zowort"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€23,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5065020"
|
||||
release: "2023"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-09-11"
|
||||
purchase_store: "Gameforce"
|
||||
purchase_venue: "Winkel"
|
||||
purchase_location: "Eindhoven, Netherlands"
|
||||
---
|
||||
|
||||
The F/D-19 Zowort.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Gundam Lfrith"
|
||||
page: "model-kits/gundam/hg/lfrith"
|
||||
model_name: "Gundam Lfrith"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€19,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5062944"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-04-28"
|
||||
purchase_store: Player2 Gamestore
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The Gundam Lfrith.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MSM-04G Juaggu"
|
||||
page: "model-kits/gundam/hg/juaggu"
|
||||
model_name: "MSM-04G Juaggu"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€21,50"
|
||||
series: "Mobile Suit Gundam Unicorn"
|
||||
scale: "1/144"
|
||||
number: "5060399"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-10-18"
|
||||
purchase_store: "Domino"
|
||||
purchase_venue: "SMC (Scale Model Challenge) 2025"
|
||||
purchase_location: "Veldhoven, Netherlands"
|
||||
---
|
||||
|
||||
The big nose MSM-04G Juaggu.
|
||||
@ -1,23 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Nobell Gundam"
|
||||
page: "model-kits/gundam/hg/nobell-gundam"
|
||||
model_name: "Nobell Gundam"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€22,99"
|
||||
series: "Mobile Fighter G Gundam"
|
||||
scale: "1/144"
|
||||
number: "5055720"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-10-18"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The sassy Nobell Gundam.
|
||||
|
||||
HG Future Century GF13-050NSW Nobell Gundam, Neo Sweden Mobile Fighter
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Black Knight"
|
||||
page: "model-kits/gundam/hg/black-knight-shi-ve-a"
|
||||
model_name: "NOG-M1A1 Black Knight Squad Shi-ve.A"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€29,99"
|
||||
series: "Mobile Suit Gundam SEED Freedom"
|
||||
scale: "1/144"
|
||||
number: "5066295"
|
||||
release: "2024"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-13"
|
||||
purchase_store: "Side7"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Alphen aan de Rijn, Netherlands"
|
||||
---
|
||||
|
||||
The NOG-M1A1 Black Knight Squad Shi-ve.A.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "NRX-055 Baund Doc"
|
||||
page: "model-kits/gundam/hg/baund-doc"
|
||||
model_name: "NRX-055 Baund Doc"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€44,99"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
number: "5058822"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-13"
|
||||
purchase_store: "Side7"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Alphen aan de Rijn, Netherlands"
|
||||
---
|
||||
|
||||
The NRX-055 Baund Doc.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "ORX-005 Gaplant"
|
||||
page: "model-kits/gundam/hg/gaplant"
|
||||
model_name: "ORX-005 Gaplant"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€30,99"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
number: "5063569"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The ORX-005 Gaplant.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RMS-106 Hi-Zack"
|
||||
page: "model-kits/gundam/hg/hi-zack"
|
||||
model_name: "RMS-106 Hi-Zack"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€12,99"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
number: "5057950"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Winkel"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The RMS-106 Hi-Zack.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RX-110 Gabthley"
|
||||
page: "model-kits/gundam/hg/rx-110-gabthley"
|
||||
model_name: "RX-110 Gabthley"
|
||||
date: "1990-01-01"
|
||||
status: "Complete"
|
||||
price: "€17,99"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
number: "5060395"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The RX-110 Gabthley.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Schwarzette"
|
||||
page: "model-kits/gundam/hg/schwarzette"
|
||||
model_name: "Schwarzette"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€26,99"
|
||||
series: "Mobile Suit Gundam the Witch from Mercury"
|
||||
scale: "1/144"
|
||||
number: "5065024"
|
||||
release: "2023"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-06"
|
||||
purchase_store: "Meijer en Blessing"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Rotterdam, Netherlands"
|
||||
---
|
||||
|
||||
The Schwarzette.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Zeta Gundam limited"
|
||||
page: "model-kits/gundam/hg/zeta-gundam-gundam-base"
|
||||
model_name: "MSZ-006-3A Zeta Gundam 3A Type"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "¥?"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "1/144"
|
||||
number: "5060628"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-05-12"
|
||||
purchase_store: "The Gundam Base"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Tokyo, Japan"
|
||||
---
|
||||
|
||||
The MSZ-006-3A Zeta Gundam 3A Type limited from the Gundam Base.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "AMS-119 Geara Doga"
|
||||
page: "model-kits/gundam/mg/geara-doga"
|
||||
model_name: "AMS-119 Geara Doga"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "€54,99"
|
||||
series: "Mobile Suit Gundam: Char's Counterattack"
|
||||
scale: "1/100"
|
||||
number: "5055456"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-09-28"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The AMS-119 Geara Doga.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Force Impulse Gundam"
|
||||
page: "model-kits/gundam/mg/force-impulse-gundam"
|
||||
model_name: "ZGMF-X56S Force Impulse Gundam"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€54,99"
|
||||
series: "Mobile Suit Gundam SEED Destiny"
|
||||
scale: "1/100"
|
||||
number: "5063040"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-09-28"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-X56S Force Impulse Gundam.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Lunamaria Zaku Warrior"
|
||||
page: "model-kits/gundam/mg/lunamaria-zaku-warrior"
|
||||
model_name: "ZGMF-1000/A1 Gunner Zaku Warrior - Lunamaria Hawke Custom"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€49,99"
|
||||
series: "Mobile Suit Gundam SEED Destiny"
|
||||
scale: "1/100"
|
||||
number: "5058184"
|
||||
release: "2019"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-12-31"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The ZGMF-1000/A1 Gunner Zaku Warrior.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MS-06S Zaku II"
|
||||
page: "model-kits/gundam/mg/zaku-ii"
|
||||
model_name: "MS-06S Zaku II"
|
||||
date: "1990-01-01"
|
||||
status: "Messing it up with putty"
|
||||
price: "€44,95"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/100"
|
||||
number: "5061581"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-02-07"
|
||||
purchase_store: "Modelbouw krikke"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The MS-06S Zaku II.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MS-07B Gouf"
|
||||
page: "model-kits/gundam/mg/gouf"
|
||||
model_name: "MS-07B Gouf"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "€44,99"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/100"
|
||||
number: "5061585"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-02-07"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The MS-07B Gouf.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "MSM-04 Acguy"
|
||||
page: "model-kits/gundam/mg/acguy"
|
||||
model_name: "MSM-04 Acguy"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€63,99"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/100"
|
||||
number: "5063147"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-12-31"
|
||||
purchase_store: "Super-Hobby.com"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Poland"
|
||||
---
|
||||
|
||||
The MSM-04 Acguy.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "OZ-00MS Tallgeese"
|
||||
page: "model-kits/gundam/mg/tallgeese"
|
||||
model_name: "OZ-00MS Tallgeese"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€44,99"
|
||||
series: "Mobile Suit Gundam Wing"
|
||||
scale: "1/100"
|
||||
number: "5062845"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The OZ-00MS Tallgeese.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RGM-96X JESTA"
|
||||
page: "model-kits/gundam/mg/jesta"
|
||||
model_name: "RGM-96X JESTA"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€49,99"
|
||||
series: "Mobile Suit Gundam Unicorn"
|
||||
scale: "1/100"
|
||||
number: "5063148"
|
||||
release: "2021"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-11-02"
|
||||
purchase_store: "Mecha Universe"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The MG RGM-96X JESTA.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RGZ-95 ReZEL"
|
||||
page: "model-kits/gundam/mg/rezel"
|
||||
model_name: "RGZ-95 ReZEL"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€64,99"
|
||||
series: "Mobile Suit Gundam Unicorn"
|
||||
scale: "1/100"
|
||||
number: "5063511"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The RGZ-95 ReZEL.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RX-78-2"
|
||||
page: "model-kits/gundam/mg/rx-78-2-gundam-base"
|
||||
model_name: "RX-78-2"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "¥?"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/100"
|
||||
number: "5058910"
|
||||
release: "2020"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-05-12"
|
||||
purchase_store: "The Gundam Base"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Tokyo, Japan"
|
||||
---
|
||||
|
||||
The RX-78-2 in gundam Base colours.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "RX-78-2"
|
||||
page: "model-kits/gundam/mg/rx-78-2-ver-ka"
|
||||
model_name: "RX-78-2"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "¥2767"
|
||||
series: "Mobile Suit Gundam"
|
||||
scale: "1/100"
|
||||
number: "0114215"
|
||||
release: "2002"
|
||||
manufacturer: "Bandai"
|
||||
purchase_date: "2018-10-28"
|
||||
purchase_store: "Joshin Store"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Sakae, Nagoya, Japan"
|
||||
---
|
||||
|
||||
The RX-78-2 version Katoki.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "SD Gundam Aerial"
|
||||
page: "model-kits/gundam/sd/aerial"
|
||||
model_name: "XVX-016 Gundam Aerial"
|
||||
date: "1990-01-01"
|
||||
status: "Built"
|
||||
price: "€9,99"
|
||||
series: "Mobile Suit Zeta Gundam"
|
||||
scale: "No scale"
|
||||
number: "5063031"
|
||||
release: "2022"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-01-09"
|
||||
purchase_store: "Player2 Gamestore"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Uden, Netherlands"
|
||||
---
|
||||
|
||||
The SD XVX-016 Gundam Aerial.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Raccoon"
|
||||
page: "model-kits/maschinen-krieger/raccoon"
|
||||
model_name: "Raccoon S.A.F.S. type R"
|
||||
date: "1990-01-01"
|
||||
status: "Building"
|
||||
price: "¥5000"
|
||||
series: "Maschinen Krieger"
|
||||
scale: "1/20"
|
||||
number: "MK-069"
|
||||
release: "2021"
|
||||
manufacturer: "Wave Corporation"
|
||||
purchase_date: "2025-05-24"
|
||||
purchase_store: "Mandarake"
|
||||
purchase_venue: ""
|
||||
purchase_location: "Sakae, Nagoya, Japan"
|
||||
---
|
||||
|
||||
A figure of the Raccoon S.A.F.S. type R Maschinen Krieger.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Acerby Type-D"
|
||||
page: "model-kits/other-mecha/30-minute-missions/acerby-type-d"
|
||||
model_name: "EXM-H15D Acerby Type-D"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€22,99"
|
||||
series: "30 Minute Missions"
|
||||
scale: "1/12"
|
||||
number: "5067416"
|
||||
release: "2024"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2025-03-10"
|
||||
purchase_store: "Geeks Heaven"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: ""
|
||||
---
|
||||
|
||||
The Acerby Type-D.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Aaronrhino"
|
||||
page: "model-kits/other-mecha/aaronrhino"
|
||||
model_name: "Aaronrhino Grady Exclusive"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€36,90"
|
||||
series: "Kyōkai Senki, Amaim Warrior at the Borderline"
|
||||
scale: "1/72"
|
||||
number: "5066290"
|
||||
release: "2024"
|
||||
manufacturer: "Bandai Spirits"
|
||||
purchase_date: "2024-12-31"
|
||||
purchase_store: "Super-Hobby.com"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Poland"
|
||||
---
|
||||
|
||||
The Aaronrhino Grady Exclusive.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Riesen-Panzer III"
|
||||
page: "model-kits/other-mecha/riesen-panzer-3"
|
||||
model_name: "German Rs.Pz III Ausf.B"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "¥4400"
|
||||
series: "Kampf Riesen Mars 1941/1945"
|
||||
scale: "1/35"
|
||||
number: "MIM-015-DY"
|
||||
release: "2022"
|
||||
manufacturer: "Cavico"
|
||||
purchase_date: "2025-05-13"
|
||||
purchase_store: Small Worlds Museum store
|
||||
purchase_venue: "Small Worlds Miniature Museum"
|
||||
purchase_location: "Ariake district, Kōtō ward, Tokyo, Japan"
|
||||
---
|
||||
|
||||
The Riesen-Panzer III.
|
||||
@ -1,21 +0,0 @@
|
||||
---
|
||||
logosub: "Plamo"
|
||||
language: "en"
|
||||
title: "Arcee"
|
||||
page: "model-kits/other-mecha/transformers/arcee"
|
||||
model_name: "Arcee"
|
||||
date: "1990-01-01"
|
||||
status: "Still in box"
|
||||
price: "€99,99"
|
||||
series: "Transformers"
|
||||
scale: "No scale"
|
||||
number: "4897054514319"
|
||||
release: "2023"
|
||||
manufacturer: "Flame Toys"
|
||||
purchase_date: "2025-10-21"
|
||||
purchase_store: "TF Robots"
|
||||
purchase_venue: "Internet"
|
||||
purchase_location: "Bladel, Netherlands"
|
||||
---
|
||||
|
||||
Arcee, a Transformers model.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user