1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-29 07:19:19 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

95
cards/neo/neo2/27.ts Normal file
View 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: "neo2-27",
localId: 27,
// Card informations
name: {
en: "Politoed",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 186,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo2/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo2/27/high.png",
},
},
evolveFrom: {
en: "Poliwhirl",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 18,
name: "Tomokazu Komiya"
},
abilities: [{
id: 653,
type: AbilityType.POKEPOWER,
name: {
en: "Frog Song",
},
text: {
en: "Whenever Politoed's attack damages the Defending Pokémon (after applying Weakness and Resistance), if there are more than 3 Poliwags, Poliwhirls, Poliwraths, and/or Politoeds in play (including your opponent's), that attack does 40 more damage (no matter how many heads you get). This power stops working while Politoed is Asleep, Confused, or Paralyzed.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Doubleslap",
},
text: {
en: "Flip 2 coins. This attack does 40 times the number of heads.",
},
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Neo Discovery",
code: "neo2"
}
}
export default card