mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-27 22:39:18 +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>
84 lines
1.4 KiB
TypeScript
84 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Black & White'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mandibuzz",
|
||
fr: "Vaututrice",
|
||
es: "Mandibuzz",
|
||
it: "Mandibuzz",
|
||
pt: "Mandibuzz",
|
||
de: "Grypheldis"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
630,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
evolveFrom: {
|
||
en: "Vullaby",
|
||
fr: "Vostourno",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
],
|
||
name: {
|
||
en: "Blindside",
|
||
fr: "Angle Mort",
|
||
},
|
||
effect: {
|
||
en: "Does 50 damage to 1 of your opponent's Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Inflige 50 dégâts à 1 des Pokémon de votre adversaire ayant au moins 1 marqueur de dégâts. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Punishment",
|
||
fr: "Punition",
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is a Stage 2 Pokémon, this attack does 60 more damage.",
|
||
fr: "Si le Pokémon Défenseur est un Pokémon de Niveau 2, cette attaque inflige 60 dégâts supplémentaires.",
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|