1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

53
data-asia/SV/SV7a/075.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
ja: "タルップル"
},
illustrator: "MINAMINAMI Take",
category: "Pokemon",
dexId: [842],
hp: 90,
types: ["Dragon"],
description: {
ja: "背中の 甘い蜜を 舐め取りに やって来る グルトンに ベトベトの 蜜を 吐きかけ 退ける。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "スイートメルト"
},
damage: 50,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、ワザが使えない。"
}
}, {
cost: ["Grass", "Fire"],
name: {
ja: "ワイルドタックル"
},
damage: 130,
effect: {
ja: "このポケモンにも20ダメージ。"
}
}],
retreat: 3,
rarity: "None"
}
export default card