mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)
Co-authored-by: Avior <github@avior.me>
This commit is contained in:
62
data/Trainer kits/BW trainer Kit (Excadrill)/13.ts
Normal file
62
data/Trainer kits/BW trainer Kit (Excadrill)/13.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../BW trainer Kit (Excadrill).ts'
|
||||
|
||||
const card: Card = {
|
||||
dexId: [529],
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drilbur",
|
||||
fr: "Rototaupe",
|
||||
es: "Drilbur",
|
||||
it: "Drilbur",
|
||||
pt: "Drilbur",
|
||||
de: "Rotomurf"
|
||||
},
|
||||
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Hone Claws"
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, each of this Pokémon's attacks does 30 more damage (before applying Weakness and Ressistance)."
|
||||
}
|
||||
}, {
|
||||
cost: [
|
||||
"Fighting",
|
||||
],
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [{
|
||||
type: "Lightning",
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
description: {
|
||||
en: "It can dig through the ground at a speed of 30 mph. It could give a car running aboveground a good race."
|
||||
},
|
||||
|
||||
retreat: 2,
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user