mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/SV/SV-P/007.ts
Normal file
51
data-asia/SV/SV-P/007.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "吃吼霸"
|
||||
},
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "雖然是個大胃王, 但不擅長捕食。 會和米立龍聯手捕捉獵物。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "頭突"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "必殺波"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲2次硬幣,若全部為正面,則增加100點傷害。"
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
cost: ["Water", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user