mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-26 13:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/Black & White/Plasma Blast/26.ts
Normal file
73
data/Black & White/Plasma Blast/26.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Plasma Blast'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Abomasnow",
|
||||
fr: "Blizzaroi",
|
||||
},
|
||||
illustrator: "kawayoo",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
460,
|
||||
],
|
||||
hp: 120,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Snover",
|
||||
fr: "Blizzi",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
fr: "Tranch'Herbe",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bang Heads",
|
||||
fr: "Choc Frontal",
|
||||
},
|
||||
effect: {
|
||||
en: "Both this Pokémon and the Defending Pokémon are now Confused.",
|
||||
fr: "Ce Pokémon et le Pokémon Défenseur sont maintenant Confus.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user