mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
73
data/HeartGold & SoulSilver/Unleashed/20.ts
Normal file
73
data/HeartGold & SoulSilver/Unleashed/20.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Unleashed'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ninetales",
|
||||
fr: "Feunard",
|
||||
},
|
||||
illustrator: "Hajime Kusajima",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
38,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Vulpix",
|
||||
fr: "Goupix",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Heat Acceleration",
|
||||
fr: "Accélération ardente",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your discard pile for up to 3 Fire Energy cards and attach them to 1 of your Pokémon.",
|
||||
fr: "Cherchez dans votre pile de défausse jusqu'à 3 cartes Énergie Fire et attachez-les à l'un de vos Pokémon.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Searing Flame",
|
||||
fr: "Flammes calcinantes",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Burned.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user