mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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>
80 lines
1.2 KiB
TypeScript
80 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Next Destinies'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Regigigas-EX",
|
||
fr: "Regigigas-EX",
|
||
es: "Regigigas-EX",
|
||
it: "Regigigas-EX",
|
||
pt: "Regigigas-EX",
|
||
de: "Regigigas-EX"
|
||
},
|
||
illustrator: "Shizurow",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
486,
|
||
],
|
||
hp: 180,
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
|
||
suffix: "EX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Giga Power",
|
||
fr: "Giga Pouvoir",
|
||
},
|
||
effect: {
|
||
en: "You may do 20 more damage. If you do, this Pokémon does 20 damage to itself.",
|
||
fr: "Vous pouvez infliger 20 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.",
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Raging Hammer",
|
||
fr: "Marteau Rageur",
|
||
},
|
||
effect: {
|
||
en: "Does 10 more damage for each damage counter on this Pokémon.",
|
||
fr: "Inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|