Prompts Grid
PROMPTSGRID
Published: May 24, 2026
Artemis II Mission Journal Diorama

Artemis II Mission Journal Diorama

A complex, structured prompt using Python-like class definitions to generate a hyper-detailed diorama visualization of an astronaut's mission-planning journal.

prompt.txt
1do this for Artemis II mission: class Artemis_Journal_Diorama:
2 def __init__(self, subject="Artemis II Mission"):
3 # AI infers the correct materials, textures, and desk environment
4 self.stage = "AI‑inferred astronaut’s mission‑planning journal lying open on an AI‑inferred technical workstation."
5 self.lighting = "AI‑inferred mixed illumination: task‑lamp warmth + cool instrument‑panel spill."
6
7 def semantic_2D_to_3D_growth(self):
8 # AI infers what '2D mission sketches' look like for this subject
9 page_texture = (
10 f"AI‑inferred handwritten notes, trajectory arcs, module schematics, "
11 f"and mission annotations related to {self.subject}, rendered as precise 2D graphite diagrams."
12 )
13
14 # AI infers what physical 3D elements should emerge from those sketches
15 diorama_pop = (
16 f"2D mission diagrams transition into physical 3D miniatures: "
17 f"AI‑inferred spacecraft components, crew figures, lunar geometry, "
18 f"and mission‑specific hardware rising seamlessly from the paper."
19 )
20
21 return [page_texture, diorama_pop]
22
23 def scatter_ephemera(self):
24 # AI infers mission‑relevant desk objects without hard‑coding categories
25 return infer_aerospace_ephemera(self.subject)
26 # Examples (AI‑inferred, not fixed): mission patches, navigation tools,
27 # micro‑scale lunar models, printed telemetry, procedural checklists,
28 # archival headlines, engineering pencils, etc.
29
30render(Artemis_Journal_Diorama())

Explore Similar Prompts