mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
75 lines
1.1 KiB
TypeScript
75 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Crystal Guardians'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Wartortle",
|
||
fr: "Carabaffe",
|
||
de: "Schillok"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
8,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Squirtle",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tail Whip",
|
||
fr: "Mouvemend'keu",
|
||
de: "Rutenschlag"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur ne pourra pas attaquer lors du prochain tour de votre adversaire.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" kann das Verteidigende Pokémon im nächsten Zug deines Gegners nicht angreifen."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bite",
|
||
fr: "Morsure",
|
||
de: "Biss"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|