mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
64
data/Diamond & Pearl/Legends Awakened/40.ts
Normal file
64
data/Diamond & Pearl/Legends Awakened/40.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Legends Awakened'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Shedinja",
|
||||
fr: "Munja",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
292,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Nincada",
|
||||
fr: "Ningale",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
name: {
|
||||
en: "Resent",
|
||||
fr: "Ressentiment",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your opponent's turn, if Shedinja would be Knocked Out by damage from an attack, you may put 4 damage counters on the Attacking Pokémon and each of your opponent's Pokémon that has the same name as the Attacking Pokémon.",
|
||||
fr: "Une seule fois lors du prochain tour de votre adversaire, si Munja est mis K.O par les dégâts d'une attaque, vous pouvez placer 4 marqueurs de dégât sur le Pokémon Attaquant ainsi que sur tous les Pokémon de votre adversaire possédant le même nom que le Pokémon Attaquant.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Curse and Deceive",
|
||||
fr: "Sort traitre",
|
||||
},
|
||||
effect: {
|
||||
en: "Put 3 damage counters on the Defending Pokémon. If Shedinja has any damage counters on it, the Defending Pokémon is now Confused.",
|
||||
fr: "Placez 3 marqueurs de dégât sur le Pokémon Défenseur. Si Munja possède des marqueurs de dégât, le Pokémon Défenseur est maintenant Confus.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user