mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Make Each Promos Series Names unique to be clearly identifiable (#15)
* Changed folder and the automatics imports changes Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Fixed SM promos missing the correct set Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
83
data/Sun & Moon/SM Black Star Promos/SM166.ts
Normal file
83
data/Sun & Moon/SM Black Star Promos/SM166.ts
Normal file
@ -0,0 +1,83 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SM Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Magikarp & Wailord-GX",
|
||||
fr: "Magicarpe et Wailord-GX",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
129,
|
||||
],
|
||||
hp: 300,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
|
||||
suffix: "TAG TEAM-GX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Water",
|
||||
"Water",
|
||||
"Water",
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Super Splash",
|
||||
fr: "Règle des ESCOUADES",
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Towering Splash GX",
|
||||
fr: "Super Éclaboussure",
|
||||
},
|
||||
effect: {
|
||||
en: "If this Pokémon has at least 7 extra Water Energy attached to it (in addition to this attack's cost), this attack does 100 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
fr: "Éclaboussure Imposante-GX",
|
||||
},
|
||||
effect: {
|
||||
fr: "Si au moins 7 Énergies Water supplémentaires sont attachées à ce Pokémon (en plus du coût de cette attaque), cette attaque inflige 100 dégâts à chacun des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user