<!-- Example File -->
<!-- All files must have "AstroObjectEntry" as their root element, the xmlns:xsi=... and xsi:noNamespaceSchemaLocation=... is optional but heavily encouraged to reduce errors -->
<AstroObjectEntry xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Outer-Wilds-New-Horizons/new-horizons/main/NewHorizons/Schemas/shiplog_schema.xsd">
    <ID>Burning Bombardier</ID> <!-- The ID of the planet this xml file is for -->

    <Entry> <!-- An Entry For This Planet -->
        <ID>VOLCANO</ID> <!-- The ID of this entry -->
        <Name>Burning Bombardier</Name> <!-- The name to show for this entry both on the card and in map mode -->
        <Curiosity>VOLCANO_MAIN</Curiosity> <!-- The curiosity this entry belongs to (optional) in this case, it belongs to itself -->
        <IsCuriosity/> <!-- Marks this entry as a curiosity, makes it bigger in rumor mode and allows custom colors -->
		<IgnoreMoreToExplore/>
		
		<RumorFact>
			<ID>VOLCANO_MAIN_R</ID>
			<RumorName>Volcano Moon?</RumorName>
			<Text>Orbiting the crimson gas giant is a volcanic moon. Could there perhaps be something on it?</Text>
		</RumorFact>
		
        <ExploreFact> <!-- An explore fact that belongs to this entry -->
            <ID>VOLCANO_MAIN_E</ID> <!-- The ID of this fact -->
            <Text>Burning Bombardier is Velvet Vortex's volcanic moon.</Text> <!-- The Text to display for this fact, notice how you can use color just like in dialogue -->
        </ExploreFact>

		<ExploreFact>
			<ID>VOLCANO_MAIN_HAZARD</ID>
			<Text>If you reach a low enough elevation, you will start taking heat damage.</Text>
		</ExploreFact>

		<Entry>
			<ID>VOLCANO_BASE</ID>
			<Name>Burning Bombardier Base</Name>
			<Curiosity>VOLCANO_MAIN</Curiosity>

			<RumorFact>
				<ID>VOLCANO_BASE_R</ID>
				<RumorName>Base on Burning Bombardier?</RumorName>
				<SourceID>CRIMSON_TRAVELER</SourceID>
				<Text>Pine said there was a base somewhere on Velvet Vortex's Moon.</Text>
			</RumorFact>
			
			<ExploreFact>
				<ID>VOLCANO_BASE_E</ID>
				<Text>There is a base wedged in between two volcanoes on Burning Bombardier.</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_STRAT_TEXT1</ID>
				<Text>The Strangers' Inhabitants founded a Ministry of Defense in response to "anomalies" like one that just happened.</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_STRAT_TEXT2</ID>
				<Text>The Inhabitants claimed they have made several nuclear warheads for "Operation Phoenix".</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_STRAT_TEXT3</ID>
				<Text>An anomaly from Dark Bramble caused panic within the system, several inhabitants fearing another loss of their homeworld.</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_CLOCK_TEXT1</ID>
				<Text>A clock in the military base shows every 11 minutes with a symbol.</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_NOVA_TEXT1</ID>
				<Text>The text here says the desert planet will lose its atmosphere at "star time".</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_LAB_NOVA_TEXT2</ID>
				<Text>This text here mentions a "seal", and it will be burned by lava at "ring time".</Text>
			</ExploreFact>
		</Entry>

		<Entry>
			<ID>VOLCANO_SEAL</ID>
			<Name>Burning Bombardier Seal</Name>
			<Curiosity>VOLCANO_MAIN</Curiosity>
			<AltPhotoCondition>VOLCANO_SEAL_INSERT</AltPhotoCondition>

			<RumorFact>
				<ID>VOLCANO_SEAL_R</ID>
				<RumorName>Volcano Moon Socket?</RumorName>
				<SourceID>RING_STRUCTURE</SourceID>
				<Text>On the Ringed Giant, I saw an abandoned structure. On one of the slots it had a picture of a VOLCANO gas giant.</Text>
			</RumorFact>

			<ExploreFact>
				<ID>VOLCANO_SEAL_E</ID>
				<Text>I found a square piece of metal in one of the volcanoes. It looks like it fits in the structure...</Text>
			</ExploreFact>

			<ExploreFact>
				<ID>VOLCANO_SEAL_INSERT</ID>
				<Text>When I put the seal in the structure, it gave me a symbol.</Text>
			</ExploreFact>
		</Entry>
    </Entry>
</AstroObjectEntry>