Terraria Wiki

  • Discussions are now available on the Terraria Wiki.
  • Miss the old Hydra Skin? Try out our Hydralize gadget! Visit the preferences page while logged in and turn on the gadget.

READ MORE

Terraria Wiki
mNo edit summary
 
No edit summary
 
Line 1: Line 1:
  +
Not much is known about this creature. It is summoned by the [[Moon Lord]], who is considered to be the 'final boss' of the game, (as of 1.3).{{npc infobox
var editsummOriginalSummary = "";
 
  +
| type = boss spawn
 
  +
| environment = Lunar Event
function editsummAddOptionToDropdown(dropdown, optionText) {
 
  +
| ai = 81
var option = document.createElement("option");
 
  +
| damage = 60
var optionTextNode = document.createTextNode(optionText);
 
  +
| life = 100
option.appendChild(optionTextNode);
 
  +
| defense = 0
dropdown.appendChild(option);
 
}
+
| money =
  +
}}
 
  +
function editsummAddCatToDropdown(dropdown, catText) {
 
  +
== Attack ==
var option = document.createElement("option");
 
  +
The True Eye of Cthulhu will appear after either hand of the Moon Lord has been slain. They will orbit the Moon Lord and pursue the player, generating white balls of energy which they then fling at the player frequently. They also have a miniature beam similar to the Moon Lord's eyebeam that generates from his head, though the beam generated by the True Eye of Cthulhu is far easier to avoid.
option.disabled = true;
 
  +
option.selected = true;
 
  +
== Trivia ==
var optionTextNode = document.createTextNode(catText);
 
  +
* The name of this enemy tells that the Eye of Cthulhu boss fought earlier in the game isn't actually Cthulhu's eye, and judging by the fact that the eye originates from the Moon Lord, it is highly likely that the Moon Lord is in fact Cthulhu, or at least directly related to Cthulhu somehow.
option.appendChild(optionTextNode);
 
  +
* In a livestream, Cenx claimed that the Moon Lord is Cthulhu's brother.
dropdown.appendChild(option);
 
  +
}
 
  +
== History ==
 
  +
{{History|1.3.0.1|Introduced.}}
function editsummOnCannedSummarySelected() {
 
// Save the original value of the edit summary field
 
editsummOriginalSummary = document.getElementById("wpSummary");
 
if (editsummOriginalSummary) {
 
editsummOriginalSummary = editsummOriginalSummary.value;
 
} else {
 
editsummOriginalSummary = "";
 
}
 
 
var idx = this.selectedIndex;
 
var canned = this.options[idx].text;
 
 
var newSummary = editsummOriginalSummary;
 
 
// Append old edit summary with space, if exists,
 
// and last character != space
 
if (newSummary.length !== 0 && newSummary.charAt(newSummary.length - 1) !== " ") {
 
newSummary += " ";
 
}
 
newSummary += canned;
 
document.getElementById("wpSummary").value = newSummary;
 
}
 
 
$(function () {
 
var insertBeforeThis = document.getElementById("wpSummary");
 
 
// Loop through siblings, looking for editCheckboxes class
 
while (insertBeforeThis) {
 
if (insertBeforeThis.className === "editCheckboxes") {
 
break;
 
}
 
 
insertBeforeThis = insertBeforeThis.nextSibling;
 
}
 
 
// If we failed to find the editCheckboxes class, or insertBeforeThis is null
 
if (!insertBeforeThis || insertBeforeThis.className !== "editCheckboxes") {
 
return;
 
}
 
 
editsummOriginalSummary = editsummOriginalSummary.value;
 
// For convenience, add a dropdown box with some canned edit
 
// summaries to the form.
 
var dropdown = document.createElement("select");
 
dropdown.style.width = "38%";
 
dropdown.style.margin = "0 4px 0 0";
 
dropdown.onchange = editsummOnCannedSummarySelected;
 
 
editsummAddCatToDropdown(dropdown, "Custom edit summary presets");
 
 
if (typeof customsum1 != "undefined") editsummAddOptionToDropdown(dropdown, customsum1);
 
if (typeof customsum2 != "undefined") editsummAddOptionToDropdown(dropdown, customsum2);
 
if (typeof customsum3 != "undefined") editsummAddOptionToDropdown(dropdown, customsum3);
 
if (typeof customsum4 != "undefined") editsummAddOptionToDropdown(dropdown, customsum4);
 
if (typeof customsum5 != "undefined") editsummAddOptionToDropdown(dropdown, customsum5);
 
if (typeof customsum6 != "undefined") editsummAddOptionToDropdown(dropdown, customsum6);
 
if (typeof customsum7 != "undefined") editsummAddOptionToDropdown(dropdown, customsum7);
 
if (typeof customsum8 != "undefined") editsummAddOptionToDropdown(dropdown, customsum8);
 
if (typeof customsum9 != "undefined") editsummAddOptionToDropdown(dropdown, customsum9);
 
if (typeof customsum10 != "undefined") editsummAddOptionToDropdown(dropdown, customsum10);
 
if (typeof customsum11 != "undefined") editsummAddOptionToDropdown(dropdown, customsum11);
 
if (typeof customsum12 != "undefined") editsummAddOptionToDropdown(dropdown, customsum12);
 
if (typeof customsum13 != "undefined") editsummAddOptionToDropdown(dropdown, customsum13);
 
if (typeof customsum14 != "undefined") editsummAddOptionToDropdown(dropdown, customsum14);
 
if (typeof customsum15 != "undefined") editsummAddOptionToDropdown(dropdown, customsum15);
 
if (typeof customsum16 != "undefined") editsummAddOptionToDropdown(dropdown, customsum16);
 
if (typeof customsum17 != "undefined") editsummAddOptionToDropdown(dropdown, customsum17);
 
if (typeof customsum18 != "undefined") editsummAddOptionToDropdown(dropdown, customsum18);
 
if (typeof customsum19 != "undefined") editsummAddOptionToDropdown(dropdown, customsum19);
 
if (typeof customsum20 != "undefined") editsummAddOptionToDropdown(dropdown, customsum20);
 
 
var theParent = insertBeforeThis.parentNode;
 
theParent.insertBefore(dropdown, insertBeforeThis);
 
//theParent.insertBefore(document.createElement("br"), dropdown);
 
});
 

Revision as of 15:39, 3 July 2015

Not much is known about this creature. It is summoned by the Moon Lord, who is considered to be the 'final boss' of the game, (as of 1.3).

True Eye of Cthulhu
True Eye of Cthulhu
Classic mode icon Classic
Expert mode icon Expert
Master mode icon Master
Statistics
Type
Boss spawn
Environment
AI Type81
Damage60
Max Life100
Defense0

Attack

The True Eye of Cthulhu will appear after either hand of the Moon Lord has been slain. They will orbit the Moon Lord and pursue the player, generating white balls of energy which they then fling at the player frequently. They also have a miniature beam similar to the Moon Lord's eyebeam that generates from his head, though the beam generated by the True Eye of Cthulhu is far easier to avoid.

Trivia

  • The name of this enemy tells that the Eye of Cthulhu boss fought earlier in the game isn't actually Cthulhu's eye, and judging by the fact that the eye originates from the Moon Lord, it is highly likely that the Moon Lord is in fact Cthulhu, or at least directly related to Cthulhu somehow.
  • In a livestream, Cenx claimed that the Moon Lord is Cthulhu's brother.

History