mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
65 lines
870 B
TypeScript
65 lines
870 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Hawlucha",
|
||
fr: "Brutalibré"
|
||
},
|
||
|
||
illustrator: "tetsuya koizumi",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Windfall",
|
||
fr: "Rafale de Vent"
|
||
},
|
||
effect: {
|
||
en: "Shuffle your hand into your deck. Then, draw 5 cards.",
|
||
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 5 cartes."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Speed Attack",
|
||
fr: "Attaque Rapide"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 90,
|
||
types: ["Colorless"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|