Card TypeLand RarityRare Legalities T: Add C.
T, Pay 1 life: Add one mana of any color. Spend this mana only to cast an instant or sorcery spell.
5: If this land isn’t a creature, it becomes a 2/4 Wizard creature with “Whenever you cast an instant or sorcery spell, this creature gets +1/+0 until end of turn.” It’s still a land. function toggleLegality(e) { var element = document.getElementById(“info-item-legalities”) var closed = document.querySelector(“.legalities-closed”) var open = document.querySelector(“.legalities-open”) if (element.classList.contains(‘d-none’)) { element.classList.add(“d-block”) closed.classList.add(“d-none”) open.classList.add(“d-block”) element.classList.remove(“d-none”) closed.classList.remove(“d-block”) open.classList.remove(“d-none”) } else { element.classList.add(“d-none”) closed.classList.add(“d-block”) open.classList.add(“d-none”) element.classList.remove(“d-block”) closed.classList.remove(“d-none”) open.classList.remove(“d-block”) } }