mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* fix: Add E-Card French Translations Signed-off-by: Avior <github@avior.me> * fix: Fixed Cards without rarity Signed-off-by: Avior <florian.bouillon@delta-wings.net>
70 lines
1.4 KiB
TypeScript
70 lines
1.4 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Aquapolis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Entei",
|
||
fr: "Entei"
|
||
},
|
||
illustrator: "Atsuko Nishida",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
244,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-BODY",
|
||
name: {
|
||
en: "Pure Body",
|
||
fr: "Corps pur"
|
||
},
|
||
effect: {
|
||
en: "To attach a Fire Energy card from your hand to Entei, you must discard an Energy card attached to Entei. (Attach the Fire Energy, and then discard an Energy from Entei.)",
|
||
fr: "Pour attacher une carte Énergie de votre main à Entei, vous devez vous défausser d'une carte Énergie attachée à Entei. (Attachez l'Énergie , et défaussez-vous ensuite d'une Énergie attachée à Entei.)"
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Burning Fang",
|
||
fr: "Croc brûlant"
|
||
},
|
||
effect: {
|
||
en: "You may flip a coin. If heads, discard a Fire Energy card attached to Entei and the Defending Pokémon is now Burned.",
|
||
fr: "Vous pouvez lancer une pièce. Si c'est face, défaussez-vous d'une carte Énergie attachée à Entei et le Pokémon Défenseur est maintenant Brûlé."
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|