mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-03 12:29:54 +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>
81 lines
1.5 KiB
TypeScript
81 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Black & White'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Maractus",
|
||
fr: "Maracachi",
|
||
es: "Maractus",
|
||
it: "Maractus",
|
||
pt: "Maractus",
|
||
de: "Maracamba"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
556,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Constant Rattle",
|
||
fr: "Secousses Successives",
|
||
},
|
||
effect: {
|
||
en: "Flip 3 coins. If 1 of them is heads, this attack does 10 damage. If 2 of them are heads, this attack does 30 damage. If all of them are heads, this attack does 60 damage.",
|
||
fr: "Lancez 3 pièces. Si vous obtenez un côté face, cette attaque inflige 10 dégâts. Si vous obtenez 2 côtés face, cette attaque inflige 30 dégâts. Si vous obtenez seulement des côtés face, cette attaque inflige 60 dégâts.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Giga Drain",
|
||
fr: "Giga-Sangsue",
|
||
},
|
||
effect: {
|
||
en: "Heal from this Pokémon the same amount of damage you did to the Defending Pokémon.",
|
||
fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Défenseur.",
|
||
},
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Water",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|