mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 11:09:18 +00:00
fix: correct data for sets tk-ex-latia, tk-ex-latio, tk-ex-m, tk-ex-p, tk-bw-e, tk-bw-z (#726)
Co-authored-by: Avior <github@avior.me>
This commit is contained in:
@ -14,19 +14,32 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}]
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
17
data/Trainer kits/EX trainer Kit (Latias)/10.ts
Normal file
17
data/Trainer kits/EX trainer Kit (Latias)/10.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Fire Energy",
|
||||
},
|
||||
illustrator: "",
|
||||
rarity: "None",
|
||||
category: "Energy",
|
||||
|
||||
set: Set,
|
||||
stage: "Basic",
|
||||
energyType: "Normal",
|
||||
}
|
||||
|
||||
export default card
|
@ -14,23 +14,47 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Torchic",
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Double Kick"
|
||||
},
|
||||
|
||||
damage: "40×",
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 40 damage times the number of heads."
|
||||
}
|
||||
}]
|
||||
},
|
||||
damage: "40×"
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
@ -14,23 +14,49 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Stage1",
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Skitty",
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
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)."
|
||||
}
|
||||
}]
|
||||
},
|
||||
damage: "10×"
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
@ -14,23 +14,43 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Dragon Dew"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
effect: {
|
||||
en: "Remove 1 damage counter from 1 of your Pokémon."
|
||||
}
|
||||
},
|
||||
damage: 10
|
||||
}, {
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Heat Blast"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}]
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
@ -14,23 +14,42 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Fire",
|
||||
],
|
||||
name: {
|
||||
en: "Firebreathing"
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage."
|
||||
}
|
||||
},
|
||||
damage: "10+"
|
||||
}, {
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}]
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
@ -14,23 +14,43 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Lunge"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}]
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
@ -14,17 +14,34 @@ const card: Card = {
|
||||
category: "Pokemon",
|
||||
stage: "Basic",
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Colorless"
|
||||
],
|
||||
name: {
|
||||
en: "Firebreathing"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage."
|
||||
}
|
||||
}]
|
||||
},
|
||||
damage: "20+"
|
||||
}],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "2x"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
19
data/Trainer kits/EX trainer Kit (Latias)/8.ts
Normal file
19
data/Trainer kits/EX trainer Kit (Latias)/8.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Potion"
|
||||
},
|
||||
|
||||
illustrator: "Keiji Kinebuchi",
|
||||
rarity: "None",
|
||||
category: "Trainer",
|
||||
set: Set,
|
||||
|
||||
effect: {
|
||||
en: "Remove 2 damage counters from 1 of your Pokémon (remove 1 damage counter if that Pokémon has only 1)."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
19
data/Trainer kits/EX trainer Kit (Latias)/9.ts
Normal file
19
data/Trainer kits/EX trainer Kit (Latias)/9.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../EX trainer Kit (Latias)'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Energy Search"
|
||||
},
|
||||
|
||||
illustrator: "Kai Ishikawa",
|
||||
rarity: "None",
|
||||
category: "Trainer",
|
||||
set: Set,
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user