1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 5a42df5c5d
Fixed XY informations (#43)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more fixes

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* More updated :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Finished update in English

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Updated XY datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:15:14 +00:00

88 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Arcanine",
fr: "Arcanin",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 130,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
fr: "Caninos",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Burning Road",
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon was on the Bench and became your Active Pokémon this turn, you may move any number of Fire Energy attached to your Pokémon to this Pokémon.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Scorching Breath",
fr: "Talent : Route Enflammée",
},
effect: {
en: "This Pokémon cant attack during your next turn.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif lors de ce tour, vous pouvez déplacer des Énergies Fire attachées à vos Pokémon vers ce Pokémon.",
},
damage: 150,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
fr: "Souffle Brûlant",
},
effect: {
fr: "Ce Pokémon ne peut pas attaquer pendant votre prochain tour.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card