mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
95
cards/neo/neo4/1.ts
Normal file
95
cards/neo/neo4/1.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-1",
|
||||
localId: 1,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Ampharos",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 181,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/1/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/1/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Flaaffy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 588,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Conductivity",
|
||||
},
|
||||
text: {
|
||||
en: "Whenever your opponent attaches an Energy card to a Pokémon from his or her hand, this Power does 10 damage to that Pokémon. (Don't apply Weakness and Resistance) This power stops working if you have more than 1 Dark Ampharos in play or while Dark Ampharos is Asleep, Confused or Paralysed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Shock Bolt",
|
||||
},
|
||||
text: {
|
||||
en: "Discard all Energy cards attached to this Pokémon in order to use this attack.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
92
cards/neo/neo4/10.ts
Normal file
92
cards/neo/neo4/10.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-10",
|
||||
localId: 10,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Typhlosion",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 157,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/10/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/10/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Quilava",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Claw Swipe",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Rushing Flames",
|
||||
},
|
||||
text: {
|
||||
en: "You may discard any number of Energy cards attached to your Pokémon. Flip a coin for each Energy card discarded in this way. This attack does 40 damage times the number of heads.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
64
cards/neo/neo4/100.ts
Normal file
64
cards/neo/neo4/100.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-100",
|
||||
localId: 100,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Lucky Stadium",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/100/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/100/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
illustrator: {
|
||||
id: 151,
|
||||
name: "Imakuni?"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
64
cards/neo/neo4/101.ts
Normal file
64
cards/neo/neo4/101.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-101",
|
||||
localId: 101,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Magnifier",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/101/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/101/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
illustrator: {
|
||||
id: 11,
|
||||
name: "Keiji Kinebuchi"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
64
cards/neo/neo4/102.ts
Normal file
64
cards/neo/neo4/102.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-102",
|
||||
localId: 102,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pokémon Personality Test",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/102/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/102/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
64
cards/neo/neo4/103.ts
Normal file
64
cards/neo/neo4/103.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-103",
|
||||
localId: 103,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Team Rocket's Evil Deeds",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/103/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/103/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
61
cards/neo/neo4/104.ts
Normal file
61
cards/neo/neo4/104.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-104",
|
||||
localId: 104,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Heal Powder",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/104/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/104/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
64
cards/neo/neo4/105.ts
Normal file
64
cards/neo/neo4/105.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-105",
|
||||
localId: 105,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mail from Bill",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/105/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/105/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
92
cards/neo/neo4/106.ts
Normal file
92
cards/neo/neo4/106.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-106",
|
||||
localId: 106,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Celebi",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 251,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/106/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/106/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 60,
|
||||
name: "Hironobu Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Healing Water",
|
||||
},
|
||||
text: {
|
||||
en: "Remove a number of damage counters from 1 of your Benched Pokémon equal to the number of Energy cards attached to Shining Celebi. If the Pokémon has fewer damage counters than that, remove all of them.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Miracle Leaf",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a number of coins equal to the number of Energy attached to the Defending Pokémon. If you get 1 or more heads, the Defending Pokémon is now Asleep, Confused, or Poisoned (your choice).",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
89
cards/neo/neo4/107.ts
Normal file
89
cards/neo/neo4/107.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-107",
|
||||
localId: 107,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Charizard",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 6,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/107/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/107/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 60,
|
||||
name: "Hironobu Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "White-Hot Flame",
|
||||
},
|
||||
text: {
|
||||
en: "Discard 1 Energy card and 1 Energy card attached to Shining Charizard or this attack does nothing. Flip a coin. If tails, Shining Charizard does 30 damage to itself.",
|
||||
},
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
98
cards/neo/neo4/108.ts
Normal file
98
cards/neo/neo4/108.ts
Normal file
@ -0,0 +1,98 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-108",
|
||||
localId: 108,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Kabutops",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 141,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/108/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/108/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 60,
|
||||
name: "Hironobu Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Lightning Cut",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage and does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) If tails, this attack does 30 damage and Shining Kabutops does 10 damage to itself.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Water Slash",
|
||||
},
|
||||
text: {
|
||||
en: "Does 50 damage plus 10 more damage for each Energy attached to Shining Kabutops but not used to pay for this attack's Energy cost. Don't apply Resistance.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/109.ts
Normal file
95
cards/neo/neo4/109.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-109",
|
||||
localId: 109,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Mewtwo",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 150,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/109/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/109/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 60,
|
||||
name: "Hironobu Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Reflect Shield",
|
||||
},
|
||||
text: {
|
||||
en: "If an attack does damage to Shining Mewtwo during your opponent's next turn (even if Shining Mewtwo is Knocked Out), flip a coin. If heads, prevent all damage done to Shining Mewtwo from that attack (any other effects of attacks still happen) and do 20 damage to the attacking Pokémon.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Psyburst",
|
||||
},
|
||||
text: {
|
||||
en: "Discard a Energy card attached to Shining Mewtwo or this attack does nothing. This attack does 40 damage plus 10 damage for each Energy attached to the Defending Pokémon.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/neo/neo4/11.ts
Normal file
100
cards/neo/neo4/11.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-11",
|
||||
localId: 11,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Tyranitar",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 248,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/11/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/11/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pupitar",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Mountain Smasher",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a number of coins equal to the number of Energy cards attached to Dark Tyranitar. This attack does 20 damage times the number of heads. Then, for each heads, discard the top card from your opponent's deck.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fling Away",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, this attack does 30 damage instead of 50 and choose 1 of those Benched Pokémon. This attack does 30 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/neo/neo4/110.ts
Normal file
87
cards/neo/neo4/110.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-110",
|
||||
localId: 110,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Noctowl",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 164,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/110/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/110/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flashing Eyes",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 3 coins. If exactly 1 is heads, the Defending Pokémon is now Asleep. If exactly 2 are heads, the Defending Pokémon is now Confused. If all 3 are heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/neo/neo4/111.ts
Normal file
84
cards/neo/neo4/111.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-111",
|
||||
localId: 111,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Raichu",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 26,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/111/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/111/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 60,
|
||||
name: "Hironobu Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Thundersquall",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to that Pokémon for each Energy attached to Shining Raichu. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/neo/neo4/112.ts
Normal file
87
cards/neo/neo4/112.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-112",
|
||||
localId: 112,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Steelix",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 208,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/112/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/112/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Crushing Earth",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage to each Benched Pokémon (yours and your opponent's). (Don't apply Weakness and Resistance for Benched Pokémon.) If tails, this attack does nothing. Either way, Shining Steelix can't attack during your next turn.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.GRASS,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
71
cards/neo/neo4/113.ts
Normal file
71
cards/neo/neo4/113.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-113",
|
||||
localId: 113,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Shining Tyranitar",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 248,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/113/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/113/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RareHolo,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/12.ts
Normal file
94
cards/neo/neo4/12.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-12",
|
||||
localId: 12,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Arcanine",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 59,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/12/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/12/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Growlithe",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 604,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Drive Off",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Light Arcanine is your Active Pokémon, once during your turn (before your attack), if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. This power can't be used while Light Arcanine is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Gentle Flames",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon is a Baby Pokémon, this attack does 10 damage instead of 50. If the Defending Pokémon is a Basic Pokémon, this attack does 30 damage instead of 50.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
97
cards/neo/neo4/13.ts
Normal file
97
cards/neo/neo4/13.ts
Normal file
@ -0,0 +1,97 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-13",
|
||||
localId: 13,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Azumarill",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 184,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/13/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/13/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Marill",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Bubble",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bubble Jump",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any Benched Pokémon, flip a coin. If heads, take 2 Energy cards attached to Light Azumarill and attach them to 1 of your Benched Pokémon. Then return Light Azumarill and all cards attached to it to your hand.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/14.ts
Normal file
95
cards/neo/neo4/14.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-14",
|
||||
localId: 14,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Dragonite",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 149,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/14/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/14/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dragonair",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 606,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Miraculous Wind",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Light Dragonite is your Active Pokémon, each Special Energy card provides Colorless Energy instead of its usual type and its other effects stop working. This power stops working while Light Dragonite is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Light Wave",
|
||||
},
|
||||
text: {
|
||||
en: "During your opponent's next turn, prevent all effects of attacks that are not damage done to this Pokémon.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/15.ts
Normal file
94
cards/neo/neo4/15.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-15",
|
||||
localId: 15,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Togetic",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 176,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/15/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/15/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Togepi",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 607,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Gift",
|
||||
},
|
||||
text: {
|
||||
en: "When you play Light Togetic from your hand, your opponent may search his or her deck for a Pokémon Tool card, show that card to you, and put it into his or her hand. Either way, you may do the same, and then each player who searched shuffles his or her deck.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sweet Kiss",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent may draw a card.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
66
cards/neo/neo4/16.ts
Normal file
66
cards/neo/neo4/16.ts
Normal file
@ -0,0 +1,66 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-16",
|
||||
localId: 16,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Miracle Energy",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/16/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/16/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SPECIAL,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 129,
|
||||
name: "Milky Isobe"
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/17.ts
Normal file
96
cards/neo/neo4/17.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-17",
|
||||
localId: 17,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Ariados",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 168,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/17/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/17/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Spinarak",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Entangle",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and switch it with the Defending Pokémon, then flip a coin. If heads, the new Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Poison Bind",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Poisoned. Flip a coin. If heads, the Defending Pokémon can't retreat until the end of your opponent's next turn and if the effect of an attack, Pokémon Power, or Trainer card would change that player's Active Pokémon, that part of the effect does nothing.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/18.ts
Normal file
94
cards/neo/neo4/18.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-18",
|
||||
localId: 18,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Magcargo",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 219,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/18/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/18/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Slugma",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 609,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Hot Plate",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Dark Magcargo is your Active Pokémon, whenever a player puts a Baby Pokémon or Basic Pokémon onto his or her Bench from his or her hand, this power does 10 damage to that Pokémon. (Don't apply Weakness and Resistance.) This power stops working if Dark Magcargo is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Ball of Flame",
|
||||
},
|
||||
text: {
|
||||
en: "You may discard a Energy card attached to Dark Magcargo when you use this attack. If you do and if your opponent has any Benched Pokémon, choose 1 of them and this attack does 20 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/19.ts
Normal file
95
cards/neo/neo4/19.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-19",
|
||||
localId: 19,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Omastar",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 139,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/19/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/19/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Omanyte",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Prehistoric Water",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any evolved Pokémon in play, choose 1 of them and flip a coin. If heads, your opponent takes the highest Stage Evolution card on that Pokémon and shuffles it into his or her deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dark Tentacle",
|
||||
},
|
||||
text: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't evolve except from effects of attacks or Pokémon Powers. (Benching that Pokémon ends this effect.)",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/neo/neo4/2.ts
Normal file
93
cards/neo/neo4/2.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-2",
|
||||
localId: 2,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Crobat",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 169,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/2/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/2/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Zubat",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
|
||||
|
||||
abilities: [{
|
||||
id: 592,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Surprise Bite",
|
||||
},
|
||||
text: {
|
||||
en: "When you play Dark Crobat from your hand, you may choose 1 of your opponent's Pokémon. This power does 20 damage do that Pokémon. (Don't apply Weakness and Resistance.)",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Dark Drain",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin for each of your opponent's Pokémon. For each heads, this attack does 10 damage to that Pokémon. Don't apply Weakness and Resistance. Remove a number of damage counters from Dark Crobat equal to the damage dealt. If Dark Crobat has fewer damage counters than that, remove all of them.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/20.ts
Normal file
94
cards/neo/neo4/20.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-20",
|
||||
localId: 20,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Slowking",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 199,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/20/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/20/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Slowpoke",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 611,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Cunning",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, look at the top card of your opponent's deck. Then, you may have your opponent shuffle his or her deck. This power can't be used if Dark Slowking is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Mind Shock",
|
||||
},
|
||||
text: {
|
||||
en: "Don't apply Weakness or Resistance for this attack.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
97
cards/neo/neo4/21.ts
Normal file
97
cards/neo/neo4/21.ts
Normal file
@ -0,0 +1,97 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-21",
|
||||
localId: 21,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Ursaring",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 217,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/21/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/21/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Teddiursa",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Provoke",
|
||||
},
|
||||
text: {
|
||||
en: "Look at your opponent's hand. If he or she has any Baby Pokémon and/or Basic Pokémon there, you may put any number of them onto your opponent's Bench (as long as there's room). Then, your opponent looks at your hand. If you have any Baby Pokémon and/or Basic Pokémon there, your opponent may put any number of them onto your Bench (as long as there's room).",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Battle Frenzy",
|
||||
},
|
||||
text: {
|
||||
en: "For each Pokémon in play (yours and your opponent's), flip a coin. For each heads, this attack does 20 damage to that Pokémon. Don't apply Weakness and Resistance for this attack.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/22.ts
Normal file
96
cards/neo/neo4/22.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-22",
|
||||
localId: 22,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Dragonair",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 148,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/22/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/22/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dratini",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Healing Light",
|
||||
},
|
||||
text: {
|
||||
en: "Remove 1 damage counter from each of your Pokémon that has any damage counters on it.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Protective Wave",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Light Dragonair.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/23.ts
Normal file
95
cards/neo/neo4/23.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-23",
|
||||
localId: 23,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Lanturn",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 171,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/23/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/23/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chinchou",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Searchlight",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, each player may choose a card from his or her discard pile and put it into his or her hand.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Spark",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/neo/neo4/24.ts
Normal file
99
cards/neo/neo4/24.ts
Normal file
@ -0,0 +1,99 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-24",
|
||||
localId: 24,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Ledian",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 166,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/24/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/24/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ledyba",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Flash Touch",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any Benched Pokémon, switch 1 of them with Light Ledian. As long as that Pokémon is your Active Pokémon, it can't become Asleep, Confused, Paralyzed, or Poisoned. (All other effects of attacks, Pokémon Powers, and Trainer cards still happen.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Comet Punch",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 4 coins. This attack does 20 damage times the number of heads.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
85
cards/neo/neo4/25.ts
Normal file
85
cards/neo/neo4/25.ts
Normal file
@ -0,0 +1,85 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-25",
|
||||
localId: 25,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Machamp",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 68,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/25/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/25/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machoke",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Beatdown",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon has Dark in its name or is a Pokémon, flip a coin. If heads, this attack does 100 damage instead of 50.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
89
cards/neo/neo4/26.ts
Normal file
89
cards/neo/neo4/26.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-26",
|
||||
localId: 26,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Piloswine",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 221,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/26/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/26/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Swinub",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 22,
|
||||
name: "Yukiko Baba"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Knock Over",
|
||||
},
|
||||
text: {
|
||||
en: "If there is a Stadium card in play, you may discard it.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/27.ts
Normal file
88
cards/neo/neo4/27.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-27",
|
||||
localId: 27,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [G]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/27/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/27/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 1027,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Give]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), if you have Unown G, Unown I, Unown V, and Unown E on your Bench, you may flip a coin. If heads, search your deck for a basic Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/28.ts
Normal file
88
cards/neo/neo4/28.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-28",
|
||||
localId: 28,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [H]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/28/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/28/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 617,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Help]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), if you have Unown H, Unown E, Unown L, and Unown P on your Bench, you may shuffle your hand into your deck, then draw a new hand of the same number of cards.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/29.ts
Normal file
88
cards/neo/neo4/29.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-29",
|
||||
localId: 29,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [W]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/29/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/29/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 618,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Want]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), if you have Unown W, Unown A, Unown N, and Unown T on your Bench, you may flip a coin. If heads, put a Trainer card from your discard pile into your hand.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
97
cards/neo/neo4/3.ts
Normal file
97
cards/neo/neo4/3.ts
Normal file
@ -0,0 +1,97 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-3",
|
||||
localId: 3,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Donphan",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 232,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/3/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/3/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Phanpy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Tusk Toss",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, flip a coin. If heads, return the Defending Pokémon and all cards attached to it to your opponent's hand. If tails, your opponent chooses 1 of his or her Benched Pokémon and switches it with the Defending Pokémon.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Giant Tusk",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/30.ts
Normal file
88
cards/neo/neo4/30.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-30",
|
||||
localId: 30,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [X]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/30/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/30/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 160,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[XXXXX]",
|
||||
},
|
||||
text: {
|
||||
en: "Whenever 1 of your Pokémon with Unown in its name uses its Hidden Power attack, flip a coin until you get tails. That attack does 10 more damage for each heads. If you have more than 1 Unown X in play, use only 1 [XXXXX] per turn.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
98
cards/neo/neo4/31.ts
Normal file
98
cards/neo/neo4/31.ts
Normal file
@ -0,0 +1,98 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-31",
|
||||
localId: 31,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Chansey",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 113,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/31/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/31/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Double Slap",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Egg Toss",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/neo/neo4/32.ts
Normal file
84
cards/neo/neo4/32.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-32",
|
||||
localId: 32,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Croconaw",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 159,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/32/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/32/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Totodile",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Clamping Jaw",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn. If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing. (Benching either Pokémon ends this effect.)",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/33.ts
Normal file
96
cards/neo/neo4/33.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-33",
|
||||
localId: 33,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Exeggutor",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 103,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/33/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/33/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Triple Headbutt",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "MAX Burst",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a number of coins equal to the number of Energy cards attached to your opponent's Pokémon. This attack does 20 damage times the number of heads.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/34.ts
Normal file
96
cards/neo/neo4/34.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-34",
|
||||
localId: 34,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Flaaffy",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 180,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/34/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/34/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mareep",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "High Voltage",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent can't play Trainer cards during his or her next turn.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Stun Wave",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon has a Pokémon Power, that power stops working until the end of your next turn.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/35.ts
Normal file
95
cards/neo/neo4/35.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-35",
|
||||
localId: 35,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Forretress",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 205,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/35/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/35/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pineco",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Armor Up",
|
||||
},
|
||||
text: {
|
||||
en: "Until the end of your next turn, if Dark Forretress would be Knocked Out by damage from an attack, flip a coin. If heads, Dark Forretress is not Knocked Out and its remaining HP become 10 instead.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Explosion",
|
||||
},
|
||||
text: {
|
||||
en: "Dark Forretress does 60 damage to itself.",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/36.ts
Normal file
95
cards/neo/neo4/36.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-36",
|
||||
localId: 36,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Haunter",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 93,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/36/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/36/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gastly",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 43,
|
||||
name: "Aya Kusube"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Call Back",
|
||||
},
|
||||
text: {
|
||||
en: "Put a Baby Pokémon or Basic Pokémon card from your opponent's discard pile onto his or her Bench. Put 1 damage counter on that Pokémon. (You can't use this attack if your Bench is full.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Surround",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
81
cards/neo/neo4/37.ts
Normal file
81
cards/neo/neo4/37.ts
Normal file
@ -0,0 +1,81 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-37",
|
||||
localId: 37,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Omanyte",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 138,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/37/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/37/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Water Cannon",
|
||||
},
|
||||
text: {
|
||||
en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage for each Energy card attached to Dark Omanyte. Don't apply Weakness and Resistance. You can't do more than 30 damage in this way.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/neo/neo4/38.ts
Normal file
100
cards/neo/neo4/38.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-38",
|
||||
localId: 38,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Pupitar",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 247,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/38/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/38/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Larvitar",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Rock Tackle",
|
||||
},
|
||||
text: {
|
||||
en: "Dark Pupitar does 10 damage to itself. Dark Pupitar can't use this attack during your next turn.",
|
||||
},
|
||||
damage: 40
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Explosive Evolution",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage to each of your opponent's Pokémon. Don't apply Weakness and Resistance. Then, search your deck for an Evolution card named Dark Tyranitar and put it on Dark Pupitar. (This counts as evolving Dark Pupitar.) Shuffle your deck afterward.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/39.ts
Normal file
94
cards/neo/neo4/39.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-39",
|
||||
localId: 39,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Quilava",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 156,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/39/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/39/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Cyndaquil",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Incinerate",
|
||||
},
|
||||
text: {
|
||||
en: "Show the top card of your opponent's deck to all players. If it's a Trainer card, discard it.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Rushing Magma",
|
||||
},
|
||||
text: {
|
||||
en: "Discard the top 5 cards of your deck. (If there are fewer than 5 cards in your deck, discard all of them.) This attack does 20 damage for each Energy card you discarded in this way.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/4.ts
Normal file
96
cards/neo/neo4/4.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-4",
|
||||
localId: 4,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Espeon",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 196,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/4/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/4/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Gouge",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage; if tails, this attack does 10 damage.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Psysplash",
|
||||
},
|
||||
text: {
|
||||
en: "Does 10 damage to each of your opponent's Pokémon for each Energy card attached to that Pokémon. Don't apply Weakness and Resistance.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/neo/neo4/40.ts
Normal file
100
cards/neo/neo4/40.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-40",
|
||||
localId: 40,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Wigglytuff",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 40,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/40/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/40/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dark Song",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Confused.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Slap Awake",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon is Asleep or Confused, this attack does 20 damage plus 20 more damage. Then, the Defending Pokémon is no longer Asleep or Confused.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/neo/neo4/41.ts
Normal file
90
cards/neo/neo4/41.ts
Normal file
@ -0,0 +1,90 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-41",
|
||||
localId: 41,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Heracross",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 214,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/41/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/41/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Charging Horn",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage. If tails, this attack does 30 damage.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/42.ts
Normal file
95
cards/neo/neo4/42.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-42",
|
||||
localId: 42,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Hitmonlee",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 106,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/42/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/42/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 22,
|
||||
name: "Yukiko Baba"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "One-Two Kick",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Heel Drop",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
92
cards/neo/neo4/43.ts
Normal file
92
cards/neo/neo4/43.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-43",
|
||||
localId: 43,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Houndour",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 228,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/43/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/43/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 22,
|
||||
name: "Yukiko Baba"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Corner",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Lunge",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/neo/neo4/44.ts
Normal file
86
cards/neo/neo4/44.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-44",
|
||||
localId: 44,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Jigglypuff",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 39,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/44/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/44/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Expand",
|
||||
},
|
||||
text: {
|
||||
en: "All damage done to Jigglypuff during your opponent's next turn is reduced by 10 (after applying Weakness and Resistance).",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
98
cards/neo/neo4/45.ts
Normal file
98
cards/neo/neo4/45.ts
Normal file
@ -0,0 +1,98 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-45",
|
||||
localId: 45,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Dewgong",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 87,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/45/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/45/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Seel",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 103,
|
||||
name: "Masako Yamashita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Freezing Breath",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Ice Pillar",
|
||||
},
|
||||
text: {
|
||||
en: "Until the end of your opponent's next turn, as long as Light Dewgong is your Active Pokémon, prevent all damage done by attacks to your Benched Pokémon. (Any other effects of attacks still happen.)",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/46.ts
Normal file
96
cards/neo/neo4/46.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-46",
|
||||
localId: 46,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Flareon",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 136,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/46/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/46/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Warm Up",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any benched Pokémon, search your deck for a Energy card and attach it to 1 of them. Then shuffle your deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Burning Flame",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. For each heads, discard a Energy card attached to Light Flareon or this attack does nothing. This attack does 30 damage plus 20 damage for each heads.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/47.ts
Normal file
96
cards/neo/neo4/47.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-47",
|
||||
localId: 47,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Golduck",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 55,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/47/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/47/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Psyduck",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Flipper Stroke",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent looks at the top 3 cards of his or her deck. If any of them are basic Energy cards, he or she may show any number of them to you and put them into his or her hand. You do the same. Either way, each player shuffles his or her deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Core Blast",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage plus 20 more damage for each Special Energy card attached to the Defending Pokémon.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/48.ts
Normal file
96
cards/neo/neo4/48.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-48",
|
||||
localId: 48,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Jolteon",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 135,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/48/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/48/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.LIGHTNING
|
||||
],
|
||||
name: {
|
||||
en: "Pulse Guard",
|
||||
},
|
||||
text: {
|
||||
en: "During your opponent's next turn, whenever 30 or more damage is done to Light Jolteon (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Thunder Needle",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 20 damage times the number of heads. If you get 2 or more heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/49.ts
Normal file
94
cards/neo/neo4/49.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-49",
|
||||
localId: 49,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Machoke",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 67,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/49/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/49/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machop",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Return Home",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any Benched Pokémon, shuffle 1 of them and all cards attached to it into your deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Gentle Kick",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon has no damage counters on it, this attack does 40 damage. If it has any, this attack does 20 damage.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/5.ts
Normal file
95
cards/neo/neo4/5.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-5",
|
||||
localId: 5,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Feraligatr",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 160,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/5/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/5/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Croconaw",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 597,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Scare",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Dark Feraligatr is your Active Pokémon, all of your opponent's Baby Pokémon Powers stop working and your opponent's Baby Pokémon can't attack. This power stops working while Dark Feraligatr is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Crushing Blow",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon has any Energy cards attached to it, flip a coin. If heads, choose 1 of those cards and discard it.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/50.ts
Normal file
96
cards/neo/neo4/50.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-50",
|
||||
localId: 50,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Ninetales",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 38,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/50/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/50/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Vulpix",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 103,
|
||||
name: "Masako Yamashita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Guiding Flame",
|
||||
},
|
||||
text: {
|
||||
en: "Put a Baby Pokémon or a Basic Pokémon card from your discard pile onto your Bench. (You can't use this attack if your Bench is full.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Fire Blast",
|
||||
},
|
||||
text: {
|
||||
en: "Discard a Energy card attached to Light Ninetales in order to use this attack.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/51.ts
Normal file
95
cards/neo/neo4/51.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-51",
|
||||
localId: 51,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Slowbro",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 80,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/51/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/51/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Slowpoke",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Fish Out",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent may choose up to 3 Baby Pokémon, Basic Pokémon, and/or Evolution cards from his or her discard pile and shuffle them into his or her deck. Either way, you may do the same.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Slash About",
|
||||
},
|
||||
text: {
|
||||
en: "If there are more Energy cards attached to the Defending Pokémon than to Light Slowbro, this attack does 20 damage plus 20 more damage. If not, this attack does 20 damage.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/52.ts
Normal file
96
cards/neo/neo4/52.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-52",
|
||||
localId: 52,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Vaporeon",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 134,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/52/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/52/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Wash Away",
|
||||
},
|
||||
text: {
|
||||
en: "If you have any Benched Pokémon, flip a coin. If heads, remove all damage counters from 1 of your Benched Pokémon and discard all Energy cards attached to it.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hypno Shower",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Asleep. Remove 1 damage counter from each Benched Pokémon (yours and your opponent's) with any damage counters on it.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
98
cards/neo/neo4/53.ts
Normal file
98
cards/neo/neo4/53.ts
Normal file
@ -0,0 +1,98 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-53",
|
||||
localId: 53,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Venomoth",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 49,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/53/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/53/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Venonat",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 103,
|
||||
name: "Masako Yamashita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Mysterious Wing",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent may choose a Baby Pokémon, Basic Pokémon, or Evolution card from his or her discard pile and put it into his or her hand. Either way, you may do the same.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Synchronize",
|
||||
},
|
||||
text: {
|
||||
en: "If Light Venomoth and the Defending Pokémon have a different number of Energy cards attached to them, this attack does nothing.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/neo/neo4/54.ts
Normal file
99
cards/neo/neo4/54.ts
Normal file
@ -0,0 +1,99 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-54",
|
||||
localId: 54,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Wigglytuff",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 40,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/54/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/54/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Evolution Song",
|
||||
},
|
||||
text: {
|
||||
en: "Your opponent may choose 1 of his or her Pokémon and search his or her deck for a card that evolves from that Pokémon. Your opponent attaches that card to that Pokémon. This counts as evolving that Pokémon. Either way, you may do the same, and then each player who searched shuffles his or her deck.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/55.ts
Normal file
96
cards/neo/neo4/55.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-55",
|
||||
localId: 55,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Scyther",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 123,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/55/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/55/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Agility",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Scyther.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Sharp Sickle",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/neo/neo4/56.ts
Normal file
93
cards/neo/neo4/56.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-56",
|
||||
localId: 56,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Togepi",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 175,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/56/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/56/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Charm",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon attacks during your opponent's next turn, any damage it does is reduced by 10 (before applying Weakness and Resistance).",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Spike Ball Tackle",
|
||||
},
|
||||
text: {
|
||||
en: "Togepi does 10 damage to itself.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/57.ts
Normal file
88
cards/neo/neo4/57.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-57",
|
||||
localId: 57,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [C]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/57/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/57/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 624,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Chase]",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Unown C is your Active Pokémon, whenever your opponent's Active Pokémon tries to retreat, flip a coin. If heads, put 1 damage counter on that Pokémon. Apply Weakness and Resistance.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
79
cards/neo/neo4/58.ts
Normal file
79
cards/neo/neo4/58.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-58",
|
||||
localId: 58,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [P]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/58/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/58/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/59.ts
Normal file
88
cards/neo/neo4/59.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-59",
|
||||
localId: 59,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [Q]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/59/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/59/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 170,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Quicken]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, prevent all effects of attacks, including damage, done to any of your Pokémon with Unown in its name during your opponent's next turn. If you have more than 1 Unown Q in play, use only 1 [Quicken] each turn. This power can be used even if Unown Q is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/6.ts
Normal file
95
cards/neo/neo4/6.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-6",
|
||||
localId: 6,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Gengar",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 94,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/6/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/6/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Haunter",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 43,
|
||||
name: "Aya Kusube"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 245,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Deep Sleep",
|
||||
},
|
||||
text: {
|
||||
en: "As long as any Dark Gengar are in play, a player flips 2 coins for each of his or her Pokémon that is Asleep at the end of each turn. If either of them is tails, that Pokémon is still Asleep. This power stops working if Dark Gengar is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Pull In",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent has any Benched Pokémon, you may choose 1 of them and switch it with the Defending Pokémon (before doing damage or other effects of this attack). Either way, the Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/60.ts
Normal file
88
cards/neo/neo4/60.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-60",
|
||||
localId: 60,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [Z]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/60/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/60/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 171,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Zoom]",
|
||||
},
|
||||
text: {
|
||||
en: "As long as Unown Z is Benched, you pay no Energy cost to retreat a Pokémon with Unown in its name.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
82
cards/neo/neo4/61.ts
Normal file
82
cards/neo/neo4/61.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-61",
|
||||
localId: 61,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Cyndaquil",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 155,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/61/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/61/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 22,
|
||||
name: "Yukiko Baba"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Smokescreen",
|
||||
},
|
||||
text: {
|
||||
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/neo/neo4/62.ts
Normal file
96
cards/neo/neo4/62.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-62",
|
||||
localId: 62,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Octillery",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 224,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/62/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/62/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Remoraid",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Ink Blast",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 20 damage plus 10 more damage for each Energy attached to Dark Octillery but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tentacle Wrap",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, during your opponent's next turn, your opponent pays more to retreat the Defending Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
92
cards/neo/neo4/63.ts
Normal file
92
cards/neo/neo4/63.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-63",
|
||||
localId: 63,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dratini",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 147,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/63/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/63/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Shed",
|
||||
},
|
||||
text: {
|
||||
en: "Remove 1 damage counter from Dratini.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fury Attack",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/neo/neo4/64.ts
Normal file
93
cards/neo/neo4/64.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-64",
|
||||
localId: 64,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Exeggcute",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 102,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/64/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/64/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Sleep Power",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psyshock",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
82
cards/neo/neo4/65.ts
Normal file
82
cards/neo/neo4/65.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-65",
|
||||
localId: 65,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Gastly",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 92,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/65/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/65/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 43,
|
||||
name: "Aya Kusube"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Nightmare",
|
||||
},
|
||||
text: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
92
cards/neo/neo4/66.ts
Normal file
92
cards/neo/neo4/66.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-66",
|
||||
localId: 66,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Girafarig",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 203,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/66/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/66/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tail Bite",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Psychic",
|
||||
},
|
||||
text: {
|
||||
en: "Does 10 damage plus 10 more damage for each Energy card attached to the Defending Pokémon.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
85
cards/neo/neo4/67.ts
Normal file
85
cards/neo/neo4/67.ts
Normal file
@ -0,0 +1,85 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-67",
|
||||
localId: 67,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Gligar",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 207,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/67/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/67/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Stun Poison",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and Poisoned.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
80
cards/neo/neo4/68.ts
Normal file
80
cards/neo/neo4/68.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-68",
|
||||
localId: 68,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Growlithe",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 58,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/68/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/68/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 32,
|
||||
name: "Atsuko Nishida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
91
cards/neo/neo4/69.ts
Normal file
91
cards/neo/neo4/69.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-69",
|
||||
localId: 69,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Hitmonchan",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 107,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/69/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/69/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 119,
|
||||
name: "Shin-ichi Yoshida"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Dodge",
|
||||
},
|
||||
text: {
|
||||
en: "If Hitmonchan would be damaged by an attack during your opponent's next turn, flip a coin. If heads, prevent that attack's damage done to Hitmonchan. (Any other effects of attacks still happen.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Supersonic Jab",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/7.ts
Normal file
95
cards/neo/neo4/7.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-7",
|
||||
localId: 7,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Houndoom",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 229,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/7/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/7/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Houndour",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Eerie Howl",
|
||||
},
|
||||
text: {
|
||||
en: "If your opponent's Bench isn't full, look at his or her hand. If your opponent has any Baby Pokémon or Basic Pokémon there, choose 1 of them and put it on his or her Bench. Then, switch it with the Defending Pokémon.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Dark Fire",
|
||||
},
|
||||
text: {
|
||||
en: "If there are any Energy cards attached to Dark Houndoom, discard 1 of them and this attack does 30 damage plus 20 more damage (plus 10 more damage for the Energy you discarded). If there aren't any, this attack does 30 damage.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/neo/neo4/70.ts
Normal file
93
cards/neo/neo4/70.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-70",
|
||||
localId: 70,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Larvitar",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 246,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/70/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/70/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Leer",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn. (Benching or evolving either Pokémon ends this effect.)",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rock Throw",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/neo/neo4/71.ts
Normal file
86
cards/neo/neo4/71.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-71",
|
||||
localId: 71,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Ledyba",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 165,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/71/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/71/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 18,
|
||||
name: "Tomokazu Komiya"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Swift",
|
||||
},
|
||||
text: {
|
||||
en: "This attack's damage isn't affected by Weakness, Resistance, Pokémon Powers, or any other effects on the Defending Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/neo/neo4/72.ts
Normal file
94
cards/neo/neo4/72.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-72",
|
||||
localId: 72,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Light Sunflora",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 192,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/72/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/72/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sunkern",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Reflected Sunlight",
|
||||
},
|
||||
text: {
|
||||
en: "Attach up to 2 Energy cards from your hand to 1 of your Pokémon.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Solarbeam",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/73.ts
Normal file
88
cards/neo/neo4/73.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-73",
|
||||
localId: 73,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Machop",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 66,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/73/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/73/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 73,
|
||||
name: "Toshinao Aoki"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Chop",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Punch",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/neo/neo4/74.ts
Normal file
86
cards/neo/neo4/74.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-74",
|
||||
localId: 74,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mantine",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 226,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/74/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/74/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 22,
|
||||
name: "Yukiko Baba"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Giant Wave",
|
||||
},
|
||||
text: {
|
||||
en: "Mantine can't attack during your next turn.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
79
cards/neo/neo4/75.ts
Normal file
79
cards/neo/neo4/75.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-75",
|
||||
localId: 75,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mareep",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 179,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/75/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/75/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
85
cards/neo/neo4/76.ts
Normal file
85
cards/neo/neo4/76.ts
Normal file
@ -0,0 +1,85 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-76",
|
||||
localId: 76,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Phanpy",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 231,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/76/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/76/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Crushing Step",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage; if tails, this attack does 10 damage.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
80
cards/neo/neo4/77.ts
Normal file
80
cards/neo/neo4/77.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-77",
|
||||
localId: 77,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pineco",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 204,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/77/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/77/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
80
cards/neo/neo4/78.ts
Normal file
80
cards/neo/neo4/78.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-78",
|
||||
localId: 78,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Porygon",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 137,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/78/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/78/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sharpen",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
91
cards/neo/neo4/79.ts
Normal file
91
cards/neo/neo4/79.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-79",
|
||||
localId: 79,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Psyduck",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 54,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/79/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/79/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 45,
|
||||
name: "Yuka Morii"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Flipper Splash",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Migraine",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused. If tails, Psyduck is now Confused.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
95
cards/neo/neo4/8.ts
Normal file
95
cards/neo/neo4/8.ts
Normal file
@ -0,0 +1,95 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-8",
|
||||
localId: 8,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Dark Porygon2",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 233,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/8/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/8/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Porygon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
|
||||
|
||||
abilities: [{
|
||||
id: 600,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Spatial Distortion",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, choose a Stadium card from your discard pile and put it into play. (If there's already a Stadium card in play, discard it.) This power can't be used if Dark Porygon2 is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Curve Attack",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, prevent all damage done by attacks to Dark Porygon2 during your opponent's next turn. (Any other effects of attacks still happen.)",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Rare,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
79
cards/neo/neo4/80.ts
Normal file
79
cards/neo/neo4/80.ts
Normal file
@ -0,0 +1,79 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-80",
|
||||
localId: 80,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Remoraid",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 223,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/80/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/80/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Fury Strikes",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
83
cards/neo/neo4/81.ts
Normal file
83
cards/neo/neo4/81.ts
Normal file
@ -0,0 +1,83 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-81",
|
||||
localId: 81,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Seel",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 86,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/81/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/81/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 103,
|
||||
name: "Masako Yamashita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Take Down",
|
||||
},
|
||||
text: {
|
||||
en: "Seel does 10 damage to itself.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
80
cards/neo/neo4/82.ts
Normal file
80
cards/neo/neo4/82.ts
Normal file
@ -0,0 +1,80 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-82",
|
||||
localId: 82,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Slugma",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 218,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/82/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/82/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Combustion",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/neo/neo4/83.ts
Normal file
90
cards/neo/neo4/83.ts
Normal file
@ -0,0 +1,90 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-83",
|
||||
localId: 83,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Sunkern",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 191,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/83/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/83/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 178,
|
||||
name: "Etsuya Hattori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rollout",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Sunbathe",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, remove all damage counters from Sunkern. Search your deck for a card that evolves from Sunkern and attach that card to Sunkern. This counts as evolving Sunkern. Shuffle your deck afterward.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/neo/neo4/84.ts
Normal file
86
cards/neo/neo4/84.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-84",
|
||||
localId: 84,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Swinub",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 220,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/84/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/84/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Generate Cold",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
82
cards/neo/neo4/85.ts
Normal file
82
cards/neo/neo4/85.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-85",
|
||||
localId: 85,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Totodile",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 158,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/85/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/85/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 37,
|
||||
name: "Miki Tanaka"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
},
|
||||
text: {
|
||||
en: "Does 10 damage plus 10 more damage for each Energy attached to Totodile but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/neo/neo4/86.ts
Normal file
88
cards/neo/neo4/86.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-86",
|
||||
localId: 86,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [L]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/86/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/86/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 896,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Laugh]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may flip a coin. If heads, each player shuffles his or her deck. This power can be used even if Unown L is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
89
cards/neo/neo4/87.ts
Normal file
89
cards/neo/neo4/87.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "neo4-87",
|
||||
localId: 87,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unown [S]",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 201,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/87/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/neo/neo4/87/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 113,
|
||||
name: "CR CG gangs"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
id: 631,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "[Search]",
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may look at 1 of your Prize cards. Return that Prize card face down. This power can be used even if Unown S is Asleep, Confused, or Paralyzed.",
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hidden Power",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Neo Destiny",
|
||||
code: "neo4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user