mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
84
data/Platinum/Rising Rivals/87.ts
Normal file
84
data/Platinum/Rising Rivals/87.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Rising Rivals'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Weezing",
|
||||
fr: "Smogogo Niv. 47",
|
||||
},
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
110,
|
||||
],
|
||||
hp: 80,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Koffing",
|
||||
fr: "Smogo",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Camouflage Gas",
|
||||
fr: "Gaz de camouflage",
|
||||
},
|
||||
effect: {
|
||||
en: "If Weezing is Confused and is Knocked Out, your opponent can't take a Prize card.",
|
||||
fr: "Si Smogogo est Confus et qu'il est mis K.O, votre adversaire ne peut pas récolter de carte Récompense.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Damage Breakdown",
|
||||
fr: "Casse-dégâts",
|
||||
},
|
||||
effect: {
|
||||
en: "Count the number of damage counters on Weezing. Put that many damage counters on the Defending Pokémon and Weezing is now Confused.",
|
||||
fr: "Comptabilisez le nombre de marqueurs de dégât sur Smogogo. Placez autant de marqueurs de dégât sur le Pokémon Défenseur et Smogogo est maintenant Confus.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Smog",
|
||||
fr: "Purédpois",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Poisoned.",
|
||||
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user