1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 23:09:18 +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

97
cards/neo/neo2/43.ts Normal file
View 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: "neo2-43",
localId: 43,
// Card informations
name: {
en: "Omastar",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 139,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo2/43/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo2/43/high.png",
},
},
evolveFrom: {
en: "Omanyte",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 119,
name: "Shin-ichi Yoshida"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Squeeze",
},
text: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage and the Defending Pokémon is now Paralyzed. If tails, this attack does 10 damage.",
},
damage: 10
},{
cost: [
Type.WATER,
Type.WATER,
Type.WATER
],
name: {
en: "Spike Barrage",
},
text: {
en: "Flip a number of coins equal to the number of Energy attached to Omastar. This attack does 20 damage plus 20 more for each heads.",
},
damage: 20
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Neo Discovery",
code: "neo2"
}
}
export default card