mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +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>
73 lines
974 B
TypeScript
73 lines
974 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dark Explorers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Kyogre-EX",
|
||
fr: "Kyogre-EX",
|
||
es: "Kyogre-EX",
|
||
it: "Kyogre-EX",
|
||
pt: "Kyogre-EX",
|
||
de: "Kyogre-EX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
382,
|
||
],
|
||
|
||
hp: 170,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
suffix: "EX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Smash Turn",
|
||
},
|
||
effect: {
|
||
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Dual Splash",
|
||
},
|
||
effect: {
|
||
en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4
|
||
}
|
||
|
||
export default card
|