mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
59 lines
1.2 KiB
TypeScript
59 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Drednaw",
|
||
fr: "Torgamord"
|
||
},
|
||
|
||
illustrator: "Anesaki Dynamic",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 130,
|
||
types: ["Water"],
|
||
|
||
evolveFrom: {
|
||
en: "Chewtle",
|
||
fr: "Khélocrok"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Vise Bite",
|
||
fr: "Étau Mordant"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 30 more damage for each Colorless in your opponent’s Active Pokémon’s Retreat Cost.",
|
||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire."
|
||
},
|
||
|
||
damage: "60+",
|
||
cost: ["Water", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Jaw Lock",
|
||
fr: "Croque Fort"
|
||
},
|
||
|
||
effect: {
|
||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Water", "Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3
|
||
}
|
||
|
||
export default card |