1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

62 lines
971 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [834],
set: Set,
name: {
en: "Drednaw",
fr: "Torgamord",
es: "Drednaw",
it: "Drednaw",
pt: "Drednaw",
de: "Kamalm"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 140,
types: ["Water"],
evolveFrom: {
en: "Chewtle",
fr: "Khélocrok",
es: "Chewtle",
it: "Chewtle",
pt: "Chewtle",
de: "Kamehaps"
},
stage: "Stage1",
retreat: 4,
regulationMark: "E",
illustrator: "kodama",
description: {
en: "This Pokémon rapidly extends its retractable neck to sink its sharp fangs into distant enemies and take them down."
},
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
en: "Hard Bite"
},
damage: "80+",
effect: {
en: "Flip a coin. If heads, this attack does 50 more damage."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card