mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-20 19:19:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
67
data/EX/FireRed & LeafGreen/16.ts
Normal file
67
data/EX/FireRed & LeafGreen/16.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../FireRed & LeafGreen'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Tauros",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
128,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Knock Over",
|
||||
},
|
||||
effect: {
|
||||
en: "You may discard any Stadium card in play.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Rampage",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage plus 10 more damage for each damage counter on Tauros. After doing damage, flip a coin. If tails, Tauros is now Confused.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user