mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
82 lines
1.4 KiB
TypeScript
82 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Boundaries Crossed'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Landorus-EX",
|
||
fr: "Démétéros-EX",
|
||
es: "Landorus-EX",
|
||
it: "Landorus-EX",
|
||
pt: "Landorus-EX",
|
||
de: "Demeteros-EX"
|
||
},
|
||
illustrator: "Eske Yoshinob",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
645,
|
||
],
|
||
hp: 180,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
|
||
|
||
suffix: "EX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Hammerhead",
|
||
fr: "Massue",
|
||
},
|
||
effect: {
|
||
en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Inflige 30 dégâts à 1 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Land's Judgment",
|
||
fr: "Jugement Terrestre",
|
||
},
|
||
effect: {
|
||
en: "You may discard all Fighting Energy attached to this Pokémon. If you do, this attack does 70 more damage.",
|
||
fr: "Vous pouvez défausser toutes les Énergies Fighting attachées à ce Pokémon. Dans ce cas, cette attaque inflige 70 dégâts supplémentaires.",
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Lightning",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|