Name the Star Wars worlds (2025)

Quiz Lab

Quiz Lab

Movies

Star Wars

Type in answers that appear in a list

Type in answers that appear in a list

Classic

Can you name the Star Wars planets and moons?

By Pandapants

7 Plays7 Plays

7 Plays

Comments

Give Quiz Kudos

Give Quiz Kudos

hide this ad

")$objective.click(() => {window.onClickObjective(reckoningQuestObjective.quest_number, reckoningQuestObjective.objective_number, reckoningQuestObjective.quest_id, reckoningQuestObjective.objective_id, $objective);});if (!window.mweb) {$j('#snark').hide();$objective.insertAfter($j('#gameOverMsg'));} else if (is_flagship_app_view) {$j('#snark').html();$objective.appendTo($j('#snark'));} else {$objective.appendTo($j('#reckoning .stats-wrapper'));}} else if (showSnark) {snark = getSnark(userPct);var attachSnarkModalListener = false;if (snark !== '') {snark = ""+snark+"";if (!window.mweb) {if (false) {attachSnarkModalListener = true;snark += "";} else {snark += "";}}} else {$j('#snark').hide();}$j('#snark').html(snark);if(attachSnarkModalListener){ $j('#hide-snark-open-confirmation-modal').on('click', function () { var modalArgs = {title: 'Hide These Messages?',message: 'Are you sure you want to hide post-quiz messages?', onYes: function(remodal){ $j.ajax({ type: "GET", url: "/ajax/user_settings.php", data: {s: 0}, success: function(response) { if (response.success) { $j('#snark').hide(); remodal.close(); } else { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }, error: function(response) { if (response.responseJSON.message) { remodal.$modal.find('#confirmation-error').html(response.responseJSON.message); remodal.$modal.find('#confirmation-error').show(); } else { remodal.$modal.find('#confirmation-error').html('There was an error saving your preferences. Please contact feedback if you continue to see this issue.'); remodal.$modal.find('#confirmation-error').show(); } } }); } }; SporcleLib.Modal._openConfirmationModal(modalArgs); }); }} else {$j('#snark').hide();}// Update get reckoning with playlist infovar playlistData;if (mweb) {playlistData = typeof window.playlist === 'object' && window.playlist.hasOwnProperty('games') ? window.playlist : null;} else {playlistData = window.Sporcle.gameData.playlist ? window.Sporcle.gameData.playlist.vm.data : null;}if (playlistData) {playlistReckoning(playlistData, userPct, false && !stopwatch);}$j('#playGameBar').addClass('reckoning');$j('#reckonBox').show();if (mweb) {/* mobile games only */$j('#reckoning-numright').html(numRight);$j('#reckoning-time').html(displayTime(timerSecs));if (stopwatch) {$j('#reckoning-time-title').text("Stopwatch");$j('#reckoning-time, #reckoning-score').addClass('timePast');}var checkToOpenFlorinPlayGoalModal = () => {// Do we want to display the mission modal here?return;}if (is_flagship_app_view && typeof showdownActive !== 'undefined' && showdownActive) {openFlagshipPostGameModal(userPct);}if (!is_flagship_app_view) {checkToOpenFlorinPlayGoalModal();}}$j('#playGameBox').empty().hide();$j('#postGameBox').show();}function openFlagshipPostGameModal(userPct) {let animations = window.animations;let hapticType = 'success';let completeMsg;let animConfig = {animationData : animations.checkmark,loop : true,playSegments : [[0, 30], [31, 75]]};if (userPct == 1) {animConfig.animationData = animations.perfectScore;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Perfect Score!";} else if (timerSecs == 0) {hapticType = 'error';animConfig.animationData = animations.outOfTime;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "Out of Time!";} else if (_spks && !didGiveUp) {hapticType = 'error';animConfig.animationData = animations.bomb;animConfig.playSegments = [[0, 14], [15, 75]];completeMsg = "You Hit a Mine!";}window.SporcleLib.Modal.openModalFromTpl($j('#post-game-modal-tpl').html(), {show_loading : false,dismissible : false,onInit : (modal) => {let $modal = modal.$modal;$modal.attr('id', 'postGameModal');postGameAnim = lottie.loadAnimation({container : $modal.find('#postGameIcon')[0],animationData : animConfig.animationData,loop : animConfig.loop,autoplay : false});$modal.find('.modal-close').on('click', () => {window.continuePostQuiz();});$modal.find('#completeMsg').html(completeMsg);$modal.find('#postPct').html(roundPercentScore(userPct));$modal.find('#postCorrect').html($j('#reckoning-score').text());if (snark) {$modal.find('#snark').html(snark);} else {$modal.find('#snark').hide();}setTimeout(() => {postGameAnim.playSegments(animConfig.playSegments, true);}, 150);},onClose : () => {// Need this delay because if we open a new modal right as the close animation finishes,// Then the modal events get confused and the "onOpen" callback never gets calledsetTimeout(() => {checkToOpenFlorinPlayGoalModal();}, 50);}});}function toggleshow() {showans = !showans;}function roundPercentScore(pctScore) {return _.round(100 * pctScore);}function updateBadge(userPct) {var earned = false;if (quizBadge && userPct > 0) { if (quizBadge.criteria && quizBadge.criteria.length) { var requiredCount = quizBadge.criteria.length; var earnedCount = 0; //Loop through possible badge criteria to see if we earned them quizBadge.criteria.forEach(function (criterion) { var comparison = parseInt(criterion.compare); if(criterion.name === 'percent'){ if ((comparison === 0 && userPct === parseFloat(criterion.value)) || //'0' means percent needs to equal (comparison === 1 && userPct > parseFloat(criterion.value)) || //'1' means percent needs to be greater than (comparison === -1 && userPct < parseFloat(criterion.value)) //'-1' means percent needs to be less than (at the time of writing, no badge exists like this) ) { earnedCount++; } } else if (criterion.name === 'month'){ var d = new Date(); //getMonth() starts at 0 if((d.getMonth() + 1 == criterion.value && comparison === 0) || (d.getMonth() + 1 > criterion.value && comparison === 1) || (d.getMonth() + 1 < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day'){ var d = new Date(); if((d.getDate() == criterion.value && comparison === 0) || (d.getDate() > criterion.value && comparison === 1) || (d.getDate() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'day_of_the_week'){ var d = new Date(); if((d.getDay() == criterion.value && comparison === 0) || (d.getDay() > criterion.value && comparison === 1) || (d.getDay() < criterion.value && comparison === -1) ){ earnedCount++; } } else if (criterion.name === 'avg_percent' && typeof averageScore !== 'undefined') {var roundedUserPct = _.round(userPct, 2); //matches backend precision in badge trackervar roundedAvgPct = _.round(averageScore, 2);if((roundedUserPct == roundedAvgPct && comparison === 0) || (roundedUserPct > roundedAvgPct && comparison === 1) || (roundedUserPct < roundedAvgPct && comparison === -1) ){ earnedCount++; } }}); earned = earnedCount == requiredCount;} else {earned = true;}} if (earned) {quizBadge.condition_earned = true;quizBadge.achieved_count++; var spliceIndex = null;_(quizBadge.remaining_conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {spliceIndex = index;}});_(quizBadge.conditions).each(function(condition, index) {if (quizBadge.condition_id == condition.condition_id) {condition.earned = true;}});if (spliceIndex !== null) {quizBadge.remaining_conditions.splice(spliceIndex, 1); quizBadge.condition_earned_date = (new Date()).toLocaleDateString(undefined, { year: 'numeric', month: 'long', day: 'numeric' });; }if (quizBadge.remaining_conditions.length === 0 ) {if (quizBadge.badge_earned && quizBadge.levelable) {quizBadge.achieved_count = 0;quizBadge.level++;var currDate = new Date();quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();} else {quizBadge.badge_earned = true;var currDate = new Date();quizBadge.earned_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();if (quizBadge.levelable) {quizBadge.level = 1;quizBadge.last_level_date = window.SporcleLib.getMonthString(currDate.getMonth()) + ' ' + currDate.getDate() + ', ' + currDate.getFullYear();quizBadge.achieved_count = 0;}}}if (badgeTooltip) {badgeTooltip.deactivate();}if (badgeTooltipRightRail) {badgeTooltipRightRail.deactivate();}var template = _.template($j('#quiz-badge-template').html());if (window.mweb) {$j('#main-wrapper .quiz-badge').replaceWith($j(template(quizBadge)));} else {quizBadge.tooltip_trigger_id = 'quiz-badge-art';$j('#main-quiz-content .quiz-badge').replaceWith($j(template(quizBadge)));quizBadge.tooltip_trigger_id = 'quiz-badge-art-right-rail';$j('#right-rail .quiz-badge').replaceWith($j(template(quizBadge)));if (!quizBadge.badge_earned) {if (window.setupUnearnedBadgeTooltip) {window.setupUnearnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupUnearnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);} else {var conditionsTemp = _.template($j('#badge-conditions-template').html());var tooltipHtml = $j(conditionsTemp(quizBadge));const badgeTooltipOptions = { //this should match /sporcle-ui/tooltips/functionalTooltipstarget : true,tipJoint : 'bottom middle',showOn : 'mouseover',hideTriggers : ['target','tip'],stemLength : 8,stemBase : 12,hideOn : 'mouseout',removeElementsOnHide : true,background : 'white',borderColor : '#d8d8d8',borderWidth : 1,shadowOffset : [3,3],shadowBlur : 10,showEffect : 'slide',showEffectDuration : 0.1,hideEffectDuration : 0.3,className : 'badge-tooltip',shadowColor : 'rgba(0,0,0,0.25)'};badgeTooltip = new Opentip('#quiz-badge-art', tooltipHtml.html(), badgeTooltipOptions);badgeTooltipRightRail = new Opentip('#quiz-badge-art-right-rail', tooltipHtml.html(), badgeTooltipOptions);}} else {if (window.setupEarnedBadgeTooltip) {window.setupEarnedBadgeTooltip($j('#quiz-badge-art'), quizBadge);window.setupEarnedBadgeTooltip($j('#quiz-badge-art-right-rail'), quizBadge);}}}}}function showHintTooltip(x, y, hint) {$hint = $j('#hintTooltip');if ($hint.length == 0) {$hint = $j('

' +'

' +'

' +'

' +'

' +'

').appendTo($j('body'));}if (hint) {var $afterContainer = $hint.find('.afterContainer');var $after = $hint.find('.after');// Set to max width before resize$afterContainer.css({width: '120px'});$hint.show();// Set tooltip text to hint$after.html(hint);// Get width of tooltip with textvar width = Math.ceil($after[0].offsetWidth) + 1;var leftShift = 0;if (mweb) {// Make sure the tooltip doesn't go off either side of the screenvar leftBound = 51;var rightBound = $j('body').width() - 71;var buf = 11;// Shift based on width of textvar shiftLimit = Math.max(width/2 - 20, 0);if (x < leftBound) {// Too close to left edge of screenleftShift = -shiftLimit;x = Math.max(x, buf);} else if (x > rightBound) {// Too close to right edge of screenleftShift = shiftLimit;x = Math.min(x, $j('body').width() - buf);}}// Set the position of the hint$hint.css({left: x + 'px',top: y + 'px',});// Set outer container size and position$afterContainer.css({width: width + 'px',left: '-' + ((width / 2) + leftShift) + 'px'});} else {$hint.hide();}}function getRandomColor() {var r = Math.round(Math.random() * 255);var g = Math.round(Math.random() * 255);var b = Math.round(Math.random() * 255);return 'rgb(' + r + ',' + g + ',' + b + ')';}function hintTooltipIsDisplayed() {return $j('#hintTooltip').is(':visible');}function getCurrentHintText() {return $j('#hintTooltip .afterContainer .after').text();}// This is used to yield execution to the main javascript thread so that we can break longer running tasks into smaller tasks.// See here: https://web.dev/articles/optimize-long-tasks?utm_source=devtoolsfunction yieldToMain () {return new Promise(resolve => {setTimeout(resolve, 0);});}async function runStartCode(stopwatch) {if (stopwatch && !window.userID) { window.SporcleLib.Modal.openRegisterModal({ regPath : 'quiz_page_practice_mode', analyticAction : 'Quiz Page - Practice Mode', }); return;}if (typeof gamePageIsLoaded != "undefined" && gamePageIsLoaded) {if (window.startTriggered) {return;} else {window.startTriggered = true;}if (typeof stopwatch !== 'undefined') {if (stopwatch) {window.selectTimerSetting('stopwatch');} else {window.selectTimerSetting('timer');}}// The `startGame` function does a lot, so we want to yield execution both before and after this call. Yielding before// will allow the existing task to finish, freeing up the runtime to move to the next thing in the message queue before startGame// executes. Yielding after will do the same, before we perform the rest of the actions related to starting a quiz.await yieldToMain();await startGame(1200);await yieldToMain();callSPHooks('postStart');}}function callSPHooks(name) {if (typeof _spHooks != 'undefined') {var hlen = _spHooks[name].length;for (var i = 0; i < hlen; i++) {_spHooks[name][i]();}}}

0/129

Quiz is untimed. Quiz plays in practice mode will not be counted towards challenge completion or badge progress.

20:00

Hint
Planet with large amounts of rhydonium and a large desert known as The Void -The Clone Wars
Rocky planet with a reserve of Separatist droids that survived the Clone Wars -Rebels
Location of the first Jedi temple -The Force Awakens
Jungle Moon used as a base by the Resistance -Battlefront II
Home of Norra and Temmin Wexley -Aftermath
Home planet of Leia Organa -A New Hope
Planet that passes through a belt of crystals every three years, causing a phenomenon known as The Eye -Andor
Home to a bioluminescent tree-like species, referred to as "One of those planets" by clone trooper pilot Warthog -The Clone Wars
Homeworld of the Talz, Din Djarin undertook a job here with Xi'a -The Rising Storm
Admiral Trench of the CIS was killed during a battle on this planet, and the planet was later destroyed in the early years of the imperial era, becoming an asteroid belt -The Clone Wars
Home of the Aqualish species and smuggler Ponda Baba -Dark Force Rising
A city-planet gassed by the Galactic Empire and later used as a Resistance camp -Uprising
War-torn planet, one of the nine Jewels of the Old Republic -Skeleton Crew
One of the Jewels of the Old Republic, believed to be a myth by pirates -Skeleton Crew
Desert planet home to the powerful force-wielder Bendu -Rebels
Planet where survivors of a crash landing were tricked into worshipping a holographic persona created by Pit Droids, before C-3PO and R2-D2 revealed the truth -The Clone Wars
Icy planet where Clone Commander Mayday died, and Crosshair (CT-9904) killed Lieutenant Nolan -The Bad Batch
A planet in the outer rim that orbits three suns, Anakin Skywalker and Thrawn joined forces to search for Padmé Amidala -Thrawn: Alliances
Gas giant that served as the location for Cloud City -The Empire Strikes Back
Home to a vault built by the Zeffo, and the planet where Cal Kestis and BD-1 first met -Jedi: Fallen Order
Home to a Kaminoan facility that was abandoned by the time of the Galactic Empire -The Bad Batch
Junkyard planet in the mid rim, the Scrapper Guild operated here, including Cal Kestis -Jedi: Fallen Order
A planet in the Outer Rim that was home to Osha and Mae Aniseya, as well as a coven of force-sensitive witches -The Acolyte
Visited by Finn, Rose Tico, and BB-8 to recruit the Master Codebreaker -The Last Jedi
An ocean planet located in the Outer Rim, home to the aircraft refueling station Colossus -Resistance
Site of Plo Koon's death following Order 66 -Revenge of the Sith
The first capital of the New Republic, homeworld to Mom Mothma and Ben Solo -Aftermath
Planet where Anakin Skywalker and his Padawan Ahsoka Tango first met -The Clone Wars
Home planet of Rako Hardeen and Jango Fett, controlled by the Mandalorian Protectors during the Imperial era -Rebels
Homeworld of Han Solo -Solo
City-planet that served as the capital of the Galactic Republic and Galactic Empire -The Phantom Menace
Salt-covered planet that once hosted a Rebel Alliance outpost -The Last Jedi
A cityscape planet where Ben Kenobi begins his search for Leia Organa in 9 BBY -Obi-Wan Kenobi
Location of the Resistance headquarters until the destruction of Starkiller Base -The Force Awakens
Swamp planet where Yoda trained Luke Skywalker -The Empire Strikes Back
Planet that Leia Organa gives as the location of the rebel base to Grand Moff Tarkin -A New Hope
Home planet of the Nightsisters -The Clone Wars
Forest planet with an ancient Jedi Temple -The Clone Wars
Rocky planet with severe storms where Galen Erso was killed by the Alliance to Restore the Republic -Rogue One
Moon orbited by the Second Death Star -Return of the Jedi
Saponza and his partner traveled here to put an end to the slaver group -Commander
Homeworld of Wilhuff Tarkin, who owned a compound known as Raven's Peak on the planet -Tarkin
Planet that had a secret Imperial listening post concealed in its icy rings -Squadrons
Hint
The hidden world of the Sith, and birthplace of Supreme Leader Snoke -The Rise of Skywalker
Jungle planet where Aayla Secura is killed by her clone troopers -Revenge of the Sith
Planet overseen by the Consolidated Holdings of Preox-Morlana Corporation during the Imperial Era -Andor
Location of a pirate gang led by Hondo Ohnaka -The Clone Wars
Imperial manufacturing center with large shipyards -Battlefront II
Location of the first battle of the Clone Wars -Attack of the Clones
Capital of the New Republic, destroyed by Starkiller Base -The Force Awakens
Snow planet that was used as a rebel base -The Empire Strikes Back
Mysterious planet in the outer rim with 1,000 moons -The Clone Wars
Snow-covered planet where Jedi Younglings harvested their kyber crystals, later became Starkiller Base -The Clone Wars
Homeworld of some Zabraks, including Eeth Koth and Sugi, but not Darth Maul, as Obi-Wan incorrectly assumed -The Clone Wars
Planet Obi-Wan Kenobi visited with Leia Organa where he learned of the Hidden Path -Obi-Wan Kenobi
Homeworld of Rey and location of the final battle in the Galactic Civil War -The Force Awakens
The first location where the Death Star's laser is used, killing Saw Gerrara -Rogue One
A rocky, mountainous planet in the Outer Rim, and the homeworld of Thane Kyrell and Ciena Ree -Lost Stars
Planet responsible for another planet's volcanic climate, has a moon that is home to Fortress Inquisitorius -Revenge of the Sith
Ocean planet where Obi-Wan Kenobi discovers the Clone Army -Attack of the Clones
Homeworld of the Wookies -Holiday Special
Moon where much of the Second Death Star crashed following it's destruction -The Rise of Skywalker
Birthplace of Cassian Andor -Andor
Planet known for its spice mines and coaxium -Rebels
Forest planet where the Wookiee Jedi Master Kelnacca lived -The Acolyte
Homeworld of Zori Bliss, destroyed by the First Order -The Rise of Skywalker
Planet known for its abundance of priorite and location of Rambler's Reach and Pyloon's Saloon -Jedi: Survivor
Industrial planet that produced star destroyers for the Galactic Republic and Galactic Empire -The Clone Wars
A remote planet with black sands, where Jyn Erso and her parents went into hiding -Catalyst
Homeworld of Ezra Bridger -Rebels
A planetary junkyard and hiding place of Maul after being cut in half -The Clone Wars
Planet that Yoda told Ezra Bridger to find in order to defeat Darth Vader and the Inquisitors -Rebels
Birthplace of Sebulba and home of the Zillo Beast -The Clone Wars
Homeworld of a warrior clan-people who wear armor made from beskar -The Clone Wars
Location of Obi-Wan Kenobi and Darth Vader's second duel -Obi-Wan Kenobi
Grassy planet settled by Lurmen survivors who sought to escape the Clone Wars -The Clone Wars
Swamp planet on which both Cassian Andor and Han Solo served, although Andor was only a cook for the army -Solo
Ocean planet home to the Quarren -The Clone Wars
Home planet of ancient Sith lords and the resting place of Darth Bane -The Clone Wars
Planet home to god-like beings known as the Father, Daughter, and Son -The Clone Wars
Lava planet where Obi-Wan Kenobi and Darth Vader have their first duel -Revenge of the Sith
Cold, urban planet where Ki-Adi Mundi was killed by his clone troopers -Revenge of the Sith
Homeworld of the Gungans, location of Qui-Gon Jinn's death and Darth Maul's first defeat at the hands of Obi-Wan Kenobi -The Phantom Menace
Homeworld of the Hutts -The Clone Wars
A volcanic planet that was the hub of the Bounty Hunter Guild -The Mandalorian
Warm, sunny planet where Cassian Andor was arrested -Andor
Hint
Jungle planet where Han Solo won the Millennium Falcon from Lando Calrissian -Solo
Location of Fortress Inquisitorius -Jedi: Fallen Order
Location of the Pyke Syndicate's stronghold -The Clone Wars
Planet the assassin Mae Aniseya visited to kill Jedi Master Torbin -The Acolyte
Birthplace of Saw and Steela Gerrera -The Clone Wars
Location of a Black Sun stronghold -The Clone Wars
Location of Luke Skywalker's Jedi Temple -The Force Awakens
Desert planet that is home to the Aki-Aki -The Rise of Skywalker
Location of one of Darth Sidious' observatories, Like Skywalker recovered a Jedi Compass with the help of Imperial Stormtrooper Del Meeko here -Battlefront II
Planetoid where Padmé Amidala gave birth to Leia and Luke Skywalker -Revenge of the Sith
Farming moon in the Outer Rim, where Ahsoka Tano hid under the name "Ashla" after Order 66 -Ahsoka (novel)
A moon that housed a Galactic Republic listening post which was destroyed by clone trooper Heavy (CT-782) -The Clone Wars
A remote swampy, jungle planet, it was represented by Onaconda Farr in the Galactic Senate during the Clone Wars, and was home to Greedo -The Clone Wars
A moon that consists of giant coral reefs, it is here where King Katuunko pledges Toydaria's allegiance to the Galactic Republic -The Clone Wars
Site of the final defeat of the Sith at the end of the Jedi-Sith War, Skytop Station was located on one of its moons during the Clone Wars -The Clone Wars
Homeworld of the Twi'lek species, such as Aayla Secura and Hera Syndulla -The Clone Wars
Home of the clone trooper deserter Cut Lawquane and site of Stass Allie's death following Order 66 -Revenge of the Sith
Desert and ocean planet where Dryden Vos and Tobias Beckett are killed -Solo
Destroyed by the Death Star after the rebel alliance raids the Death Star plans -Rogue One
A forest planet with red-leaved trees, location of the Reflex Point and where Morgan Elsbeth's ship, the Eye of Sion, is built -Ahsoka
Homeworld of Count Dooku -The Clone Wars
Home planet of the Togruta, including Jedi Council member Shaak Ti and Padawan Ahsoka Tano -The Clone Wars
Planet surrounded by a debris field that consisted of remnants of salvaged Galactic Empire starships as part of the New Republic's Project Starhawk -Squadrons
Planet where ARC Trooper Echo (CT-1409) was held captive by the Techno Union -The Clone Wars
A forested backwater planet in the Outer Rim mostly populated by human farmers who harvest krill which is used to make spotchka, a popular drink on the planet -The Mandalorian
Mining planet mentioned by Dexter Jettster who spent time prospecting there -Attack of the Clones
Volcanic planet with a highly toxic atmosphere, homeworld of Nien Nunb -Battlefront
Forest planet and site of Maz Kanata's castle -The Force Awakens
A planet strong with the Force, hidden inside a nebula, home of Dagan Gera's Jedi Temple -Jedi: Survivor
Birthplace of Anakin Skywalker, homeworld of Luke Skywalker -A New Hope
During the Clone Wars, Jabba's son Rotta is abducted by the Separatists and brought to this planet, where he is saved by Anakin Skywalker and Ahsoka Tano -The Clone Wars
Home planet of Watto and his species -The Clone Wars
Home planet of Bossk -The Clone Wars
Planet home to a village that contained the Lomi Usqi Noodle Shop -The Acolyte
Dark planet where Pong Krell turns two squads of clone troopers against each other -The Clone Wars
Planet covered in sinkholes and site of General Grievous' death -Revenge of the Sith
Icy, mountainous planet that is the site of a Crimson Dawn train heist led by Tobias Beckett -Solo
Imperial stronghold and home to Iden and Garrick Versio, one of the first targets of Operation: Cinder -Battlefront II
A desolate wasteland and the site of an Imperial penal labor colony -Rogue One
A planet near an asteroid field where Saw Gerrara raises Jyn Erso after her father is taken by the Empire -Rebels Rising
Base of the rebel alliance from which they attack the Death Star -A New Hope
A planet with many mountains and stormy weather, featuring ancient ruins and tombs, imperial excavations, and a crashed Venator near an ancient tomb -Jedi: Fallen Order
Planet in the Outer Rim known for a slave empire -The Clone Wars
Name the Star Wars worlds (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 6347

Rating: 4.6 / 5 (56 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.