mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
59
data/Black & White/Plasma Freeze/91.ts
Normal file
59
data/Black & White/Plasma Freeze/91.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Plasma Freeze'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Hoothoot",
|
||||
fr: "Hoothoot",
|
||||
},
|
||||
illustrator: "match",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
163,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Dual Draw",
|
||||
fr: "Pioche Mutuelle",
|
||||
},
|
||||
effect: {
|
||||
en: "Each player draws 2 cards.",
|
||||
fr: "Chaque joueur pioche 2 cartes.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user