mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-14 01:31:59 +00:00
31
data/Trainer kits/EX trainer Kit (Latias)/1.ts
Normal file
31
data/Trainer kits/EX trainer Kit (Latias)/1.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bagon"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
35
data/Trainer kits/EX trainer Kit (Latias)/2.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latias)/2.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Combusken"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
name: {
|
||||
en: "Double Kick"
|
||||
},
|
||||
|
||||
damage: "40×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 40 damage times the number of heads."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
35
data/Trainer kits/EX trainer Kit (Latias)/3.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latias)/3.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Delcatty"
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
name: {
|
||||
en: "Ultra Energy Source"
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
|
||||
effect: {
|
||||
en: "Does 10 damage times the number of basic Energy cards attached to all of the Active Pokémon (both yours and your opponent’s)."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
35
data/Trainer kits/EX trainer Kit (Latias)/4.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latias)/4.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Latias"
|
||||
},
|
||||
|
||||
illustrator: "Nakaoka",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Dragon Dew"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
en: "Remove 1 damage counter from 1 of your Pokémon."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Heat Blast"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
35
data/Trainer kits/EX trainer Kit (Latias)/5.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latias)/5.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Numel"
|
||||
},
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Firebreathing"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
35
data/Trainer kits/EX trainer Kit (Latias)/6.ts
Normal file
35
data/Trainer kits/EX trainer Kit (Latias)/6.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Skitty"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
name: {
|
||||
en: "Lunge"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
29
data/Trainer kits/EX trainer Kit (Latias)/7.ts
Normal file
29
data/Trainer kits/EX trainer Kit (Latias)/7.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Torchic"
|
||||
},
|
||||
|
||||
illustrator: "Hironobu Yoshida",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Firebreathing"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage."
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user