Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 Are TCGs in RPG Maker realistic.
#1
Forgive me if there is a topic like this already.

I was wondering about the opinion of TCGs & CCGs in RPG Maker. Especially a Virtual TCG with no real cards. I have yet to see one completed in any engine that was fluid and fun. Is it possible? I am willing to try anything out of the box that will amuse me, but would it be a waste?

I have an idea for one, but projects with no chance of completion are dangerous to morale (Even more so after 9 hours at work).
Reply }
#2
It's definately possible. I remember playing a half-finished project once that had such a thing implemented.
But it is definately a lot of work and the more complex you make it, the harder it will be to code and check.
It it works on a rock-paper-scissors like system and/or works on numbers, then it's doable if you have the time to spend enough effort on this. If it's more like Yu-Gi-Oh! or Magic...probably still doable in theory, but I would not reccomend it.
Friendship is born at that moment when one person says to another: "What! You, too? Thought I was the only one." (C.S. Lewis)
For the time you're laughing, there's nothing wrong in the world. (Colin Mochrie)

If it's funny, make sure people laugh. If it's not funny, make it funny (unless it's actually really serious). (silvercheers)

Please don't spell my name "Yamina-chan". It's all small. Thank you =D
Reply }
#3
I sort of made a script for this once after having studied how Scene_Battle works. It's pretty easy if you know how to program. Do you have any examples of virtual card games you thought were fluid and fun?
Reply }
#4
You would need a script.
I imagine it's quite the arduous task though since you would have to assign an ID to every card, design them, animate them, check for their ID to find their stats (so each card would have a set of variables) ... hard to keep track of all this data.
Reply }
#5
You do the same thing for monsters in your RPG already! They have stats. and elemental resistances, and treasure to drop.
Reply }
#6
Yes? But it's already coded for you with a database. You could perhaps assign cards to monster and use those stats I guess, and use items for item cards.
*shrug*
Reply }
#7
(06-04-2015, 11:53 PM)MechanicalPen Wrote: I sort of made a script for this once after having studied how Scene_Battle works. It's pretty easy if you know how to program. Do you have any examples of virtual card games you thought were fluid and fun?

There are too many tcgs around. When i say fluid and fun I am referring to a few tcg rmxp and rmvx games I tried and they super buggy for what they did. It doable, I made one a long time ago, but by fluid I mean consistent rules that are not too simple but fun at the same time. Dont want a card game that has hour long battles. No one's attention last that long.

(06-05-2015, 01:18 AM)MetalRenard Wrote: Yes? But it's already coded for you with a database. You could perhaps assign cards to monster and use those stats I guess, and use items for item cards.
*shrug*

Its easy to put a number of variables into a hash.

Code:
# All Talents and Abilities
 FOE_TALENTS = {
 # Basic Talents
 
 0 => [0,"Acrobatics","",0,1,[],0,0.0,false, nil],
 1 => [1,"Hiding","",0,1,[],0,0.0,false, nil],
 2 => [2,"Searching","",0,1,[],0,0.0,false, nil],
 3 => [3,"Tracking","",0,1,[],0,0.0,false, nil],
 4 => [4,"Sprint","",0,1,[],0,0.0,false, nil],
 5 => [5,"Dancing","",0,1,[],0,0.0,false, nil],
 6 => [6,"Guardian","",0,1,[],0,0.0,false, nil],
 7 => [7,"Shivelry","",0,1,[],0,0.0,false, nil],
 8 => [8,"Hawkeye","",0,1,[],0,0.0,false, nil],
 9 => [9,"Stalking","",0,1,[],0,0.0,false, nil],
 10 => [10,"Theivery","",0,1,[],0,0.0,false, nil],
 11 => [11,"Mysticism","",0,1,[],0,0.0,false, nil],
 12 => [12,"Collector","",0,1,[],0,0.0,false, nil],
 13 => [13,"Berserker","",0,1,[],0,0.0,false, nil],

I use hashes for talents in my current project. You can store card ids, name, attribute, restrictions and deck number, etc in hashes. Since Script editor loads them and core scripts you can make a game library of cards very easily. And there are lots of car art templates out there. However, I have scowered different forum to find a finished one. I have found very few.
Reply }
#8
If you wish to consider Final Fantasy VIII's game of Triple Triad a card battle game, then it is certainly possible. In fact, a Triple Triad clone had been made by a scripter named SephirothSpawn. It is pretty much complete. And I have it somewhere.
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
#9
It could be considered. However, my idea is to essentially have two card based system. As a side game there is to be a card game that is serious or sometimes comical story reference. Other times it will be a part of battle. Making it seamless is the difficult part. I may have a screenshot of my idea by week's end.
Reply }
#10
I once saw this old 70's fantasy movie, (can't for the life of me remember what it was called) but basically, it was TCG battle before TCG was cool... Basically, these two kings were on the opposite side of this figgy arena (why foggy? it was the seventies, I think EVERY fantasy set of mystical stuff had fog) and what happened was this wizard, would point to each king, who would then choose one fo the cards hanging on this stone wall. The wizard would turn the card (through magic, of course), and this allowed that particular type of warrior to come out of that king's dungeon into the arena.

I know the dwarf beat up some big sawtoothed gremlin thing, and a knight beat up some elf, but some gladiator kept winning until a squire was brought out, and of course in the stereotypical david and goliath battle, caught the big gladiator who (after being so strong and fast against everyone else) was now slow and clumsy.

TCG's in fantasy RPG? very much a reality.
[Image: yy7iKKb.png]

ITCH: jayray.itch.io
Currently working on Goblin Gulch (MV)
Currently working on JayVinci Resurrection
Currently working on Bakin ABS (BAKIN)
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   RPG Maker Unite and VRM models? JayRay 0 1,230 02-18-2023, 07:10 AM
Last Post: JayRay
   Small RPG Maker Games for Android Mike_Everley 0 1,440 12-23-2021, 10:56 AM
Last Post: Mike_Everley
   RPG Maker series + Rants kyonides 4 5,315 08-25-2020, 12:41 AM
Last Post: kyonides
   RPG Maker has gotten progressively worse since XP Son_Rukiri 19 21,757 07-22-2018, 03:22 AM
Last Post: DerVVulfman
Question  Easiest 2D Sprite maker software MrFunny 2 5,975 11-28-2017, 06:19 PM
Last Post: JayRay
   Is RPG Maker XP still a viable option? Zaphias 10 13,392 03-04-2017, 07:34 AM
Last Post: hanetzer
   RPG Maker MV Announced PK8 2 7,049 04-04-2016, 05:59 PM
Last Post: Starmage
   [Kinda-Poll] Pattern Game for new maker hanetzer 4 7,674 01-29-2015, 11:06 PM
Last Post: JayRay
   Poking at the RPG Maker VXAce map format. MechanicalPen 14 19,062 02-04-2014, 03:53 AM
Last Post: MechanicalPen
   RPG Maker VX Ace Lite - Free (but for how long?) Kain Nobel 20 32,278 03-26-2013, 07:21 PM
Last Post: yamina-chan



Users browsing this thread: