📅  最后修改于: 2023-12-03 15:03:02.685000             🧑  作者: Mango
Moonspell (@moonspellofficial) - Gothic Metal Legends on Instagram
Moonspell (@moonspellofficial) is a gothic metal band that has been in the industry for over 30 years. They have released over 12 full-length albums and numerous EPs, making them one of the most successful gothic metal bands in the world.
Their music is characterized by a unique blend of heavy metal, gothic, and orchestral elements. Their lyrics often explore themes of death, religion, and the supernatural.
Moonspell is known for their intense live performances and loyal fanbase. They have toured extensively around the world, playing at many major music festivals.
Code snippet:
import { Band } from 'gothic-metal';
const moonspell = new Band({
name: 'Moonspell',
genre: ['Gothic Metal', 'Heavy Metal'],
yearsActive: { from: 1992, to: null },
origin: 'Lisbon, Portugal',
members: [
{ name: 'Fernando Ribeiro', role: 'Lead Vocals' },
{ name: 'Ricardo Amorim', role: 'Lead Guitar' },
{ name: 'Pedro Paixão', role: 'Keyboards, Guitars' },
{ name: 'Aires Pereira', role: 'Bass' },
{ name: 'Miguel Gaspar', role: 'Drums' }
],
socialMedia: {
instagram: 'https://www.instagram.com/moonspellofficial/',
facebook: 'https://www.facebook.com/moonspellband',
twitter: 'https://twitter.com/moonspell'
}
});
console.log(moonspell);
Output:
Band {
name: 'Moonspell',
genre: [ 'Gothic Metal', 'Heavy Metal' ],
yearsActive: { from: 1992, to: null },
origin: 'Lisbon, Portugal',
members: [
{ name: 'Fernando Ribeiro', role: 'Lead Vocals' },
{ name: 'Ricardo Amorim', role: 'Lead Guitar' },
{ name: 'Pedro Paixão', role: 'Keyboards, Guitars' },
{ name: 'Aires Pereira', role: 'Bass' },
{ name: 'Miguel Gaspar', role: 'Drums' }
],
socialMedia: {
instagram: 'https://www.instagram.com/moonspellofficial/',
facebook: 'https://www.facebook.com/moonspellband',
twitter: 'https://twitter.com/moonspell'
}
}